@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
/* Poppins - All weights */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Roboto - All weights */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Inter - All weights */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Onest - All weights */
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Ubuntu - All weights */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* Outfit - All weights */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* DM Sans - All weights and widths */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900&display=swap");

/* Plus Jakarta Sans - All weights */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
    --primary-color: #6756fc;
    --text-gray: #828284;
    --text-dark: #171923;
    --bg-light: #f7fafc;

    --main-bg-color: #342c6d;
    --text-muted: #718096;
    --dark-text: #171923;
    --input-text-color: #4a5568;
    --light-bg-color: #f7fafc;
    --pure-white: white;
    --border-color: #cbd5e0;
    --card-bg-color: var(--pure-white);
    --title-text-color: var(--main-bg-color);
    --body-text-color: var(--text-muted);
    --icon-color-muted: var(--text-muted);
    --button-font: "Poppins", sans-serif;
    --input-font: "Roboto", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Updated navbar styles for stickiness */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

/* Add padding to main content to prevent navbar overlap */
.main-content {
    padding-top: 100px;
    /* Adjust this value based on your navbar height */
    min-height: calc(100vh - 100px);
    /* Subtract navbar height */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 44, 109, 0.55);
    z-index: 1040;
    backdrop-filter: blur(24px);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
    opacity: 1;
}
h3 a {
    text-decoration: none;
    color: var(--primary-color);
}
.nav-logo {
    width: 201px;
    height: 48px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.nav-link .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 4px;
}

.fa-chevron-right {
    font-weight: bold;
}

.nav-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-item:not(.dropdown) .nav-link .fa-chevron-down {
    display: none;
}

.mega-menu {
    padding: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.mega-menu-intro {
    padding: 20px;
    background: white;
}

.mega-menu-intro h3 {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-intro p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 0;
}

.mega-menu-items {
    background: #f8fafc;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-radius: 20px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-item {
    color: var(--text-gray);
    text-decoration: none;
    padding: 8 16px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.mega-menu-item:hover {
    color: var(--primary-color);
    background-color: #f0f2f5;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.icons-img {
    width: 40x;
    height: 40px;
    object-fit: contain;
}

.profile-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu-end {
    padding: 0.75rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: var(--pure-white);
    animation: dropdownFade 0.2s ease-out;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--dark-text);
    font-family: var(--button-font);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--icon-color-muted);
    transition: color 0.2s ease;
}

.dropdown-item:hover i {
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    opacity: 0.7;
}

/* Animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dropdown-menu-end {
        padding: 0.5rem 0;
    }

    .dropdown-item {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 210px;
        background: white;
        padding: 1rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1050;
    }

    .nav-logo {
        width: 100px;
        height: 25px;
        object-fit: contain;
    }

    .mega-menu-column {
        gap: 10px;
        font-weight: 200;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .mega-menu {
        position: static !important;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
        transform: none !important;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding-right: 0rem;
        padding-left: 0rem;
    }

    .mega-menu-items {
        grid-template-columns: 1fr;
        padding: 0px;
        font-size: 12px;
    }

    .mega-menu-intro {
        border-bottom: 1px solid #eee;
        display: none;
    }

    .nav-icons {
        margin-top: 1rem;
        justify-content: center;
    }

    .navbar-toggler {
        z-index: 1060;
    }

    .nav-link {
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        border: none;
        padding: 0;
        margin: 0;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Desktop styles */
@media (min-width: 991.98px) {
    .nav-item.dropdown {
        position: static;
    }

    .mega-menu-column {
        justify-content: center;
    }

    .mega-menu-item {
        padding: 12px;
    }

    .mega-menu-items {
        height: 38rem;
    }

    .dropdown-menu.mega-menu {
        display: none;
        min-height: 580px;
        position: absolute;
        z-index: 1050;
        border-top: 2px solid #ffae34;
        min-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 100vw;
        margin: 0 auto;
    }

    .dropdown-menu.mega-menu.show {
        min-height: 670px;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    /* .navbar {
        position: relative;
    } */

    .mega-menu-items {
        max-width: calc(100vw - 40px);
        margin: 0 auto;
    }
}

.hero-section {
    background-color: #342c6d;
}

/* Left Section Styles */
.left-section {
    background: radial-gradient(
        105.11% 51.79% at -732.77% 53.45%,
        #342c6d 100%
    );
    min-height: 100vh;
    padding: 2rem;
    padding-bottom: 12rem;
}

.main-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 46px;
    color: white;
}

.postal-text {
    color: #fbc72c;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.finder-button {
    background: white;
    color: #3d3396;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.finder-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.finder-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add ripple effect */
.finder-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(61, 51, 150, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.finder-button:hover::after {
    width: 500px;
    height: 300px;
}

.fallback-text {
    font-family: "Onest", sans-serif;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.fallback-text:hover {
    color: #f8f9fa;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Add underline animation for the link */
.fallback-text::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.fallback-text:hover::after {
    width: 100%;
}
/* Right Section Styles */
.right-section {
    background: #342c6d;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    width: 812.89px;
    height: 626px;
    position: relative;
}

.dotted-circle {
    width: 543.95px;
    height: 543.95px;
    left: 85px;
    top: 41px;
    position: absolute;
    border-radius: 50%;
    border: 3.04px #fbc72c dashed;
    animation: rotateCircle 20s linear infinite;
}

/* Basic rotation animation */
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* For added visual interest, you could use these alternative animations */

/* Pulsing rotation */
.dotted-circle-pulse {
    animation: rotateAndPulse 8s ease-in-out infinite;
}

@keyframes rotateAndPulse {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Reverse direction periodically */
.dotted-circle-reverse {
    animation: rotateReverse 16s linear infinite;
}

@keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }

    45% {
        transform: rotate(160deg);
    }

    50% {
        transform: rotate(180deg);
    }

    95% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Bounce rotation */
.dotted-circle-bounce {
    animation: rotateBounce 12s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes rotateBounce {
    0% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(355deg);
    }

    90% {
        transform: rotate(350deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gradient-card {
    width: 365px;
    height: 229px;
    left: 196px;
    top: 455px;
    position: absolute;
    background: linear-gradient(228deg, #6756fc 0%, #3d3396 77%, #6756fc 100%);
    background-size: 200% 100%;
    border-radius: 18.23px;
    backdrop-filter: blur(0.76px);
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.right-heading {
    width: 411px;
    height: 162px;
    left: 163px;
    top: 151px;
    position: absolute;
    color: white;
    font-size: 27px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.gradient-overlay {
    left: 121px;
    top: 282px;
    position: absolute;
}

.square-icon {
    width: 36.47px;
    height: 36.47px;
    position: absolute;
}

.circular-image {
    position: absolute;
    object-fit: cover;
}

.circular-yellow {
    right: 30px;
    top: 0px;
    animation: pulse 2s ease-in-out infinite;
}

.circular-white {
    right: 10px;
    top: 0px;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
    /* Offset timing for visual interest */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
        padding-top: 0px;
    }

    .right-section {
        display: none;
    }

    .left-section {
        width: 100%;
        min-height: 50vh;
        padding: 2rem;
    }

    .main-heading {
        font-size: 28px;
    }

    .right-section {
        overflow: hidden;
    }

    .content-wrapper {
        width: 100%;
        height: auto;
        transform: scale(0.7);
        transform-origin: top center;
    }

    .contact-section {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
}

.bg-primary-dark {
    background-color: #342c6d;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.1px;
    line-height: 34px;
}

.adviser-btn {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #6756fc !important;
}

.adviser-btn:hover {
    color: #5645e9 !important;
}

.footer-section {
    font-family: "Roboto", sans-serif;
    padding: 80px 0;
}

.footer-logo {
    min-width: 167px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-heading {
    color: #252b42;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Underline effect for headings */
.footer-heading::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #6756fc;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.2px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

/* Hover effect for links */
.footer-links a:hover {
    color: #6756fc;
    padding-left: 10px;
}

/* Arrow indicator on hover */
.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.footer-contact i {
    color: #6756fc;
    transition: transform 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
}

.footer-contact a,
.footer-contact span {
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.footer-contact a {
    text-decoration: underline;
}

.footer-contact a:hover {
    color: #6756fc;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #6756fc;
    font-size: 18px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Social icons hover effect */
.social-icons a:hover {
    transform: translateY(-3px);
    color: #4734d9;
}

/* Pulse animation for social icons */
/* .social-icons a::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-color: #6756FC;
border-radius: 50%;
opacity: 0.2;
transform: scale(0);
transition: transform 0.3s ease;
} */

.social-icons a:hover::after {
    transform: scale(1.5);
}

.afca-logo img {
    max-width: 105px;
    height: auto;
    transition: all 0.3s ease;
}

.afca-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6756fc;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4734d9;
}

/* Animation for phone number */
@keyframes shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.footer-contact li:first-child:hover i {
    animation: shake 0.5s ease;
}

/* Email hover effect */
.footer-contact li:last-child a {
    background: linear-gradient(to right, #6756fc 50%, transparent 50%);
    background-size: 200% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.footer-contact li:last-child a:hover {
    background-position: 0% 100%;
    padding-bottom: 2px;
}

/* Tablet and smaller devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .footer-section {
        padding: 50px 0;
    }

    .footer-logo {
        margin-bottom: 30px;
        min-width: 140px;
        height: 35px;
    }

    .footer-heading {
        margin-top: 30px;
        font-size: 15px;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
        gap: 15px;
    }

    .afca-logo img {
        max-width: 90px;
        margin: 20px auto;
        display: block;
    }
}

/* Mobile devices (max-width: 576px) */
@media screen and (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 25px;
        display: block;
    }

    .footer-heading {
        font-size: 14px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Adjust the hover effect for mobile */
    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-contact li {
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-contact a,
    .footer-contact span {
        font-size: 13px;
    }

    /* Center align contact items */
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    /* Adjust hover effects for better mobile experience */
    .footer-contact li:hover {
        transform: none;
    }

    .social-icons {
        justify-content: center;
        margin-top: 25px;
        gap: 20px;
    }

    .social-icons a {
        font-size: 20px;
    }

    /* Remove hover effects that might not work well on mobile */
    .social-icons a:hover {
        transform: none;
    }

    .afca-logo img {
        max-width: 85px;
        margin: 25px auto;
    }

    /* Adjust heading underline effect for mobile */
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Extra small devices (max-width: 380px) */
@media screen and (max-width: 380px) {
    .footer-section {
        padding: 30px 0;
    }

    .footer-logo {
        min-width: 120px;
        height: 30px;
    }

    .footer-heading {
        font-size: 13px;
        margin-top: 20px;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span {
        font-size: 12px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        font-size: 18px;
    }
}

.important-note {
    background-color: #342c6d;
    font-family: "Roboto", sans-serif;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.note-content {
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    text-align: justify;
}

.note-title {
    font-weight: 700;
    margin-right: 5px;
}

.note-link {
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
    position: relative;
}

.note-link:hover {
    color: #6756fc;
}

/* Underline hover effect */
.note-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #6756fc;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.note-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Improve readability */
.note-content {
    margin: 0 auto;
    padding: 10px 0px;
}

@media (max-width: 768px) {
    .note-content {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .important-note {
        padding: 10px;
        border-radius: 6px; /* Slightly smaller border radius for mobile */
    }

    .note-content {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 0;
    }

    .note-title {
        font-size: 18px; /* Slightly larger font size for titles on mobile */
    }

    /* Optional: Make the links larger and more tap-friendly */
    .note-link {
        font-size: 14px;
    }
}

/* Extra small mobile screens (e.g., < 480px) */
@media (max-width: 480px) {
    .important-note {
        padding: 8px;
    }

    .note-content {
        font-size: 13px;
        line-height: 20px;
    }

    .note-title {
        font-size: 16px;
    }

    .note-link {
        font-size: 12px;
    }
}
.main-container {
    display: flex;
    min-height: 100vh;
}

.left-side {
    flex: 1;
    padding: 1.5rem;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.right-side {
    flex: 1;
    background-color: var(--main-bg-color);
    padding: 4.5rem;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.logo {
    margin-left: 2rem;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.sign-in-form,
.register-form {
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
}

.sign-in-title,
.register-title {
    font-family: var(--button-font);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.create-account,
.login-link {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.create-account a,
.login-link span:last-child {
    color: var(--main-bg-color);
    text-decoration: underline;
    font-weight: 500;
}

.login-link span:first-child {
    font-family: var(--button-font);
    font-weight: 400;
    line-height: 27px;
}
/* Form Group Spacing */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* Label Animation */
.form-label {
    color: var(--text-muted);
    font-size: 15px;
    font-family: var(--input-font);
    font-weight: 500;
    line-height: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    color: var(--main-bg-color);
    transform: translateY(-0.25rem);
}

/* Required Field Indicator */
.form-label.required::after {
    content: "*";
    color: #e53e3e;
    margin-left: 4px;
}

/* Input Group Styles */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group .form-control {
    border-radius: 12px;
}

.input-group-text {
    background: var(--light-bg-color);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-family: var(--input-font);
    font-size: 14px;
}

.form-control {
    background: var(--light-bg-color);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    height: 45px;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--input-font);
    color: var(--input-text-color);
    padding: 0.75rem 1rem;
    padding-right: 35px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.form-control::placeholder {
    color: var(--text-muted);
    font-size: 14px;
    font-family: var(--input-font);
    font-weight: 400;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Select Field Styles */
.select-wrapper {
    position: relative;
}

.select-wrapper .form-control {
    cursor: pointer;
    padding-right: 40px;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--icon-color-muted);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-icon {
    color: var(--main-bg-color);
}

.select-wrapper .form-control:focus + .select-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--main-bg-color);
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1.5px solid var(--border-color);
    padding: 0.5rem 0 0.5rem 1rem;
    color: var(--icon-color-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--main-bg-color);
}

.btn-signin,
.btn-register {
    background: var(--main-bg-color);
    color: var(--pure-white);
    font-family: var(--button-font);
    font-weight: 600;
    font-size: 18px;
    padding: 12px;
    border-radius: 15px;
    width: 100%;
    margin-top: 1rem;
    line-height: 28px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
}

.remember-forgot {
    display: flex;
    flex-direction: row;
    /* gap: 1rem; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.remember-me {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--input-font);
}

.forgot-password {
    color: var(--main-bg-color);
    text-decoration: underline;
    font-weight: 500;
}

.highlight-card {
    background: var(--card-bg-color);
    border-radius: 10px;
    padding: 2rem;
    padding-right: 9rem;
    position: relative;
    overflow: hidden;
}

.highlight-title {
    color: var(--title-text-color);
    font-family: var(--button-font);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--body-text-color);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--input-font);
}

.ellipse-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 68%;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/Ellipse.svg");
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ellipse-bg.hide {
    animation: fadeOutUp 0.8s ease-in forwards;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.illustration-img {
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 20;
    opacity: 0;
    transform: translateX(100%);
    animation: fadeInRight 1s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.illustration-img.hide {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

.services-title {
    font-family: var(--button-font);
    font-weight: 600;
    font-size: 35px;
    color: var(--pure-white);
    margin: 2rem;
}

.services-list {
    margin: 2rem;
    color: #cfd9e0;
    font-size: 20px;
    line-height: 25px;
    list-style-type: none;
    padding: 0;
}

.services-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-family: var(--input-font);
    font-weight: 400;
    font-size: 20px;
}

.services-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: #cfd9e0;
    border-radius: 50%;
}

.angelic-step-title {
    color: var(--pure-white);
    font-size: 35px;
    font-family: var(--button-font);
    font-weight: 600;
    line-height: 45px;
    word-wrap: break-word;
}

.angelic-step-description {
    color: #cfd9e0;
    font-size: 20px;
    font-family: var(--input-font);
    font-weight: 400;
    line-height: 25px;
    word-wrap: break-word;
    margin: 2rem;
}

/* Focus State */
.form-control:focus {
    outline: none;
    border-color: var(--main-bg-color);
    box-shadow: 0 0 0 4px rgba(52, 44, 109, 0.1);
    transform: translateY(-1px);
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

/* Hover State */
.form-control:hover:not(:focus) {
    border-color: var(--main-bg-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}
.password-toggle:hover {
    color: var(--main-bg-color);
    transition: color 0.3s ease;
}

.form-check-input {
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}

.form-check-input:hover {
    border-color: var(--main-bg-color);
}

.btn-signin,
.btn-register {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-signin:hover,
.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--main-bg-color-rgb), 0.2);
}

.btn-signin:active,
.btn-register:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(var(--main-bg-color-rgb), 0.1);
}

/* Invalid State */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #e53e3e;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

/* Success State */
.form-control.is-valid {
    border-color: #38a169;
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2338a169' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

/* Disabled State */
.form-control:disabled {
    background-color: #f7fafc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .left-side {
        min-height: auto;
        padding: 1rem;
    }

    .right-side {
        padding: 1rem;
    }

    .logo {
        margin: 1rem 0rem 1.5rem;
    }

    .sign-in-form,
    .register-form {
        padding: 0 0.5rem;
        margin-top: 1rem;
    }

    .sign-in-title,
    .register-title {
        font-size: 28px;
        line-height: 34px;
    }

    .highlight-card {
        padding: 0.5rem 1rem;
    }

    .highlight-title {
        font-size: 24px;
        line-height: 32px;
    }

    .highlight-text {
        font-size: 14px;
        line-height: 20px;
    }

    .services-title {
        font-size: 18px;
        margin: 1.5rem 1rem;
    }

    .services-list {
        margin: 1rem;
        font-size: 16px;
        line-height: 22px;
    }

    .services-list li {
        font-size: 16px;
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .angelic-step-title {
        font-size: 18px;
        line-height: 32px;
    }

    .angelic-step-description {
        font-size: 16px;
        line-height: 22px;
        margin: 1rem;
    }

    .illustration-img {
        position: relative;
        max-width: 80%;
        margin: 1rem auto;
        display: none;
    }

    .ellipse-bg {
        display: none;
        left: 0;
        opacity: 0.5;
    }
    .remember-forgot {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .form-control {
        height: 42px;
        font-size: 14px;
        padding: 0.5rem 0.75rem;
    }

    .form-label {
        font-size: 14px;
    }

    .password-toggle {
        padding: 0.4rem 0 0.4rem 0.75rem;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 576px) and (max-width: 991px) {
    .left-side {
        padding: 2rem;
    }

    .sign-in-form,
    .register-form {
        padding: 0 2rem;
    }

    .logo {
        margin-left: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .for-sign-in-page-design {
        display: flex;
    }
    .main-container {
        min-width: 100%;
    }

    .left-side {
        max-width: 45%;
    }

    .right-side {
        max-width: 55%;
    }

    .sign-in-form {
        padding-left: 50px;
        margin-top: 5rem;
        padding-bottom: 10rem;
    }

    .register-form {
        padding-left: 50px;
    }

    .sign-in-title,
    .register-title {
        font-size: 48px;
        line-height: 44px;
    }
}

/* provider css */

.provider-hero {
    height: 300px;
    background-image: url("/assets/images/Website-banner.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.provider-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(52, 44, 109, 0.75) 0%,
        rgba(52, 44, 109, 0.75) 100%
    );
    z-index: 1;
}

.provider-breadcrumb {
    position: absolute;
    top: -70px;
    /* left: 15px; */
    z-index: 2;
}

.provider-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.provider-breadcrumb li {
    font-family: "Poppins", sans-serif;
    font-size: 12px; /* Smaller font for mobile */
    font-weight: 600;
    line-height: 20px;
}

.provider-breadcrumb li:not(:last-child)::after {
    content: ">";
    color: white;
    margin: 0 5px;
}

.provider-breadcrumb a {
    text-decoration: none;
}

.provider-breadcrumb .home-link {
    color: white;
}

.provider-breadcrumb .current-page {
    color: #fbc72c;
}

.provider-title {
    color: white;
    font-size: 28px; /* Smaller font for mobile */
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.provider-content {
    position: relative;
    z-index: 2;
}

/* Tablet styles */
@media (min-width: 768px) {
    .provider-hero {
        height: 350px; /* Taller for tablet */
    }

    .provider-breadcrumb {
        top: -110px;
        /* left: 20px; */
    }

    .provider-breadcrumb li {
        font-size: 13px;
        line-height: 22px;
    }

    .provider-title {
        font-size: 32px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .provider-hero {
        height: 400px; /* Full height for desktop */
    }

    .provider-breadcrumb li {
        font-size: 14px;
        line-height: 24px;
    }

    .provider-title {
        font-size: 37px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .provider-breadcrumb a {
        padding: 5px 0; /* Larger touch target */
    }
}

.image-grid-section {
    padding: 50px 0;
}

/* .image-grid {
  gap: 95px;
} */

.image-grid img {
    width: 205px;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

/* Mobile and Tablet styles (up to 991px) */
@media (max-width: 991px) {
    /* .image-grid {
    gap: 30px;
  } */
    .image-grid img {
        width: 100%;
        max-width: 205px;
    }
}

/* pay your premium */

.insurance-header {
    color: #050509;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 32px;
}

.insurance-subheader {
    color: #58585b;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.plan-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eaeeff;
    height: 100%;
}

.plan-card.one-off {
    background: #dcd7ff;
}

.plan-card.premium {
    background: #342c6d;
}

.plan-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;

    font-size: 32px;

    line-height: 38.4px;
}

.plan-description {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.steps-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: capitalize;
}

.steps-content {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.steps-content li {
    margin-bottom: 1rem;
}

.steps-content li:last-child {
    margin-bottom: 0;
}

.pay-button {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 99px;
    padding: 20px 30px;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    display: block;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .plan-card {
        margin-bottom: 2rem;
    }
}

/* Our Values - Custom CSS without Bootstrap dependencies */

.features-grid {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    background-color: #f1efff;
}

.content-wrappers {
    height: 496px;
    width: 100%;
    position: relative;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    height: 50%;
}

.feature-column {
    width: 33.33%;
    position: relative;
}

.feature-box {
    position: relative;
    padding: 20px;
    height: 208px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature-title {
    color: black;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-description {
    color: #9593a4;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 23px;
}

.divider-horizontal {
    height: 1px;
    background: #342c6d;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.divider-vertical {
    width: 1px;
    background: #342c6d;
    position: absolute;
    top: 0;
    bottom: 0;
}

.divider-vertical-left {
    left: 33.33%;
}

.divider-vertical-right {
    left: 66.66%;
}

/* Tablet styles */
@media (max-width: 991px) {
    .features-grid {
        height: auto;
        padding: 40px 0;
    }

    .content-wrappers {
        height: auto;
    }

    .features-row {
        height: auto;
    }

    .feature-column {
        width: 50%;
    }

    .feature-box {
        height: auto;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #342c6d; /* Adding horizontal line for each card */
    }

    .divider-horizontal,
    .divider-vertical {
        display: none;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .features-grid {
        padding: 30px 0;
    }

    .feature-column {
        width: 100%;
    }

    .feature-box {
        padding: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .feature-title {
        font-size: 17px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 20px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }
}

/* Small mobile specific adjustments */
@media (max-width: 575px) {
    .features-grid {
        padding: 20px 0;
    }

    .feature-box {
        padding: 10px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 18px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 20px;
    }
}

/* Fix for the last item not having a bottom border */
@media (max-width: 991px) {
    .feature-column:last-child .feature-box {
        border-bottom: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .feature-column:nth-child(2n) {
        border-right: none;
    }

    /* Remove bottom border from the last two items on tablet */
    .features-row:last-child
        .feature-column:nth-last-child(-n + 2)
        .feature-box {
        border-bottom: none;
    }
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.font-roboto {
    font-family: "Roboto", sans-serif;
}

.progress {
    background-color: rgba(83, 89, 96, 0.2);
}

.decorative-img {
    top: -20px;
    right: 15%;
    /* z-index: -1; */
}
.decorative-img-vision {
    top: -10px;
    right: 45%;
    /* z-index: -1; */
}
@media (min-width: 768px) {
    .left-side-content {
        padding: 7rem;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .decorative-img {
        right: 50%;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 1.75rem;
    }

    .progress-wrapper {
        margin-bottom: 1rem;
    }

    .decorative-img {
        width: 60px;
        height: auto;
    }
}

.values-section {
    overflow-x: hidden;
}

/* faqs */

.decorative-imgs {
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.decorative-imgsss {
    top: 18%;
    left: 63%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.accordion-item {
    border: none;
    border-radius: 11px !important;
    overflow: hidden;
    border-bottom: 1px solid #6756fc;
}

.accordion-button {
    background-color: #dcd7ff;

    font-size: 18px;
    padding: 13px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #6756fc;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #6756fc;
}

.accordion-body {
    background-color: rgba(251, 199, 44, 0.1);
    color: #263238;
    font-size: 16px;
    padding: 20px;
}

@media (max-width: 768px) {
    .display-heading {
        font-size: 1.75rem;
    }

    .accordion-button {
        font-size: 16px;
    }
}

/* values */

.industry-services {
    background-color: rgba(220, 215, 255, 0.4);
}

.industry-service-card {
    background-color: transparent;
    border: none;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 50px 0px;
    cursor: pointer;
    height: 199px;
    width: 220px;

    /* transition: transform 0.3s ease; */
}

@media (max-width: 768px) {
    .industry-service-card {
        background-color: transparent;
        border: none;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 20px 0px !important;
        cursor: pointer;
        height: 120px;
        width: auto;

        /* transition: transform 0.3s ease; */
    }
    .industry-service-icon img {
        max-width: 50% !important;
        max-height: 50% !important;
        margin-top: 5px !important;
        margin-left: 20px !important;
    }
    .industry-service-title {
        color: #252b42;
        font-weight: 500 !important;
        font-size: 14px !important;
        letter-spacing: 0.1px;
    }
    .industry-service-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }
}
.industry-service-card:hover {
    /* transform: scale(1.05); */
    background-color: white;
    box-shadow: 0px 13px 19px 0px rgba(0, 0, 0, 0.17);
}
.industry-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.industry-service-icon img {
    /* max-width: 80%;
  max-height: 80%; */
    margin-top: 20px;
    margin-left: 50px;
}
.industry-service-title {
    color: #252b42;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.1px;
}

.why-choose-us {
    background-color: #342c6d;
    color: white;
    padding: 80px 0;
}
.section-subtitles {
    color: #eaeeff;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.55px;
}
.section-titles {
    font-size: 36px; /* Reduced for smaller screens */
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}
.feature-items {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.feature-icons {
    width: 80px;
    height: 92px;
    background-color: #dcd7ff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.feature-contents h3 {
    color: white;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-contents p {
    color: #9f9f9f;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 1.6;
}
.satisfaction-card {
    background: white;
    box-shadow: 0px 20px 90px rgba(0, 0, 0, 0.25);
    border-radius: 0px 50px 50px 0px;
    padding: 20px 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    top: 22%;
    margin-top: 20px;
    z-index: 10;
}

.satisfaction-percentage {
    color: #3aa9e9;
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.image-containers {
    position: relative;
    height: auto;
    margin-top: 60px;
}
.image-placeholders {
    width: 100%;
    /* background-color: #58585B;
  border-radius: 10px; */
    overflow: hidden;
}
.stars {
    color: #fcbe48;
}

@media (min-width: 991px) {
    .industry-services {
        background-color: rgba(220, 215, 255, 0.4);
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .insurance-process-section {
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-us {
        padding: 50px 0;
    }
    .section-titles {
        font-size: 28px;
    }
    .feature-items {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    .feature-icons {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .satisfaction-card {
        position: static;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        width: 100%;
    }
    .image-containers {
        margin-top: 0;
    }
}
.testimonial-section {
    padding: 60px 0;
    background-color: #ffffff;
}
.form-section {
    background-color: #ffffff;
}
.insurance-process-section {
    padding: 60px 0;
    background-color: #342c6d;
}
.insurance-process-title {
    text-align: center;
    color: black;
    font-size: 36px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 50px;
}
.process-step {
    /* text-align: center; */
    margin-bottom: 30px;
}
.process-icon-wrapper {
    width: 93px;
    height: 96px;
    border-radius: 34px;
    margin: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 36px rgba(108, 99, 255, 0.25);
}
.process-step-number {
    font-size: 36px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
}
.process-step-title {
    color: black;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}
.process-step-description {
    color: #828284;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

/* Unique colors for each step */
.process-step-1 .process-icon-wrapper {
    background: rgba(220, 215, 255, 0.3);
}
.process-step-1 .process-step-number {
    color: #dcd7ff;
}

.process-step-2 .process-icon-wrapper {
    background: rgba(251, 199, 44, 0.3);
}
.process-step-2 .process-step-number {
    color: #fbc72c;
}

.process-step-3 .process-icon-wrapper {
    background: rgba(103, 86, 252, 0.54);
}
.process-step-3 .process-step-number {
    color: #6756fc;
}

.process-step-4 .process-icon-wrapper {
    background: rgba(255, 105, 204, 0.31);
}
.process-step-4 .process-step-number {
    color: #aa008f;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .insurance-process-title {
        font-size: 28px;
    }
    .process-step {
        margin-bottom: 40px;
    }
    .process-step-title {
        font-size: 18px;
    }
    .process-step-description {
        font-size: 14px;
    }
}

.pricing-section {
    background-color: #fff;
}

.pricing-subtitle {
    color: #58585b;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    letter-spacing: 2.55px;
}

.pricing-title {
    color: #050509;
    font-size: 48px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.pricing-card {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eaeeff;
    height: 100%;
}

.basic-card,
.premium-card {
    background-color: #dcd7ff;
}

.standard-card {
    background-color: #342c6d;
    color: white;
}

.pricing-amount h3 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    gap: 13px;
}

.month {
    color: #fbc72c;
    font-size: 16px;
    font-weight: 500;
}

.pricing-info h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-info p {
    color: #828284;
    font-size: 16px;
    margin-bottom: 24px;
}

.pricing-card hr {
    border-color: #d0dbff;
    margin: 24px 0;
}

.pricing-coverage h6,
.pricing-features h6 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.pricing-coverage ul,
.pricing-features ul {
    /* list-style: none;
padding: 0; */
    margin: 0 0 24px;
}

.pricing-coverage li {
    color: #828284;
    font-size: 18px;
    line-height: 28.8px;
    margin-bottom: 5px;
}

.standard-card .pricing-coverage li,
.standard-card .pricing-features li {
    color: #9f9f9f;
}

.pricing-features li {
    color: #828284;
    font-size: 16px;
    line-height: 25.6px;
}

.btn-start {
    width: 100%;
    padding: 20px 30px;
    border: none;
    border-radius: 99px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.basic-card .btn-start,
.premium-card .btn-start {
    background-color: #342c6d;
    color: white;
}

.standard-card .btn-start {
    background-color: white;
    color: #050509;
}

.btn-start:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .pricing-title {
        font-size: 36px;
    }

    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .pricing-title {
        font-size: 32px;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .pricing-subtitle {
        font-size: 15px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-amount h3 {
        font-size: 20px;
    }

    .pricing-info h4 {
        font-size: 28px;
    }
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-number {
    color: #3aa9e9;
    font-size: 17px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20.4px;
    letter-spacing: 2.55px;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-info {
        margin-bottom: 20px;
    }
}

.testimonial-section {
    overflow: hidden;
}

.testimonial-title {
    color: black;
    font-size: 40px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

.testimonial-subtitle {
    color: #757575;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 28.8px;
    max-width: 588px;
}

.client-name {
    color: black;
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

.client-review {
    color: #565656;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 25.6px;
    max-width: 412px;
    margin: 0 auto;
}

/* .testimonial-main-image img {
box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.15);
} */

.dot-pattern {
    width: 196px;
    height: 154px;
    position: absolute;
    left: 133px;
    top: 152px;
    background-image: radial-gradient(#f4f4f4 3px, transparent 3px);
    background-size: 21px 21px;
}

.purple-circle {
    width: 184px;
    height: 184px;
    position: absolute;
    right: 15%;
    bottom: 20%;
    background: #f0ebff;
    border-radius: 50%;
    z-index: -1;
}

.slider-dots {
    display: flex;
    gap: 26px;
    /* justify-content: center; */
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e7f0fc;
}

.dot.active {
    background: #6756fc;
}

.testimonial-avatars {
    height: 355px;
}

.avatar {
    border-radius: 50%;
    object-fit: cover;
}

.avatar-sm {
    width: 54px;
    height: 54px;
}

.avatar-md {
    width: 68px;
    height: 68px;
}

.avatar-lg {
    width: 98px;
    height: 98px;
}

.avatar-xl {
    width: 120px;
    height: 120px;
}

.top-1 {
    top: 15%;
}

.top-25 {
    top: 25%;
}

.top-35 {
    top: 35%;
}

.bottom-15 {
    bottom: 15%;
}

.bottom-25 {
    bottom: 25%;
}

.start-25 {
    left: 25%;
}

.start-35 {
    left: 35%;
}

.end-25 {
    right: 25%;
}

@media (max-width: 991.98px) {
    .testimonial-title {
        font-size: 32px;
    }

    .testimonial-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .testimonial-avatars {
        height: 300px;
        margin-top: 2rem;
        display: none;
    }
}

@media (max-width: 767.98px) {
    .testimonial-title {
        font-size: 28px;
    }

    .client-name {
        font-size: 20px;
    }

    .client-review {
        font-size: 14px;
    }

    .testimonial-avatars {
        height: 250px;
        display: none;
    }

    .avatar-sm {
        width: 40px;
        height: 40px;
    }

    .avatar-md {
        width: 50px;
        height: 50px;
    }

    .avatar-lg {
        width: 70px;
        height: 70px;
    }

    .avatar-xl {
        width: 90px;
        height: 90px;
    }
}

.testimonial-images {
    position: relative;
}

.testimonial-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-img.active {
    opacity: 1;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.dot {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:hover {
    background: #6756fc;
}

.form-container {
    /* max-width: 1170px;
  margin: 0 auto; */
    display: flex;
    gap: 40px;
}

.form-left-content {
    flex: 1;
}

.form-heading {
    color: #050509;
    font-size: 48px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.form-contact-title {
    color: #050509;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-contact-divider {
    border: 1px solid #eaeeff;
    margin: 20px 0;
    width: 75%;
}
.form-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.form-contact-icon {
    background: #342c6d;
    padding: 20px;
    border-radius: 5px;
    flex-shrink: 0;
}

.form-contact-label {
    color: #050509;
    font-size: 20px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.form-contact-value {
    color: #828284;
    font-size: 16px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.form-right-content {
    width: 100%;
    max-width: 539px;
}

.form-input-group {
    margin-bottom: 30px;
    width: 100%;
}

.form-labels {
    color: #14183e;
    font-size: 20px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    display: block;
    margin-bottom: 10px;
}

.form-inputs {
    width: 100%;
    padding: 15px 30px;
    background: rgba(220, 215, 255, 0.24);
    border: none;
    color: #747582;
    font-size: 15px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-submit-btn {
    background: linear-gradient(97deg, #342c6d 0%, #342c6d 100%);
    color: white;
    font-size: 18px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    letter-spacing: 0.36px;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 192px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: 0px 30px 50px 0px rgba(168, 22, 75, 0.15);
}

.form-submit-btn:hover {
    opacity: 0.9;
}

@media screen and (min-width: 768px) {
    .form-section {
        padding: 80px 20px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .form-heading {
        font-size: 36px;
    }

    .form-right-content {
        max-width: 450px;
    }
}

@media screen and (max-width: 768px) {
    .form-section {
        padding: 20px 0px;
    }
    .form-container {
        flex-direction: column;
    }

    .form-right-content {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-heading {
        font-size: 28px;
    }

    .form-contact-title {
        font-size: 20px;
    }

    .form-contact-label {
        font-size: 18px;
    }

    .form-labels {
        font-size: 18px;
    }

    .form-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}

.professional-team-section {
    background-color: #ffffff;
    display: none !important;
}

.professional-team-title {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    max-width: 752px;
    margin: 0 auto;
    padding-top: 29px;
}

.professional-team-title-dark {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.professional-team-title-primary {
    color: #6756fc;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.professional-team-ellipse {
    width: 79.38px;
    height: 79.42px;
    position: absolute;
    left: 28%;
    transform: translateX(-50%);
    top: 5px;
}

.professional-team-line {
    border-style: solid;
    border-color: #d0dbff;
    border-width: 1px 0 0 0;
    width: 290px;
    height: 0px;
    position: absolute;
    right: 25%;
    top: 96px;
}

.professional-team-grid {
    /* padding: 0px 40px;
      max-width: 1194px; */
    margin: 120px auto 0;
}

.professional-team-member {
    width: 160px;
    height: 190px;
    position: relative;
    margin: 0 auto;

    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.professional-team-member:hover {
    background: #a0a2fe;
    transition: transform 0.3s ease;
}

.professional-team-bg:hover {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 12px;
    opacity: 0.9;
    font-family: "Roboto", sans-serif;
}

.testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    color: transparent;
    padding: 7px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.professional-team-member:hover .testimonial-info {
    background-color: #6756fc;
    color: white;
}

.professional-team-image {
    width: 95%;
    height: 90%;
    position: absolute;
    right: 2%;
    left: 2%;
    top: -10%;
    bottom: 4%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .professional-team-line {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .professional-team-line {
        display: none;
    }
    .testimonial-name {
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .testimonial-position {
        font-size: 8px;
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .professional-team-title,
    .professional-team-title-dark,
    .professional-team-title-primary {
        font-size: 28px;
    }

    .professional-team-grid {
        padding: 0 20px;
        margin-top: 80px;
    }
}

@media (max-width: 576px) {
    .professional-team-title,
    .professional-team-title-dark,
    .professional-team-title-primary {
        font-size: 24px;
    }

    .professional-team-grid {
        padding: 0 10px;
        margin-top: 60px;
    }

    .professional-team-member {
        width: 110px;
        height: 129px;
    }
}

.map-rectangle-1043 {
    opacity: 1;
    height: 748px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 600px;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
}

/* Custom marker colors */
.marker-black {
    background-color: #000000;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.marker-blue {
    background-color: #6756fc;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.marker-orange {
    background-color: #ffa500;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.marker-red {
    background-color: #ff4d4d;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-rectangle-1043 {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .map-rectangle-1043 {
        height: 400px;
    }
}

/* .about-features-transparent,
.about-features-transparent * {
    box-sizing: border-box;
} */

.about-features-transparent {
    background: rgba(52, 44, 109, 0.99);
    border-radius: 25px;
    padding: 20px 24px 24px 24px;
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: center;
    justify-content: flex-start;
    height: 174px;
    position: relative;
    overflow: hidden;
}

.about-icon-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    position: relative;
    overflow: hidden;
}

.about-div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 255px;
    position: relative;
}

.about-h-3-feature-title {
    color: #ffffff;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.1px;
    font-weight: 700;
    position: relative;
}

.about-paragraph-feature-description {
    color: #ffffff;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2px;
    font-weight: 400;
    position: relative;
}

.about-carousel-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.about-risk-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-inner {
    position: relative;
    width: 460px;
    height: 100%;
}

.about-carousel-item {
    display: none;
    width: 100%;
}

.about-carousel-item.active {
    display: block;
}

.about-navigation-arrows {
    position: absolute;
    /* transform: translateX(-50%); */
    display: flex;
    gap: 20px;
    z-index: 10;
    cursor: pointer;
}

.about-character-image {
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 1;
}

.about-boss-1 {
    width: 102px;
    height: 303px;
    transform: scaleX(-1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-carousel-wrapper {
        min-height: 250px;
        /* height: auto; */
    }

    .about-character-image {
        right: 0;
    }

    .about-boss-1 {
        width: 80px;
        height: auto;
    }

    .about-carousel-inner {
        width: 290px;
    }

    .about-icon-box {
        display: none;
    }
}

@media (min-width: 768px) {
    .for-height {
        padding-top: 7rem !important;
    }
}

/* about us working */

/* Base styles */
.about-us-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Header styles */
.about-us-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 816px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.about-us-title {
    color: #050509;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-us-subtitle {
    color: #828284;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    font-weight: 500;
}

/* Cards grid */
.about-us-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

/* Card styles */
.about-us-card {
    background: rgba(220, 215, 255, 0.25);
    border-radius: 10px;
    border: 1px solid rgba(220, 215, 255, 0.25);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 206px;
}

.about-us-card-icon {
    background: #342c6d;
    border-radius: 5px;
    width: 80px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-us-card-icon img {
    width: 24px;
    height: 24px;
}

.about-us-card-content {
    flex: 1;
}

.about-us-card-title {
    color: #050509;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-us-card-text {
    color: #828284;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    font-weight: 500;
}

/* Decorative element */
.about-us-decoration {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 97px;
    height: 97px;
    z-index: -1;
}

@media (max-width: 992px) {
    .about-us-cards {
        grid-template-columns: 1fr;
    }

    .about-us-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-header {
        margin-bottom: 40px;
    }

    .about-us-title {
        font-size: 28px;
    }

    .about-us-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .about-us-card-icon {
        margin: 0 auto;
    }

    .about-us-decoration {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .about-us-title {
        font-size: 24px;
    }

    .about-us-card-title {
        font-size: 20px;
    }
}

/* Ellipse styles */
.about-us-ellipse {
    width: 79.38px;
    height: 79.42px;
    position: absolute;
    top: -40%;
    right: 15%;
    overflow: visible;
    /* z-index: -1; */
}
.about-us-ellipses {
    width: 79.38px;
    height: 79.42px;
    position: absolute;
    top: -30%;
    right: 30%;
    overflow: visible;
    /* z-index: -1; */
}
.about-us-ellipse path {
    fill: #c2c0d3;
    fill-opacity: 0.33;
}

/* Responsive adjustments for ellipse */
@media (max-width: 992px) {
    .about-us-ellipse {
        /* width: 60px;
    height: 60px; */
        top: -50px;
        right: 50%;
    }
    .about-us-ellipses {
        width: 60px;
        height: 60px;
        top: -50px;
        right: 50%;
    }
}

@media (max-width: 768px) {
    /* .about-us-ellipse {
    width: 50px;
    height: 50px;
    top: -20px;
    right: 50%;
  } */
    .about-us-ellipses {
        width: 50px;
        height: 50px;
        top: -20px;
        right: 50%;
    }
}

@media (max-width: 480px) {
    /* .about-us-ellipse {
    width: 40px;
    height: 40px;
    top: -10px;
    right: 50%;
  } */
    .about-us-ellipses {
        width: 40px;
        height: 40px;
        top: -10px;
        right: 50%;
    }
}

.why-choose-us-section {
    background: linear-gradient(
            to left,
            rgba(52, 44, 109, 0.86),
            rgba(52, 44, 109, 0.86)
        ),
        url("/assets/images/angleic\ hero\ image..png");
    background-size: cover;
    background-position: center;
    height: 804px;
    position: relative;
    overflow: hidden;
}

.why-choose-us-title-container {
    width: 816px;
    height: 38px;
    position: absolute;
    left: calc(50% - 418px);
    top: 191px;
}

.why-choose-us-heading {
    color: #ffffff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
    width: 816px;
}

.why-choose-us-features-grid {
    width: 1117px;
    height: 321px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 312px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-choose-us-feature {
    position: relative;
    text-align: center;
}

.why-choose-us-icon-circle {
    border-radius: 50%;
    border: 2px solid #ffffff;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-choose-us-icon {
    width: 66px;
    height: 66px;
}

.why-choose-us-feature-title {
    color: #ffffff;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    width: 242px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-feature-text {
    color: #ffffff;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    width: 259px;
    margin: 18px auto 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .why-choose-us-features-grid {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        height: auto;
        padding: 60px 20px;
    }

    .why-choose-us-title-container {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        margin-bottom: 40px;
    }

    .why-choose-us-heading {
        width: 100%;
        font-size: 25px;
    }

    .why-choose-us-features-grid {
        position: relative;
        grid-template-columns: 1fr;
        top: 0;
    }

    .why-choose-us-feature {
        margin-bottom: 40px;
    }

    .why-choose-us-feature-title,
    .why-choose-us-feature-text {
        width: 100%;
        max-width: 300px;
    }
}

.our-story-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.our-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* Left Content Styling */
.our-story-content-wrapper {
    position: relative;
}

.our-story-content {
    position: relative;
    max-width: 550px;
}

.our-story-decoration {
    position: absolute;
    right: 40%;
    top: -50px;
    z-index: 1;
}

.our-story-headline {
    position: relative;
    margin-bottom: 30px;
}

.our-story-title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: #6756fc;
    margin-bottom: 25px;
}

.our-story-text-container {
    position: relative;
}

.our-story-text {
    color: #828284;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-bottom: 20px;
}

.our-story-text:last-child {
    margin-bottom: 0;
}

/* Gallery Grid Styling */
.our-story-gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.our-story-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 100px);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery item placement */
.gallery-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.gallery-item-3 {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
}

.gallery-item-4 {
    grid-column: 2 / 4;
    grid-row: 3 / 5;
}

.gallery-item-5 {
    grid-column: 4 / 5;
    grid-row: 3 / 5;
}

.gallery-item-6 {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
}

.gallery-item-7 {
    grid-column: 3 / 5;
    grid-row: 5 / 7;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .our-story-wrapper {
        gap: 30px;
    }

    .our-story-gallery {
        grid-template-rows: repeat(6, 85px);
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .our-story-section {
        padding: 80px 0;
    }

    .our-story-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .our-story-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .our-story-decoration {
        right: 45%;
    }

    .title-line {
        margin: 0 auto 25px;
    }

    .our-story-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .gallery-item-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-5 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-6 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .gallery-item-7 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 60px 0;
    }

    .our-story-decoration {
        right: 40%;
        top: -30px;
        transform: scale(0.8);
    }

    .our-story-title {
        font-size: 28px;
        line-height: 42px;
    }

    .our-story-text {
        font-size: 15px;
    }

    .our-story-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 10px;
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item-7 {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
}

@media (max-width: 576px) {
    .our-story-section {
        padding: 50px 0;
    }

    .our-story-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 200px);
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6,
    .gallery-item-7 {
        grid-column: 1;
    }

    .gallery-item-1 {
        grid-row: 1 / 2;
    }
    .gallery-item-2 {
        grid-row: 2 / 3;
    }
    .gallery-item-3 {
        grid-row: 3 / 4;
    }
    .gallery-item-4 {
        grid-row: 4 / 5;
    }
    .gallery-item-5 {
        grid-row: 5 / 6;
    }
    .gallery-item-6 {
        grid-row: 6 / 7;
    }
    .gallery-item-7 {
        grid-row: 7 / 8;
    }
}

/* blog section */

.blog-hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.blog-hero-figure {
    margin: 0;
}

.blog-hero-background {
    position: absolute;
    left: 0;
    top: -44px;
    width: 100%;
    max-width: 945px;
    height: auto;
    aspect-ratio: 945/691;
    mix-blend-mode: luminosity;
    object-fit: cover;
}

.blog-hero-main-figure {
    margin: 0;
}

.blog-hero-main-image {
    width: 100%;
    max-width: 554px;
    height: auto;
    aspect-ratio: 554/570;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-hero-main-image:hover {
    transform: scale(1.05);
}

.blog-hero-content {
    color: #262626;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    max-width: 364px;
    margin: 0px 0px 0px 21%;
}

.blog-hero-button {
    background: #342c6d;
    border-radius: 6px;
    padding: 12px 32px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-left: 21%;
}

.blog-hero-button:hover {
    background: #423788;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 44, 109, 0.2);
}

.blog-hero-button-text {
    color: #e1e8f0;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.9;
    letter-spacing: 0.09em;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-sidebar {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
}

.blog-today-badge {
    background: #e1e8f0;
    border-radius: 3px;
    padding: 4px 16px;
    display: inline-block;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.blog-today-badge:hover {
    background: #d1d8e0;
}

.blog-today-text {
    color: #b8c2ce;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
}

.blog-sidebar-card {
    position: relative;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.blog-sidebar-card:hover {
    transform: translateY(-5px);
}

.blog-sidebar-figure {
    margin: 0;
}

.blog-sidebar-image {
    border-radius: 6px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-sidebar-overlay {
    background: linear-gradient(
        180deg,
        rgba(242, 242, 242, 1) 0%,
        rgba(242, 242, 242, 0) 100%
    );
    border-radius: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 132px;
}

.blog-post-meta {
    color: rgba(38, 38, 38, 0.6);
    font-family: "DM Sans", sans-serif;
    font-size: clamp(9px, 1.5vw, 10px);
    line-height: 1.1;
    font-weight: 500;
    margin-top: 10px;
}

.blog-post-title {
    color: #262626;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.24;
    font-weight: 400;
    margin-top: 5px;
}

/* Additional Media Queries */
@media (max-width: 1200px) {
    .blog-hero-button {
        display: block;
        max-width: 250px;
        margin: 30px auto;
    }
}

@media (max-width: 991px) {
    .blog-hero-wrapper {
        text-align: center;
    }

    .blog-hero-content {
        max-width: 100%;
        padding: 0px;
        margin: 0px;
    }

    .blog-sidebar {
        margin-top: 40px;
        padding: 0px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 40px 0;
    }

    .blog-hero-background {
        top: 0;
    }
}

@media (min-width: 768px) {
    .position-absolute-image {
        position: absolute;
        top: -3%;
        right: 8%;
    }
}

/* blog gallery */
.blog-category-section {
    padding: 40px 0;
}

.blog-category-title {
    color: #262626;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Money Cards */
.blog-money-card {
    background: #ebeef3;
    border-radius: 6px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.blog-money-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.5s ease;
}

.blog-money-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #e0e4ea;
}

.blog-money-card:hover::before {
    left: 100%;
}

.blog-money-title {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.blog-money-card:hover .blog-money-title {
    transform: scale(1.05);
    color: #000;
}

/* Image Cards */
.blog-image-card {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.blog-image-card::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.blog-image-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-image-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-image-card:hover::before {
    opacity: 1;
}

.blog-image-card:hover img {
    transform: scale(1.1);
}

/* Responsive height adjustments */
@media (min-width: 768px) {
    .blog-image-card.tall::after {
        padding-bottom: 120%;
    }

    .blog-image-card.medium::after {
        padding-bottom: 90%;
    }
}

/* Hover disable for touch devices */
@media (hover: none) {
    .blog-money-card:hover {
        transform: none;
        box-shadow: none;
    }

    .blog-image-card:hover img {
        transform: none;
    }
}

/* Spacing adjustments for different screen sizes */
@media (max-width: 767px) {
    .blog-category-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .blog-money-card {
        height: 100px;
    }
}
.for-background {
    background: #dcd7ff;
    border-radius: 6px;
}

.trending-news-section {
    position: relative;
}

.news-title {
    color: #262626;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
    width: 85%;
    text-align: left;
}

.news-card {
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    border-radius: 6px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.news-card img {
    border-radius: 6px;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-date {
    color: rgba(38, 38, 38, 0.6);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    line-height: 100.9%;
    margin-bottom: 5px;
}

.news-heading {
    color: #262626;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 136.9%;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-card:hover .news-heading {
    color: #4b3fdd;
}

.news-excerpt {
    color: #696868;
    font-family: "DmSans", sans-serif;
    font-size: 12px;
    line-height: 123.9%;
    font-weight: 400;
}
.featured-post {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    /* height: 609px; */
}

.featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
}

.category-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #dcd7ff;
    border-radius: 3px;
    color: #dcd7ff;
    font-family: "DmSans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.featured-post:hover .category-tag {
    background: #dcd7ff;
    color: #262626;
}

.featured-post-title {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    position: absolute;
    bottom: 60px;
    max-width: 509px;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-title {
    transform: translateY(-5px);
}

.featured-post-date {
    color: #ffffff;
    font-family: "DmSans", sans-serif;
    font-size: 18px;
    position: absolute;
    font-weight: 400;
    bottom: 30px;
    transition: opacity 0.3s ease;
}

.featured-post:hover .featured-post-date {
    opacity: 0.8;
}

.blog-carousel-section {
    font-family: "Poppins", sans-serif;
}

.blog-carousel-wrapper {
    position: relative;
}

.blog-carousel-slides {
    position: relative;
    overflow: hidden;
}

.blog-carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.blog-carousel-slide.active {
    display: block;
    opacity: 1;
}

.blog-carousel-content {
    background: var(--light-blue, #dcd7ff);
    border-radius: 6px;
}

.blog-carousel-image {
    height: 518px;
}

.blog-carousel-image img {
    height: 100%;
    object-fit: cover;
}

.blog-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    border-radius: 6px 6px 0 0;
}

.blog-carousel-category {
    position: absolute;
    top: 31px;
    left: 48px;
}

.blog-carousel-category span {
    font-family: "DmSans", sans-serif;
    font-size: 20px;
    padding: 8px 16px;
    border: 1px solid #dcd7ff;
    border-radius: 3px;
    color: #dcd7ff;
    font-weight: 500;
}

.blog-carousel-text {
    position: absolute;
    bottom: 48px;
    left: 48px;
    max-width: 760px;
}

.blog-carousel-meta {
    color: #f9fafc;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 100.9%;
    margin-bottom: 10px;
}

.blog-carousel-title {
    color: #f9fafc;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-carousel-description {
    color: #ffffff;
    font-family: "DmSans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    max-width: 697px;
}

/* Navigation Styles */
.blog-carousel-nav {
    display: flex;
    justify-content: end;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    padding: 5px 30px;
    background: var(--light-blue, #dcd7ff);
    height: 60px;
    position: relative;
    gap: 20px;
}

.blog-carousel-pagination {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.blog-carousel-pagination span {
    color: rgba(38, 38, 38, 0.61);
    text-align: center;
    font-family: "SequelSans-BookDisp", sans-serif;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 0.01em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.blog-carousel-pagination span.active {
    color: #fff; /* Updated to white for better visibility */
    font-family: "SequelSans", sans-serif;
    position: relative;
    font-weight: 600;
    z-index: 2;
}

.blog-carousel-pagination span.active::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: var(--dark-blue, #342c6d);
    border-radius: 50%;
    z-index: -1;
}

.blog-carousel-btn {
    width: 70px;
    height: 50px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel-prev {
    background: var(--blue, #6756fc);
}

.blog-carousel-next {
    background: var(--dark-blue, #342c6d);
}

.blog-carousel-btn:hover {
    opacity: 0.9;
}

.blog-icon {
    color: white;
    font-size: 25px;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .blog-carousel-image {
        height: 400px;
    }
    .blog-icon {
        font-size: 14px;
    }
    .blog-carousel-title {
        font-size: 28px;
        line-height: 34px;
    }

    .blog-carousel-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .blog-carousel-image {
        height: 350px;
    }

    .blog-carousel-category span {
        font-size: 16px;
    }

    .blog-carousel-title {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-carousel-meta {
        font-size: 14px;
    }

    .blog-carousel-pagination span {
        font-size: 20px;
    }

    .blog-carousel-btn {
        width: 50px;
        height: 40px;
    }

    .blog-carousel-nav {
        padding: 5px 15px;
        grid-template-columns: 50px 1fr 50px;
        gap: 0px;
    }
}

@media (max-width: 576px) {
    .blog-carousel-image {
        height: 300px;
    }

    .blog-carousel-text {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .blog-carousel-category {
        left: 10px;
        top: 8px;
    }

    .blog-carousel-category span {
        padding: 4px 4px;
    }
    .blog-carousel-title {
        font-size: 14px;
        line-height: 26px;
    }

    .blog-carousel-description {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-carousel-pagination {
        gap: 15px;
    }
}

/* CSS Styles */
.blog-recent-news-class-name {
    background-color: #fff;
}

.blog-recent-news-title {
    color: #262626;
    font-size: 28px;
    font-family: "Sequel Sans", sans-serif;
    font-weight: 415;
    line-height: 38px;
    transition: color 0.3s ease;
}

.blog-recent-news-title:hover {
    color: #0056b3;
}

.blog-recent-news-date {
    color: rgba(38, 38, 38, 0.6);
    font-size: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 10.09px;
    transition: color 0.3s ease;
}

.blog-recent-news-card {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 2px;
    border-radius: 6px;
}

.blog-recent-news-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-recent-news-card-title {
    color: #262626;
    font-size: 16px;
    font-family: "Sequel Sans", sans-serif;
    font-weight: 410;
    line-height: 19.82px;
    transition: color 0.3s ease;
}

.blog-recent-news-card:hover .blog-recent-news-card-title {
    color: #0056b3;
}

.blog-recent-news-featured {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.blog-recent-news-featured:hover {
    transform: translateY(-4px);
}

.blog-recent-news-featured-tag {
    color: #ebeef3;
    font-size: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 10.09px;
}

.blog-recent-news-featured-title {
    color: #ebeef3;
    font-size: 16px;
    font-family: "Sequel Sans", sans-serif;
    font-weight: 410;
    line-height: 19.82px;
}

.blog-recent-news-overlay {
    background: linear-gradient(
        109deg,
        rgba(255, 255, 255, 0.24) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(100px);
    border-radius: 6px 6px 0 0;
    transition: background 0.3s ease;
}

.blog-recent-news-featured:hover .blog-recent-news-overlay {
    background: linear-gradient(
        109deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.blog-recent-news-btn-more {
    background: #b8c2ce;
    color: white;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.blog-recent-news-btn-more:hover {
    background: #99a5b5;
    transform: translateX(4px);
}

.rankings-table {
    background: #ebeef3;
    border-radius: 6px;
}

.rankings-table table {
    width: 100%;
}

.rankings-table th {
    color: #262626;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    padding: 10px;
    text-align: center;
    font-weight: 420;
    text-transform: capitalize;
    word-wrap: break-word;
}

.rankings-table td {
    padding: 11px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    color: #262626;
    font-size: 14px;
    font-weight: 405;
    text-transform: capitalize;
    word-wrap: break-word;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #262626;
    font-size: 13px;
    font-weight: 420;
    text-transform: capitalize;
    word-wrap: break-word;
}

.team-rank {
    color: rgba(38, 38, 38, 0.6);
    font-size: 12px;
}

.team-logo {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* Add hover effect for table rows */
.rankings-table tbody tr {
    transition: all 0.3s ease;
}

.rankings-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.blog-news-article {
    padding: 60px 0;
    background-color: #fff;
}

.blog-news-article__title {
    color: #262626;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 40px;
}

.blog-news-article__card {
    border-radius: 6px;
    overflow: hidden;
    height: auto;
    min-height: 505px;
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.blog-news-article__image {
    width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.blog-news-article__tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    background: rgba(
        52,
        44,
        109,
        0.9
    ); /* Semi-transparent background using brand color */
    border: 1.5px solid #ebeef3;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.blog-news-article__tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(52, 44, 109, 1);
}

.blog-news-article__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    padding: 0 20px;
}

.blog-news-article__author-image {
    width: 44px;
    height: 44px;
    border-radius: 46px;
}

.blog-news-article__author-name {
    color: #3e3232;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.blog-news-article__date {
    color: rgba(38, 38, 38, 0.6);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    padding: 0 20px;
}

.blog-news-article__heading {
    color: #262626;
    font-size: 22px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 29px;
    padding: 0 20px;
    margin-bottom: 15px;
}

.blog-news-article__excerpt {
    color: #696868;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    line-height: 19.82px;
    padding: 0 20px 20px;
}

.blog-news-article__controls {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
}

.blog-news-article__button {
    width: 70px;
    height: 50px;
    border-radius: 3px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background: #342c6d;
}

.blog-news-article__button i {
    color: #ebeef3;
    font-size: 18px;
    transition: transform 0.2s ease;
}

/* Hover effects */
.blog-news-article__button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-news-article__button--prev:hover {
    background: #423888;
}

.blog-news-article__button--prev:hover i {
    transform: translateX(-3px);
}

.blog-news-article__button--next:hover {
    background: #423888;
}

.blog-news-article__button--next:hover i {
    transform: translateX(3px);
}

/* Active/Click effects */
.blog-news-article__button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-news-article__button--prev:active {
    background: #2a2355;
}

.blog-news-article__button--next:active {
    background: #2a2355;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-news-article__card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .blog-news-article__title {
        font-size: 24px;
        line-height: 32px;
    }

    .blog-news-article__heading {
        font-size: 20px;
        line-height: 26px;
    }

    .blog-news-article__excerpt {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 576px) {
    .blog-news-article {
        padding: 40px 0;
    }

    .blog-news-article__image {
        height: 200px;
    }
}

/* blog post */

/* Post Styles */
.blog-post-single-category {
    /* background: #f2f8f7; */
    border-radius: 3px;
    /* padding: 4px 8px; */
    color: #666666;
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-single-category:hover {
    background: #e5f1ef;
    color: #666666;
}

.blog-post-single-meta {
    color: #777777;
    font-size: 12px;
    line-height: 163.42%;
    font-weight: 700;
}

.blog-post-single-title {
    color: #222222;
    font-size: 27px;
    line-height: 140%;
    font-weight: 600;
    margin: 20px 0;
}

.blog-post-single-content {
    color: #666666;
    font-size: 15px;
    line-height: 150%;
    font-weight: 400;
}

.blog-post-single-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-post-single-author img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-post-single-author .divider {
    width: 1px;
    height: 12px;
    background: #999999;
}

.blog-post-single-step-nav {
    display: flex;
    margin-top: 30px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.blog-post-single-step-nav .step {
    padding: 15px 30px;
    font-size: 15px;
    line-height: 100%;
    border: 1px solid #f2f8f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-post-single-step-nav .step.active {
    background: #ffffff;
    color: #333333;
}

.blog-post-single-step-nav .step:not(.active) {
    color: #6756fc;
    background: #ffffff;
}

.blog-post-single-featured-box {
    background: rgba(103, 86, 252, 0.2);
    border-radius: 0 8px 8px 8px;
    padding: 30px;
    margin-top: 20px;
}

.blog-post-single-gallery img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 159px;
}

.blog-post-single-main-image {
    border-radius: 5px;
    width: 100%;
    height: 311px;
    object-fit: cover;
}

/* Social Share Styles */
.blog-post-single-social-frame {
    display: flex;
    flex-direction: row;
    gap: 12.5%;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.blog-post-single-line {
    margin-top: -1px;
    border-style: solid;
    border-color: rgba(220, 215, 255, 0.47);
    border-width: 1px 0 0 0;
    flex-shrink: 0;
    width: 184px;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
}

.blog-post-single-social-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-post-single-social-share {
    margin-top: 30px;
    padding: 20px 0;
}

.blog-post-single-social-share a {
    color: #999999;
    font-size: 18px;
    transition: all 0.3s ease;
}

.blog-post-single-social-share a:hover {
    color: #fbc72c;
}

/* Sidebar Styles */
.blog-post-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.blog-post-single-sidebar-section {
    margin-bottom: 30px;
}

.blog-post-single-section-header {
    position: relative;
    margin-bottom: 20px;
}

.blog-post-single-header-highlight {
    background: #fbc72c;
    width: 77px;
    height: 32px;
    position: absolute;
    z-index: 1;
}

.blog-post-single-section-title {
    position: relative;
    z-index: 2;
    font-family: "Outfit", sans-serif;
    font-size: 25px;
    font-weight: 600;
    padding: -1px 15px;
}

.blog-post-single-text-light {
    color: #ffffff;
}

.blog-post-single-text-dark {
    color: #222222;
}

/* Stats Grid Styling */
.blog-post-single-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog-post-single-stat-card {
    background: rgba(103, 86, 252, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.blog-post-single-stat-value {
    color: #fbc72c;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-post-single-stat-label {
    color: #222222;
    font-size: 16px;
    font-weight: 400;
}

/* Categories Styling */
.blog-post-single-category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-post-single-category-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(220, 215, 255, 0.47);
    color: #1a1a1a;
    font-size: 16px;
}

/* Tags Styling */
.blog-post-single-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-post-single-tag-item {
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    padding: 10px 20px;
    color: #666666;
    font-size: 15px;
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-single-tag-item.active {
    background: #fbc72c;
    color: #ffffff;
    border-color: #fbc72c;
}

.blog-post-single-tag-item:hover {
    background: #fbc72c;
    color: #ffffff;
    border-color: #fbc72c;
}

.blog-post-single-recent-post img {
    width: 113px;
    height: 114px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-post-single-opacity-30 {
    opacity: 0.3;
}

@media (max-width: 991.98px) {
    .blog-post-single-stats-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-single-gallery {
        grid-template-columns: 1fr;
    }
    .blog-post-single-line {
        display: none;
    }
    .blog-post-single-step-nav .step {
        padding: 5px 30px;
        font-size: 12px;
    }
}

/* main page */

.hero-main {
    position: relative;
    padding: 60px 0 0 0;
    overflow: hidden;
}

.hero-main__slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-main__row {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}

.hero-main__row.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-main__row.next {
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
}

.hero-main__content-left {
    position: relative;
    z-index: 2;
}

.hero-main__decorative-circle {
    position: absolute;
    right: 50px;
    top: 0px;
}

.hero-main__heading {
    font-family: "Lato", sans-serif;
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-main__heading-highlight {
    color: #6756fc;
}

.hero-main__cta-buttons {
    display: flex;
    gap: 36px;
}

.hero-main__btn-primary-dark {
    background: #342c6d;
    color: white;
    padding: 16px 23px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    width: 250px;
    box-shadow: 8px 8px 31px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-main__btn-primary-blue {
    background: #6756fc;
    color: white;
    padding: 16px 23px;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    width: 250px;
    box-shadow: 8px 8px 31px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-main__btn-primary-dark:hover,
.hero-main__btn-primary-blue:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 31px 8px rgba(0, 0, 0, 0.15);
}

.hero-main__image-section {
    position: relative;
    height: 600px;
    width: 100%;
    margin-right: -15px;
}

.hero-main__floating-image {
    position: absolute;
    width: 49rem;
    height: auto;
    object-fit: contain;
    right: -1rem;
    bottom: 0;
}

@media (min-width: 991px) {
    .hero-main__width-set {
        position: relative;
        width: 100%;
    }
    .hero-main__content-left {
        padding-left: 8rem;
    }
    .hero-main__image-section {
        margin-right: -50px;
    }
}

@media (max-width: 990px) {
    .hero-main__slider-container {
        height: auto;
        min-height: 600px;
    }
    .hero-main__heading {
        font-size: 48px;
        line-height: 60px;
    }
    .hero-main__content-left {
        padding: 0 0 0 1.5rem;
        margin-bottom: 3rem;
    }
    .hero-main__image-section {
        height: 400px;
        margin-right: 0;
    }
    .hero-main__floating-image {
        position: relative;
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-main__slider-container {
        height: auto;
        min-height: 350px;
    }
    .hero-main__heading {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 30px;
    }
    .hero-main__cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .hero-main__btn-primary-dark,
    .hero-main__btn-primary-blue {
        width: 100%;
    }
    .hero-main__image-section {
        height: 300px;
        display: none;
    }
}

.home-process-section {
    background: #342c6d;
    padding: 80px 0;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.home-process-wrapper {
    position: relative;
}

.home-process-title {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin-bottom: 40px;
}

.home-process-circle {
    position: absolute;
    top: -20px;
    right: 40%;
}

.home-step-wrapper {
    height: 100%;
    padding: 25px 20px 25px 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    border-left: 4px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-step-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    display: none; /* Hidden as we're using border instead */
}

.step-number {
    position: absolute;
    left: -18px;
    top: 25px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    background: #0e1a30;
    padding: 5px 10px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    min-width: 36px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    z-index: 2;
}

.home-step-content {
    position: relative;
    margin-bottom: 15px;
    padding-left: 5px;
}

/* Removed colored boxes */

.home-step-title {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 33px;
    font-weight: 600;
    margin: 15px 0;
}

.home-step-description {
    color: #ffffff;
    opacity: 0.8;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.home-step-wrapper:hover .home-step-description {
    opacity: 1;
}

/* Improved Responsive Styles */
@media (max-width: 991.98px) {
    .home-process-section {
        padding: 60px 0;
    }

    .home-process-title {
        font-size: 30px;
        line-height: 38px;
    }

    .row.justify-content-center.mt-5 {
        margin-top: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .home-process-section {
        padding: 40px 0;
    }

    .home-step-wrapper {
        padding: 20px 15px 20px 20px;
        margin-bottom: 30px;
    }

    .home-step-content {
        padding-left: 0;
    }

    .home-step-description {
        padding-left: 0;
        font-size: 14px;
    }

    .home-step-title {
        font-size: 18px;
        line-height: 26px;
        margin: 10px 0;
    }

    .step-number {
        font-size: 16px;
        left: -15px;
        top: 20px;
        min-width: 30px;
        padding: 4px 8px;
    }

    .home-process-circle {
        width: 70px;
        height: 70px;
        right: 35%;
    }
}

@media (max-width: 575.98px) {
    .home-process-section {
        padding: 30px 0;
    }

    .home-process-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .home-step-wrapper {
        padding: 15px 15px 15px 20px;
        margin-bottom: 25px;
    }

    .step-number {
        left: -13px;
        font-size: 14px;
        min-width: 26px;
        padding: 3px 6px;
    }

    .col-lg-3.col-md-6.mb-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.empowering-broker-section {
    padding: 80px 0;
    overflow-x: hidden;
    margin: 40px 0;
}

.empowering-statistics-wrapper {
    position: relative;
    min-height: 430px;
    display: flex;
    gap: 120px;
}

.empowering-stats-card {
    background: linear-gradient(
        127.03deg,
        rgba(108, 99, 255, 1) 0%,
        rgba(52, 44, 109, 1) 100%
    );
    border-radius: 15px;
    width: 505px;
    height: 418px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 30px;
    gap: 20px;
    overflow: hidden;
}

.empowering-stats-horizontal-divider {
    border-style: solid;
    border-color: #adb2ff;
    border-width: 2px 0 0 0;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.empowering-stats-vertical-divider {
    border-style: solid;
    border-color: #adb2ff;
    border-width: 2px 0 0 0;
    width: 418px;
    height: 0;
    position: absolute;
    left: 8%;
    top: 0;
    transform-origin: center;
    transform: translateX(-50%) rotate(90deg) translateY(-209px);
}

.empowering-stats-group {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    z-index: 1;
}

.empowering-stats-number {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 8px;
}

.empowering-stats-label {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.empowering-contact-card {
    background: #ffffff;
    border-radius: 5.34px;
    width: 292.74px;
    height: 250px;
    position: absolute;
    left: 28%;
    top: 71%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 16.03px 36.32px 0px rgba(18, 87, 59, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.empowering-contact-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #2b2b31;
}

.empowering-contact-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #4f4f4f;
    margin-bottom: 20px;
}

.empowering-contact-button {
    position: relative;
    min-width: 120px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    background: #fbc72c;
    border-radius: 5px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.empowering-contact-button span {
    color: #2b2b31;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.empowering-contact-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.empowering-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.empowering-contact-button:hover::before {
    left: 0;
}

.empowering-contact-button:hover span {
    color: #1a1a1f;
}

.empowering-contact-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.empowering-content-section {
    flex: 1;
}

.empowering-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 41px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.empowering-hero-title-primary {
    color: #6756fc;
}

.empowering-hero-title-secondary {
    color: #000000;
    display: block;
}

.empowering-title-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
}

.empowering-hero-description {
    font-size: 18px;
    line-height: 35px;
    color: #4f4f4f;
    font-family: "Roboto", sans-serif;
    margin-top: 40px;
}

.empowering-hero-description-cta {
    color: #6756fc;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;

    /* Adding padding and border */
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;

    /* Smooth transition for all effects */
    transition: all 0.3s ease;

    /* Adding subtle shadow */
    box-shadow: 0 2px 4px rgba(103, 86, 252, 0.1);

    /* Text enhancements */
    letter-spacing: 0.5px;
    position: relative;
}

/* Hover effects */
.empowering-hero-description-cta:hover {
    color: #5445d9;
    border-color: #6756fc;
    box-shadow: 0 4px 8px rgba(103, 86, 252, 0.2);
    transform: translateY(-2px);
}

/* Active state */
.empowering-hero-description-cta:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(103, 86, 252, 0.1);
}

/* Focus state for accessibility */
.empowering-hero-description-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 86, 252, 0.3);
}

/* Adding underline effect on hover */
.empowering-hero-description-cta::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6756fc;
    transition: width 0.3s ease;
}

.empowering-hero-description-cta:hover::after {
    width: 100%;
}

.empowering-square-box {
    position: absolute;
    bottom: 50%;
}

@media (max-width: 1200px) {
    .empowering-statistics-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .empowering-stats-card {
        width: 100%;
        height: auto;
        min-height: 418px;
    }

    .empowering-contact-card {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .empowering-stats-card {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        padding: 20px;
        gap: 30px;
    }

    .empowering-stats-group {
        padding: 15px 0;
    }

    .empowering-stats-horizontal-divider,
    .empowering-stats-vertical-divider {
        display: none;
    }

    .empowering-hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .empowering-hero-description {
        font-size: 16px;
        line-height: 28px;
    }
    .empowering-broker-section {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .new-mobile-empowering-section {
        display: none !important;
    }
}

.new-mobile-empowering-section {
    padding: 40px 0;
    overflow: hidden;
    margin: 20px 0;
    background-color: #ffffff;
}

.new-mobile-container {
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

.new-mobile-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.new-mobile-header {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.new-mobile-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.new-mobile-hero-title-primary {
    color: #6756fc;
    display: block;
    margin-bottom: 4px;
}

.new-mobile-hero-title-black {
    color: #000000;
}

.new-mobile-hero-title-secondary {
    color: #000000;
    display: block;
}

.new-mobile-title-underline {
    height: 3px;
    width: 40%;
    background: #6756fc;
    margin-top: 8px;
    border-radius: 2px;
}

.new-mobile-hero-description {
    margin-bottom: 24px;
    text-align: center;
}

.new-mobile-hero-description p {
    font-size: 16px;
    line-height: 26px;
    color: #4f4f4f;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.new-mobile-cta-button {
    display: inline-block;
    background: #6756fc;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 10px rgba(103, 86, 252, 0.2);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.new-mobile-cta-button:hover,
.new-mobile-cta-button:focus {
    background: #5445d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(103, 86, 252, 0.3);
}

.new-mobile-cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(103, 86, 252, 0.2);
}

.new-mobile-stats-card {
    background: linear-gradient(
        127.03deg,
        rgba(108, 99, 255, 1) 0%,
        rgba(52, 44, 109, 1) 100%
    );
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(52, 44, 109, 0.2);
}

.new-mobile-stats-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px;
    color: white;
}

.new-mobile-stats-number {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    margin: 0;
}

.new-mobile-stats-label {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.new-mobile-stats-divider {
    height: 1px;
    background-color: rgba(173, 178, 255, 0.4);
    width: 100%;
}

.new-mobile-contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(18, 87, 59, 0.15);
    margin-top: 8px;
    border: 1px solid #f0f0f0;
}

.new-mobile-contact-title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2b2b31;
}

.new-mobile-contact-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #4f4f4f;
    margin-bottom: 16px;
}

.new-mobile-contact-button {
    min-width: 80%;
    padding: 14px 20px;
    text-decoration: none;
    display: inline-block;
    background: #fbc72c;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(251, 199, 44, 0.2);
}

.new-mobile-contact-button span {
    color: #2b2b31;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-mobile-contact-button:hover {
    transform: translateY(-2px);
    background: #ffd040;
    box-shadow: 0 6px 12px rgba(251, 199, 44, 0.3);
}

.new-mobile-contact-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(251, 199, 44, 0.2);
}

/* Media query to handle very small devices */
@media (max-width: 359px) {
    .new-mobile-hero-title {
        font-size: 24px;
        line-height: 30px;
    }

    .new-mobile-stats-number {
        font-size: 24px;
    }

    .new-mobile-stats-label {
        font-size: 13px;
    }

    .new-mobile-contact-title {
        font-size: 20px;
    }
}
.accordion-button::after {
    display: none !important;
}

.mobile-insurance-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.mobile-insurance-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #252b42;
    margin-bottom: 20px;
}

.mobile-insurance-subtitle {
    font-family: "Roboto", sans-serif;
    color: #737373;
    font-size: 16px;
    margin-bottom: 30px;
}

.mobile-feature-card {
    border-radius: 25px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-feature-card.primary {
    background: #342c6d;
    color: #fff;
    box-shadow: 0px 13px 19px rgba(0, 0, 0, 0.07);
}

.mobile-feature-card.primary:hover {
    background: #423789;
    transform: translateY(-5px);
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.15);
}

.mobile-feature-card.secondary {
    background: rgba(220, 215, 255, 0.33);
}

.mobile-feature-card.secondary:hover {
    background: rgba(220, 215, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0px 15px 20px rgba(52, 44, 109, 0.08);
}

.mobile-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mobile-feature-card:hover .mobile-feature-icon {
    transform: scale(1.1);
}

.mobile-feature-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.mobile-feature-description {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.mobile-feature-card.primary .mobile-feature-icon {
    background: #fff;
}

.mobile-feature-card.secondary .mobile-feature-icon {
    background: #dcd7ff;
}

.mobile-app-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .mobile-insurance-title {
        font-size: 36px;
    }

    .mobile-app-image {
        margin-bottom: 40px;
        min-width: 100%;
    }
}

/* Main Section Styles */
/* Main Section Styles */
.angelic-home-insight-section {
    position: relative;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

/* Title Styles */
.angelic-home-insight-section-title {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.angelic-home-insight-title-circle {
    position: absolute;
    border-radius: 50%;
    top: -20px;
    right: 37%;
    z-index: 1;
}

/* Card Styles */
.angelic-home-insight-card {
    height: 270px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.angelic-home-insight-card-bg {
    height: 100%;
    background-color: #dcd7ff;
    position: absolute;
    width: 100%;
    border-radius: 1rem;
}

.angelic-home-insight-dark-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #342c6d;
    border-radius: 0px 0px 1rem 1rem;
    transition: height 0.3s ease;
}

.angelic-home-insight-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 80%;
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem 1.5rem 2.5rem;
    box-shadow: 0 8px 28px rgba(20, 20, 43, 0.1);
    transition: all 0.3s ease;
}

/* Date Badge Styles */
.angelic-home-insight-date-badge-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.angelic-home-insight-date-badge {
    font-size: 0.75rem;
    background-color: #eaf4ff;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.angelic-home-insight-date-badge i {
    color: #6756fc;
    font-size: 0.875rem;
}

/* Card Title Styles */
.angelic-home-insight-card-title {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    color: #14142b;
    /* text-align: center; */
}

/* Action Button Styles */
.angelic-home-insight-action-btn {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.angelic-home-insight-action-btn .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #6756fc;
    border-color: #6756fc;
    box-shadow: 0 4px 12px rgba(103, 86, 252, 0.3);
    transition: all 0.3s ease;
}

.angelic-home-insight-action-btn .btn:hover {
    background-color: #5645e6;
    border-color: #5645e6;
    transform: translateY(-2px);
}

.angelic-home-insight-action-btn .btn i {
    color: #ffffff;
    font-size: 0.875rem;
}

/* Navigation Styles */
.angelic-home-insight-navigation {
    margin-top: 3rem;
    position: relative;
    padding: 1rem 0;
}

.angelic-home-insight-nav-line {
    border-top: 4px dashed #d4d4d4;
    position: absolute;
    width: 92%;
    top: 50%;
    left: 0;
}

.angelic-home-insight-nav-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.angelic-home-insight-nav-buttons .btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #6756fc;
    border-color: #6756fc;
    box-shadow: 0 4px 12px rgba(103, 86, 252, 0.3);
    transition: all 0.3s ease;
}

.angelic-home-insight-nav-buttons .btn:hover {
    background-color: #5645e6;
    border-color: #5645e6;
    transform: translateY(-2px);
}

.angelic-home-insight-nav-buttons .btn i {
    color: #ffffff;
    font-size: 0.875rem;
}

/* Hover Effects */
.angelic-home-insight-card:hover {
    transform: translateY(-5px);
}

.angelic-home-insight-card:hover .angelic-home-insight-dark-overlay {
    height: 55%;
}

.angelic-home-insight-card:hover .angelic-home-insight-card-content {
    box-shadow: 0 12px 32px rgba(20, 20, 43, 0.15);
}

/* Utility Classes */
.bg-light-blue {
    background-color: #eaf4ff;
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: #6756fc;
    border-color: #6756fc;
}

.btn-primary:hover {
    background-color: #5645e6;
    border-color: #5645e6;
}

.text-primary {
    color: #6756fc !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .angelic-home-insight-card {
        height: 250px;
    }

    .angelic-home-insight-card-content {
        width: 90%;
    }

    .angelic-home-insight-nav-line {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .angelic-home-insight-section {
        padding: 60px 0;
    }

    .angelic-home-insight-section-title {
        font-size: 1.75rem;
    }

    .angelic-home-insight-card {
        height: 230px;
    }

    .angelic-home-insight-card-title {
        font-size: 1.125rem;
    }

    .angelic-home-insight-nav-line {
        width: 85%;
    }

    .angelic-home-insight-date-badge {
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .angelic-home-insight-section {
        padding: 40px 0;
    }

    .angelic-home-insight-card {
        height: 210px;
    }

    .angelic-home-insight-card-content {
        width: 92%;
        padding: 1.25rem;
    }

    .angelic-home-insight-date-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }

    .angelic-home-insight-card-title {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .angelic-home-insight-nav-line {
        width: 80%;
    }
}

/* insurance and both other large slider */

.service-main-card {
    margin-bottom: 2rem;
    background-color: white;
}

.service-main-card img {
    border-radius: 50%;
    width: 210px;
    height: 210px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-main-card .service-main-btn {
    width: 95%;
    background-color: #342c6d;
    color: white;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: default;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.heading-container {
    position: relative;
}

.service-main-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-main-headings {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 32px;
}
.service-main-headingss {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 32px !important;
}

.ellipse-738 {
    top: 60%;
    left: 40%;
    width: 71.54px;
    height: 76.98px;
    position: absolute;
    transform: translate(-85.7px, -61.2px);
    z-index: 1;
}
.ellipse-7388 {
    top: 90%;
    left: 42%;
    width: 71.54px;
    height: 76.98px;
    position: absolute;
    transform: translate(-85.7px, -61.2px);
    z-index: 1;
}

.service-main-description {
    color: #828284;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.service-main-carousel {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

.service-main-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    perspective: 1000px;
}

.service-main-carousel-item {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform-origin: center center;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.7s ease-in-out;
    backface-visibility: hidden;
    will-change: transform, opacity;
    opacity: 0;
}

.service-main-carousel-item.active {
    display: block;
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.service-main-carousel-item-next:not(.service-main-carousel-item-start) {
    transform: translateX(100%) scale(0.95);
    opacity: 0;
}

.service-main-carousel-item-prev:not(.service-main-carousel-item-end) {
    transform: translateX(-100%) scale(0.95);
    opacity: 0;
}

.service-main-carousel-item-next.service-main-carousel-item-start {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.service-main-carousel-item-prev.service-main-carousel-item-end {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.service-main-carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #342c6d;
    color: white;
    border: none;
    opacity: 1;
    position: absolute;
    bottom: 0;
    transform: none;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.service-main-carousel-control-prev {
    width: 40px;
    height: 40px;
    background-color: white;
    color: #342c6d;
    border: 1px solid #342c6d;
    opacity: 1;
    position: absolute;
    bottom: 0;
    transform: none;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.service-main-carousel-control-prev {
    left: 46%;
}

.service-main-carousel-control-next {
    right: 46%;
}

.service-main-carousel-control-prev:hover,
.service-main-carousel-control-next:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.service-main-row {
    margin: 0 -15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-main-carousel-control-prev {
        left: 35%;
    }

    .service-main-headings {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        font-size: 20px;
    }

    .service-main-carousel-control-next {
        right: 35%;
    }

    .service-main-card img {
        width: 160px;
        height: 160px;
    }
}

.service-main-carousel-indicators {
    display: none;
}

.service-main-card .service-main-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-main-card .service-main-btn:hover {
    background-color: #403584;
    transform: translateY(-2px);
    cursor: pointer;
}

.main-industries-section {
    background: #342c6d;
    height: 700px;
    position: relative;
    overflow: hidden;
}

/* Content Styles */
.main-industries-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.main-industries-personals {
    color: #ffffff;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 51px;
    line-height: 61px;
    font-weight: 600;
    position: relative;
    align-self: stretch;
}

.main-industries-expertise-text {
    color: #ffffff;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    /* width: 443px; */
}

/* Button Styles */
.main-industries-btn {
    background: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 52px;
    position: relative;
    box-shadow: 8px 8px 31px 8px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-blue, #342c6d);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.main-industries-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    text-decoration: none;
    color: var(--dark-blue, #342c6d);
}

.main-industries-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
}

/* Image Styles */
.main-industries-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out forwards;
}

/* Animation Keyframes */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
/* Large Devices (≥1200px) */
@media (min-width: 1200px) {
    .main-industries-personals {
        font-size: 51px;
    }
    .industari-small-text {
        color: #ffffff;
        text-align: left;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.2px;
        font-weight: 500;
        position: relative;
    }
    .main-industries-image {
        min-width: 100%;
        /* height: auto; */
    }
    .main-industries-expertise-text {
        width: 100%;
    }
}

/* Medium Devices (≥992px) */
@media (max-width: 1199.98px) {
    .main-industries-personals {
        font-size: 45px;
        line-height: 55px;
    }
    .industari-small-text {
        color: #ffffff;
        text-align: left;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 500;
    }
    .main-industries-image {
        max-width: 100%;
        height: auto;
    }
    .main-industries-expertise-text {
        width: 90%;
    }
}

/* Small Devices (≥768px) */
@media (max-width: 991.98px) {
    .main-industries-section {
        height: auto;
        min-height: 600px;
        padding: 60px 0;
    }
    .main-industries-personals {
        font-size: 40px;
        line-height: 50px;
    }
    .main-industries-expertise-text {
        width: 100%;
    }
    .main-industries-image-wrapper {
        margin-top: 40px;
    }
}

/* Extra Small Devices (<768px) */
@media (max-width: 767.98px) {
    .main-industries-section {
        min-height: 500px;
        padding: 40px 0;
    }
    .main-industries-personals {
        font-size: 35px;
        line-height: 45px;
        text-align: center;
    }
    .main-industries-expertise-text {
        text-align: center;
        font-size: 15px;
        line-height: 22px;
    }
    .main-industries-content {
        align-items: center;
        text-align: center;
    }
    .main-industries-image-wrapper {
        margin-top: 30px;
    }
    .main-industries-btn {
        width: 160px;
        height: 48px;
        font-size: 15px;
    }
}

/* Extra Extra Small Devices (<576px) */
@media (max-width: 575.98px) {
    .main-industries-section {
        min-height: 450px;
        padding: 30px 0;
    }
    .main-industries-personals {
        font-size: 30px;
        line-height: 40px;
    }
    .main-industries-expertise-text {
        font-size: 14px;
        line-height: 20px;
    }
    .main-industries-content {
        gap: 15px;
    }
    .main-industries-btn {
        width: 150px;
        height: 45px;
        font-size: 14px;
    }
}

/* sub pages design */

.small-hero-industries,
.small-hero-industries * {
    box-sizing: border-box;
}

.small-hero-industries {
    font-family: "Poppins", sans-serif;
}

.small-hero-industries__outer {
    background: var(--dark-blue, #342c6d);
    min-height: 400px;
    height: auto;
}

.small-hero-industries__content {
    padding: 50px 30px 50px 30px;
    position: relative;
    z-index: 2;
}

.small-hero-industries__breadcrumb {
    margin-bottom: 38px;
}

.small-hero-industries__link {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
}

.small-hero-industries__breadcrumb-highlight {
    color: var(--yellow, #fbc72c);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.small-hero-industries__title {
    color: #ffffff;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 45px;
    line-height: 75px;
    font-weight: 600;
    margin-bottom: 38px;
}

.small-hero-industries__btn {
    background: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 52px;
    position: relative;
    box-shadow: 8px 8px 31px 8px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    text-decoration: none;
}

.small-hero-industries__btn-text {
    color: var(--dark-blue, #342c6d);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.small-hero-industries__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    border-radius: 200px 0 0 200px;
    overflow: hidden;
}

.small-hero-industries__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breadcrumb separator styling */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .small-hero-industries__title {
        font-size: 40px;
        line-height: 60px;
    }

    .small-hero-industries__image-wrapper {
        width: 45%;
    }
}

@media (max-width: 991px) {
    .small-hero-industries__title {
        font-size: 35px;
        line-height: 50px;
    }

    .small-hero-industries__image-wrapper {
        width: 40%;
        border-radius: 100px 0 0 100px;
    }
}

@media (max-width: 768px) {
    .small-hero-industries__outer {
        min-height: 600px;
    }

    .small-hero-industries__content {
        padding: 30px 15px;
    }

    .small-hero-industries__image-wrapper {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        border-radius: 100px 100px 0 0;
    }

    .small-hero-industries__title {
        font-size: 30px;
        line-height: 45px;
    }

    .small-hero-industries__btn {
        width: 150px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .small-hero-industries__outer {
        min-height: 500px;
    }

    .small-hero-industries__content {
        padding: 25px 10px;
    }

    .small-hero-industries__title {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 25px;
    }

    .small-hero-industries__breadcrumb {
        margin-bottom: 25px;
    }

    .small-hero-industries__image-wrapper {
        border-radius: 50px 50px 0 0;
    }

    .small-hero-industries__btn {
        width: 140px;
        height: 40px;
    }

    .small-hero-industries__btn-text {
        font-size: 14px;
    }
}

.industry-description,
.industry-description * {
    box-sizing: border-box;
}

.industry-description {
    padding: 60px 0;
}

/* Description Section Styles */
.industry-description__content {
    margin-bottom: 60px;
}

.industry-description__title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.industry-description__text {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 33px;
    font-weight: 500;
}

/* Cards Section Styles */
.industry-description__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 43px;
    justify-content: center;
}

.industry-description__card {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
    padding: 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.industry-description__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(103, 86, 252, 0.07);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.industry-description__card:hover::before {
    opacity: 1;
}

.industry-description__icon-wrapper {
    position: relative;
    z-index: 2;
}

.industry-description__icon-box {
    background: var(--light-blue, #dcd7ff);
    border-radius: 50px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: transform 0.3s ease;
}

.industry-description__card:hover .industry-description__icon-box {
    transform: translateY(-5px);
}

.industry-description__icon {
    width: 34.34px;
    height: 36px;
    object-fit: cover;
}

.industry-description__info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.industry-description__card-title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.industry-description__card-text {
    color: #535a61;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    text-align: center;
}

/* Hover Effects */
.industry-description__card:hover {
    box-shadow: 0 10px 20px rgba(103, 86, 252, 0.1);
}

.industry-description__card:hover {
    color: #6756fc;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .industry-description__cards {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .industry-description {
        padding: 40px 0;
    }

    .industry-description__title {
        font-size: 28px;
        line-height: 38px;
    }

    .industry-description__text {
        font-size: 18px;
        line-height: 28px;
    }

    .industry-description__card {
        width: 100%;
        max-width: 348px;
        height: auto;
        min-height: 296px;
    }
}

@media (max-width: 576px) {
    .industry-description {
        padding: 30px 0;
    }

    .industry-description__title {
        font-size: 24px;
        line-height: 34px;
    }

    .industry-description__card {
        padding: 20px;
        gap: 30px;
    }

    .industry-description__icon-box {
        width: 60px;
        height: 60px;
    }

    .industry-description__icon {
        width: 28px;
        height: 30px;
    }

    .industry-description__card-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .industry-description__card-text {
        font-size: 16px;
        line-height: 22px;
    }
}

/* caravan park */

.industry-concern-section {
    padding: 80px 0;
    width: 100%;
}

.industry-concern-header {
    text-align: left;
    margin: 50px;
    margin-left: 120px;
}

.industry-concerns-and-challenges {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0;
}

.ellipse-7380 {
    width: 79.38px;
    height: 79.42px;
    position: absolute;
    transform: translate(-89.39px, -68.41px);
    overflow: visible;
    z-index: -1;
    top: 100%;
    left: 10%;
}

.industry-concern-content {
    margin-left: 150px;
    margin-right: 150px;
}

.industry-concern-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.industry-concern-row:last-child {
    margin-bottom: 0;
}

.industry-concern-card {
    flex: 1;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #ffffff;
}

.industry-concern-card:hover {
    background: #342c6d;
    border-radius: 10px;
}

.industry-concern-card:hover * {
    color: #ffffff;
}

.industry-concern-icon {
    font-size: 40px;
    color: #545a61;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.industry-concern-title {
    color: #545a61;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.industry-concern-text {
    color: #535a61;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .industry-concern-content {
        margin-left: 40px;
        margin-right: 40px;
    }

    .industry-concern-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .industry-concern-section {
        padding: 30px 0;
        width: 100%;
    }

    .industry-concern-title {
        font-size: 16px;
    }

    .industry-concern-text {
        font-size: 14px;
    }
    .industry-concern-icon {
        font-size: 35px;

        margin-bottom: 20px;
    }
    .industry-concern-header {
        text-align: left;
        margin: 20px;
    }
    .industry-concern-row {
        flex-direction: column;
        gap: 20px;
    }

    .industry-concern-content {
        margin-left: 0px;
        margin-right: 0px;
    }

    .industry-concerns-and-challenges {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .industry-concern-content {
        margin-left: 0px;
        margin-right: 0px;
    }

    .industry-concern-card {
        padding: 20px;
    }

    .industry-concerns-and-challenges {
        font-size: 24px;
    }

    .ellipse-7380 {
        width: 60px;
        height: 60px;
        transform: translate(-60px, -50px);
        z-index: -1;
    }
}

/* Base styles with transitions */
.personal-card-section {
    position: relative;
    width: 100%;
    padding: 0rem 0;
}

.personal-card-bg {
    background: rgba(220, 215, 255, 0.5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.personal-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 1114px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: all 0.3s ease-in-out;
}

.personal-card {
    background: #ffffff;
    border-radius: 11px;
    padding: 1.5rem;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.personal-card:hover {
    background: #342c6d;
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.personal-card-title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.personal-card-text,
.personal-card-list {
    color: #828284;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
}

.personal-card-list {
    padding-left: 1.25rem;
}

/* Hover states with transitions */
.personal-card:hover .personal-card-title,
.personal-card:hover .personal-card-text,
.personal-card:hover .personal-card-list {
    color: #ffffff;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .personal-card-content {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .personal-card {
        min-height: 150px;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .personal-card-bg {
        min-height: auto;
    }

    .personal-card {
        min-height: auto;
    }

    .personal-card-content {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .personal-card-section {
        padding: 0rem 0;
    }

    .personal-card {
        padding: 1rem;
    }

    .personal-card-content {
        padding: 0 0rem;
    }
}

@media (max-width: 375px) {
    .personal-card-title {
        margin-bottom: 0.5rem;
    }
}

.smsf-solutions-section {
    padding: 80px 0;
    background: rgba(220, 215, 255, 0.5);
}

.smsf-title-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.smsf-purple-circle {
    position: absolute;
    left: -20px;
    top: -30px;
    z-index: 0;
}

.smsf-heading {
    position: relative;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    z-index: 1;
    margin: 0;
    padding: 10px 0;
}

.smsf-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: var(--dark-blue, #342c6d);
    border-radius: 10px;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.smsf-solution-item {
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    min-height: 160px;
}

.smsf-solution-title {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.smsf-solution-text {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

/* Tablet Devices */
@media (max-width: 1024px) {
    .smsf-solutions-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .smsf-purple-circle {
        width: 80px;
        height: 80px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .smsf-solutions-section {
        padding: 20px 0;
    }

    .smsf-solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .smsf-heading {
        font-size: 24px;
    }

    .smsf-purple-circle {
        width: 60px;
        height: 60px;
        left: -10px;
        top: -20px;
    }

    .smsf-title-wrapper {
        margin-bottom: 20px;
        padding-left: 10px;
    }

    .smsf-solution-item {
        padding: 15px;
        min-height: auto;
    }

    .smsf-solution-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .smsf-solution-text {
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .smsf-solutions-grid {
        padding: 10px;
    }

    .smsf-solution-item {
        padding: 10px;
    }
}

/* Carousel/Slider styling */
.home-slider-main-carousel-container {
    position: relative;
    padding: 20px 0;
}

.home-slider-main-carousel-slides {
    overflow: hidden;
    position: relative;
}

.home-slider-main-carousel-slide {
    display: none;
    transition: opacity 0.5s ease;
}

.home-slider-main-carousel-slide.active {
    display: block;
}

/* Navigation arrows */
.home-slider-main-navigation-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.home-slider-main-arrow-prev {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid rgba(52, 44, 108, 1);
    cursor: pointer;
    color: rgba(52, 44, 108, 1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-slider-main-arrow-prev:hover {
    background-color: #342c6d;
    color: white;
}

.home-slider-main-arrow-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 44, 108, 1);
    border: 1px solid rgba(52, 44, 108, 1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-slider-main-arrow-next:hover {
    background-color: white;
    color: #342c6d;
}

.home-slider-main-arrow-prevs {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid rgba(52, 44, 108, 1);
    cursor: pointer;
    color: rgba(52, 44, 108, 1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-slider-main-arrow-prevs:hover {
    background-color: #342c6d;
    color: white;
}

.home-slider-main-arrow-nexts {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 44, 108, 1);
    border: 1px solid rgba(52, 44, 108, 1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.home-slider-main-arrow-nexts:hover {
    background-color: #fff;
    color: #342c6d;
}

/* Hide default password reveal button */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-contacts-auto-fill-button,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

/* main slider */

.main-hero-slider-banner {
    position: relative;
    overflow: hidden;
    background: #ebe8ff;
    min-height: 700px;
    padding: 20px 0px 0px 0px;
}

.main-hero-slider-background-logo {
    opacity: 0.7;
    position: absolute;
    right: 0;
    top: 40%;
    height: auto;
    z-index: 1;
    max-width: 100%;
}

.main-hero-slider-background-logo4 {
    opacity: 0.7;
    position: absolute;
    right: 0;
    top: 30%;
    height: auto;
    z-index: 1;
    max-width: 100%;
}

.main-hero-slider-banner-bg {
    background: rgba(220, 215, 255, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide4-gradient {
    position: absolute;
    right: 0;
    width: 25%;
    height: 155%;
    background: linear-gradient(
        154.14deg,
        rgba(220, 215, 255, 0.1) 38%,
        rgba(103, 86, 252, 1) 98.253081%
    );
    z-index: 0;
    bottom: -55%;
}

.main-hero-slider-promo-bar {
    background: #6756fc;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.main-hero-slider-promo-text {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.main-hero-slider-headline {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    padding: 0 15px;
}

.main-hero-slider-headline h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 80px;
    color: #342c6d;
}

.main-hero-slider-highlight {
    color: #6756fc;
}

.main-hero-slider-subheadline {
    color: #6756fc;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.main-hero-slider-subheadline-do {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.main-hero-slider-cta-container {
    position: relative;
    margin-bottom: 60px;
}

.main-hero-slider-referral-btn {
    background: #6756fc;
    border-radius: 8px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
}

.main-hero-slider-referral-btn:hover {
    background: #2a2356;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.main-hero-slider-referral-btn:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.main-hero-slider-btn-light {
    background-color: #ffffff;
    color: #000000;
}

.main-hero-slider-btn-light:hover {
    background-color: #f2f2f2;
    color: #000000;
}

.main-hero-slider-cursor-pointer {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 75%;
    top: 60px;
    z-index: 3;
}

.main-hero-slider-trust-badge {
    background: #6756fc;
    border-radius: 25px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 20px;
    display: inline-block;
    position: absolute;
    left: 310px;
    top: 100px;
    z-index: 1;
    box-shadow: 0px 2px 10px rgba(103, 86, 252, 0.3);
}

.main-hero-slider-banner-image {
    position: absolute;
    right: 0;
    top: 38%;
    height: auto;
    z-index: 2;
    max-width: 60%;
}

.main-hero-slider-banner-image2 {
    position: absolute;
    right: -50px;
    top: 26%;
    height: auto;
    z-index: 2;
    max-width: 60%;
}

.main-hero-slider-banner-image3 {
    position: absolute;
    right: 0;
    top: 30%;
    height: auto;
    z-index: 2;
    max-width: 55%;
}

.main-hero-slider-banner-image4 {
    position: absolute;
    right: -30px;
    top: 30%;
    height: auto;
    z-index: 2;
    max-width: 35%;
}

.main-hero-slider-slide-indicators {
    display: flex;
    justify-content: center;
    gap: 9px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.main-hero-slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #6756fc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-hero-slider-indicator.active {
    background: #6756fc;
    border: none;
    transform: scale(1.2);
}

.btn-container-main-hero {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Fix carousel overflow issue */
.for-main {
    overflow: visible !important;
}
@media (max-width: 1200px) {
    .main-hero-slider-headline h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .main-hero-slider-subheadline {
        font-size: 22px;
    }

    .main-hero-slider-banner {
        min-height: 700px;
    }

    .slide4-gradient {
        width: 35%;
        height: 140%;
    }
}

@media (max-width: 992px) {
    .main-hero-slider-banner-image,
    .main-hero-slider-banner-image2,
    .main-hero-slider-banner-image3,
    .main-hero-slider-banner-image4 {
        max-width: 50%;
        opacity: 0.9;
    }

    .main-hero-slider-banner {
        min-height: 600px;
    }

    .main-hero-slider-trust-badge {
        left: 210px;
    }

    .slide4-gradient {
        width: 40%;
        height: 130%;
        bottom: -30%;
    }
}

@media (max-width: 768px) {
    .main-hero-slider-headline h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .main-hero-slider-subheadline {
        font-size: 20px;
    }

    .main-hero-slider-banner-image,
    .main-hero-slider-banner-image2,
    .main-hero-slider-banner-image4 {
        position: relative;
        max-width: 100%;
        margin-top: 10px;
        display: block;
        opacity: 1;
        top: auto;
    }
    .main-hero-slider-banner-image3 {
        position: relative;
        max-width: 100%;
        margin-top: 0px;
        display: block;
        opacity: 1;
        top: auto;
    }
    .slide4-gradient {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
        background: linear-gradient(
            154.14deg,
            rgba(220, 215, 255, 0.5) 20%,
            rgba(103, 86, 252, 0.5) 70%
        );
    }

    .main-hero-slider-banner {
        max-height: 700px !important;
        overflow: hidden !important;
    }

    .main-hero-slider-trust-badge {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 20px;
        margin-left: 20px;
        display: inline-block;
    }

    .main-hero-slider-cursor-pointer {
        display: none;
    }

    .main-hero-slider-headline {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .main-hero-slider-headline h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .main-hero-slider-subheadline {
        font-size: 15px;
    }

    .main-hero-slider-promo-text {
        font-size: 16px;
        padding: 0 15px;
        text-align: center;
    }

    .main-hero-slider-cta-container {
        margin-bottom: 0px;
    }
    .main-hero-slider-referral-btn {
        width: 100%;
        padding: 12px 20px;

        font-size: 12px;
        font-weight: 400;
    }

    .btn-container-main-hero {
        flex-direction: column;
        width: 100%;
    }

    .main-hero-slider-slide-indicators {
        display: none;
    }

    .main-hero-slider-banner-image2 {
        right: 10px;
    }

    .main-hero-slider-banner-image4 {
        right: 10px;
    }
}

.provide-header-section {
    background: rgba(220, 215, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.provide-header-title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
}

.small-hero-industries__description {
    margin-top: 20px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.small-hero-industries__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.small-hero-industries__buttons .main-industries-btn {
    min-width: 120px;
    text-align: center;
}

@media (max-width: 576px) {
    .for-new-pages {
        min-height: 1000px !important;
    }
}

@media (min-width: 1024px) {
    .for-new-design {
        min-height: 400px !important;
    }
}

/* Risk Section Styles */
.risk-statistics-section {
    background: rgba(220, 215, 255, 0.4);
    padding: 40px 0;
    font-family: "Poppins", sans-serif;
}

.risk-title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.risk-link {
    color: #6756fc;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 33px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
}

.risk-subtitle {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 25px;
}

.risk-claims-box {
    margin-bottom: 30px;
}

.risk-claims-heading {
    color: #6756fc;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 33px;
    font-weight: 700;
    margin-bottom: 10px;
}

.risk-claims-text {
    color: #535a61;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}

.risk-documents-list {
    list-style: none;
    padding-left: 0;
}

.risk-document-link {
    color: #6756fc;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .risk-title,
    .risk-subtitle {
        font-size: 28px;
        line-height: 36px;
    }

    .risk-link,
    .risk-claims-heading {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .risk-title,
    .risk-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .risk-link,
    .risk-claims-heading {
        font-size: 18px;
        line-height: 26px;
    }

    .risk-claims-text {
        font-size: 13px;
        line-height: 22px;
    }
}

.service-new-design-section-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 72px;
    color: #213d39;
}

.service-new-design-section-subheading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #213d39;
}

.service-new-design-section-description {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #213d39;
}

.service-new-design-section-intro {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #213d39;
}

.service-new-design-section-step-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #213d39;
}

.service-new-design-section-urbanist-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #213d39;
}

.service-new-design-section-step-description {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #213d39;
}

.service-new-design-section-first-step-description {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #213d39;
}

.service-new-design-section-icon {
    background-color: #6c57db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-new-design-section-step-card {
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Responsive CSS for all device sizes */

/* Base responsive adjustments */
@media (max-width: 1200px) {
    .service-new-design-section-heading {
        font-size: 42px;
        line-height: 60px;
    }

    .service-new-design-section-subheading {
        font-size: 36px;
    }
}

/* Tablet devices */
@media (max-width: 992px) {
    .service-new-design-section-heading {
        font-size: 36px;
        line-height: 50px;
    }

    .service-new-design-section-subheading {
        font-size: 32px;
    }

    .service-new-design-section-description {
        font-size: 16px;
    }

    .service-new-design-section-step-title,
    .service-new-design-section-urbanist-title {
        font-size: 24px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .service-new-design-section-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .service-new-design-section-subheading {
        font-size: 28px;
    }

    .service-new-design-section-description {
        font-size: 16px;
    }

    .service-new-design-section-intro {
        font-size: 15px;
    }

    .service-new-design-section-step-card {
        padding: 15px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .service-new-design-section-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .service-new-design-section-subheading {
        font-size: 24px;
    }

    .service-new-design-section-description {
        font-size: 15px;
    }

    .service-new-design-section-step-title,
    .service-new-design-section-urbanist-title {
        font-size: 20px;
    }

    .service-new-design-section-step-description,
    .service-new-design-section-first-step-description {
        font-size: 14px;
        line-height: 22px;
    }

    .service-new-design-section-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .service-new-design-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mb-4 {
        margin-bottom: 15px !important;
    }

    .mb-3 {
        margin-bottom: 10px !important;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .service-new-design-section-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .service-new-design-section-subheading {
        font-size: 22px;
    }

    .service-new-design-section-description {
        font-size: 14px;
    }

    .service-new-design-section-step-card {
        padding: 12px;
    }

    .service-new-design-section-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}

@media (max-width: 400px) {
    .service-new-design-section-icon {
        margin-bottom: 10px;
    }
}

.service-new-design-section2-heading {
    color: #213d39;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.service-new-design-section2-intro {
    color: #213d39;
    font-size: 16px;
    font-weight: 300;
}

.service-new-design-section2-intro-bold {
    color: #213d39;
    font-size: 16px;
    font-weight: 700;
}

.service-new-design-section2-card {
    background-color: #dcd7ff;
    border-radius: 6px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-new-design-section2-card:hover {
    background-color: #6756fc;
}

.service-new-design-section2-card:hover
    .service-new-design-section2-card-title {
    color: white;
}

.service-new-design-section2-card:hover .service-new-design-section2-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-new-design-section2-card:hover .service-new-design-section2-icon {
    background-color: white;
    color: #6756fc;
}

.service-new-design-section2-card-title {
    color: black;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
}

.service-new-design-section2-card-text {
    color: #9593a4;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}

.service-new-design-section2-icon {
    width: 40px;
    height: 40px;
    background-color: #6756fc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .service-new-design-section2-heading {
        font-size: 32px;
    }
}

.service-new-design-section3-heading {
    color: #213d39;
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.service-new-design-section3-intro {
    color: #213d39;
    font-size: 16px;
    font-weight: 300;
}

.service-new-design-section3-intro-bold {
    color: #213d39;
    font-size: 16px;
    font-weight: 700;
}

.service-new-design-section3-card {
    background-color: #dcd7ff;
    border-radius: 6px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-new-design-section3-card:hover {
    background-color: #6756fc;
}

.service-new-design-section3-card:hover
    .service-new-design-section3-card-title {
    color: white;
}

.service-new-design-section3-card:hover .service-new-design-section3-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.service-new-design-section3-card:hover .service-new-design-section3-icon {
    background-color: white;
    color: #6756fc;
}

.service-new-design-section3-card-title {
    color: black;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
}

.service-new-design-section3-card-text {
    color: #9593a4;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}

.service-new-design-section3-icon {
    width: 40px;
    height: 40px;
    background-color: #6756fc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .service-new-design-section3-heading {
        font-size: 32px;
    }
}

/* Custom styles */
.service-new-design-section4-heading {
    color: #213d39;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.service-new-design-section4-intro {
    color: #213d39;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.service-new-design-section4-intro-bold {
    color: #213d39;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.service-new-design-section4-card-title {
    color: #213d39;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.service-new-design-section4-legal-title {
    color: #213d39;
    font-size: 28px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.service-new-design-section4-card-text {
    color: #213d39;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.service-new-design-section4-legal-text {
    color: #213d39;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.service-new-design-section4-icon {
    color: #fbc72c;
    font-size: 35px;
}

.service-new-design-section4-card {
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-new-design-section4-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .service-new-design-section4-heading {
        font-size: 24px;
    }

    .service-new-design-section4-intro,
    .service-new-design-section4-intro-bold {
        font-size: 18px;
    }

    .service-new-design-section4-card-title,
    .service-new-design-section4-legal-title {
        font-size: 22px;
    }
}

/* Custom styles */
.service-new-design-section5-heading {
    color: #213d39;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.service-new-design-section5-intro {
    color: #213d39;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.service-new-design-section5-case-title {
    color: #213d39;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.service-new-design-section5-label {
    color: #6756fc;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.service-new-design-section5-card-text {
    color: #213d39;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.service-new-design-section5-icon {
    color: #6756fc;
    font-size: 35px;
}

.service-new-design-section5-card {
    border-radius: 8px;
    padding: 20px;
    background-color: white;
    transition: all 0.3s ease;
}

.service-new-design-section5-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-new-design-section5 {
    background: #dcd7ff;
}

@media (max-width: 768px) {
    .service-new-design-section5-heading {
        font-size: 24px;
    }

    .service-new-design-section5-intro {
        font-size: 18px;
    }

    .service-new-design-section5-case-title {
        font-size: 22px;
    }
    .setting-mobile {
        height: 303px !important;
    }
    .line-height {
        line-height: 30px !important;
    }
}

@media (min-width: 1024px) {
    .line-height {
        line-height: 60px !important;
    }
}

.new-section-4-insurance-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.new-section-4-insurance-title {
    font-size: 3rem;
    font-weight: 700;
    color: #342c6d;
    margin-bottom: 1rem;
}

.new-section-4-insurance-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.new-section-4-feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.new-section-4-feature-card.active {
    background-color: #342c6d;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(52, 44, 109, 0.2);
}

.new-section-4-feature-card.inactive {
    background-color: #f7fafc;
}

.new-section-4-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-section-4-feature-icon.active {
    background-color: #ffffff;
}

.new-section-4-feature-icon.inactive {
    background-color: #e8e4ff;
}

.new-section-4-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.new-section-4-feature-title.active {
    color: #ffffff;
}

.new-section-4-feature-title.inactive {
    color: #342c6d;
}

.new-section-4-feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.new-section-4-feature-description.active {
    color: #ffffff;
}

.new-section-4-feature-description.inactive {
    color: #718096;
}

.new-section-4-mobile-app-image {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.new-section-4-mobile-app-image.active {
    opacity: 1;
    visibility: visible;
}

.new-section-4-mobile-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

/* Improved Responsive Design */
@media (max-width: 1199px) {
    .new-section-4-insurance-title {
        font-size: 2rem;
    }

    .new-section-4-mobile-image-container {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .new-section-4-insurance-section {
        padding: 60px 0;
    }

    .new-section-4-mobile-image-container {
        height: 700px;
        margin-bottom: 2rem;
    }

    .new-section-4-feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .new-section-4-insurance-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .new-section-4-insurance-subtitle {
        text-align: center;
    }

    .new-section-4-mobile-image-container {
        height: 350px;
    }

    .new-section-4-feature-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .new-section-4-insurance-section {
        padding: 40px 0;
    }

    .new-section-4-mobile-image-container {
        height: 600px;
        justify-content: center;
    }

    .new-section-4-feature-card {
        padding: 1rem;
    }

    .new-section-4-feature-title {
        font-size: 1.1rem;
    }

    .new-section-4-feature-description {
        font-size: 0.85rem;
    }
}

.new-section6 {
    background-color: rgba(220, 215, 255, 0.4);
    padding: 70px 0;
}

.new-section6-heading {
    font-family: "Poppins", sans-serif;
    color: #3a2a5f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.new-section6-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.new-section6-card-link:hover,
.new-section6-card-link:focus {
    text-decoration: none;
}

.new-section6-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.new-section6-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(58, 42, 95, 0.15);
    border-color: rgba(58, 42, 95, 0.08);
}

.new-section6-card-img {
    height: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.new-section6-card:hover .new-section6-card-img {
    transform: scale(1.1);
}

.new-section6-card-title {
    font-family: "Inter", sans-serif;
    color: #3a2a5f;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.new-section6-col {
    padding: 10px;
}

.new-section6i {
    left: 40%;
    top: -12px;
}

.new-section6-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #4a3a8f 0%, #2e1e5f 100%);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(58, 42, 95, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.5px;
    z-index: 1;
}

.new-section6-view-all:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5648a8 0%, #3f2e7d 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.new-section6-view-all:hover,
.new-section6-view-all:focus {
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(74, 58, 143, 0.3);
    text-decoration: none;
}

.new-section6-view-all:hover:before,
.new-section6-view-all:focus:before {
    opacity: 1;
}

.new-section6-view-all:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(58, 42, 95, 0.15);
}

/* Optional: Add a subtle pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(58, 42, 95, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(74, 58, 143, 0.4);
    }
    100% {
        box-shadow: 0 8px 20px rgba(58, 42, 95, 0.2);
    }
}

.new-section6-view-all:hover {
    animation: pulse 2s infinite;
}

/* Optional: Add a modern loading state */
.new-section6-view-all.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.new-section6-view-all.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Custom 5-column grid for large screens */
@media (min-width: 992px) {
    .new-section6-col-lg-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .new-section6-row {
        justify-content: center;
    }
}

/* Medium screens */
@media (max-width: 991px) {
    .new-section6-heading {
        font-size: 2.2rem;
    }
    .new-section6-card-img {
        height: 85px;
    }
}

/* Small screens */
@media (max-width: 767px) {
    .new-section6 {
        padding: 50px 0;
    }
    .new-section6-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .new-section6-card {
        padding: 20px 10px;
    }
    .new-section6-card-img {
        height: 70px;
        margin-bottom: 15px;
    }
    .new-section6-card-title {
        font-size: 1rem;
    }
    .new-section6-view-all {
        padding: 10px 25px;
    }
}

/* Extra small screens */
@media (max-width: 575px) {
    .new-section6 {
        padding: 40px 0;
    }
    .new-section6-heading {
        font-size: 1.6rem;
    }
    .new-section6-col {
        padding: 8px;
    }
    .new-section6-card {
        padding: 15px 8px;
    }
    .new-section6-card-img {
        height: 60px;
        margin-bottom: 12px;
    }
    .new-section6-row {
        justify-content: center;
    }
}

/* Desktop/Large version - visible by default */
.desktop-specializations {
    display: block;
}

/* Mobile version - hidden by default */
.mobile-specializations {
    display: none;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    /* Hide desktop version on mobile */
    .desktop-specializations {
        display: none;
    }

    /* Show mobile version on mobile */
    .mobile-specializations {
        display: block;
    }

    /* Mobile layout adjustments */
    .mobile-specializations .new-section6-col {
        width: 50%; /* Two cards per row (col-6) on mobile */
        padding: 0 8px;
        margin-bottom: 16px;
    }

    .mobile-specializations .new-section6-row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .mobile-specializations .new-section6-card {
        height: 100%;
    }

    .mobile-specializations .new-section6-card-title {
        font-size: 14px;
    }
}

.life-insurance-life-insurance-section {
    padding: 80px 0px;
    background-color: #f8f9fa;
}
.life-insurance-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 10px !important;
}
.life-insurance-section-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #6c5ce7;
    margin-top: 20px;
    margin-bottom: 20px;
}
.life-insurance-section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}
.life-insurance-check-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.life-insurance-check-icon {
    color: #6c5ce7;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.life-insurance-check-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}
.life-insurance-call-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #6c5ce7;
    border: 2px solid #6c5ce7;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.life-insurance-call-btn:hover {
    background-color: #6c5ce7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Image container styling */
.life-insurance-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-insurance-insurance-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Equal height container */
.life-insurance-equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

/* Content container styling */
.life-insurance-content-container {
    padding-right: 15px; /* Add padding for scrollbar */
    max-height: 100%; /* Will be set by JS */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #6c5ce7 #f1f1f1;
}

/* Style the scrollbar for better appearance */
.life-insurance-content-container::-webkit-scrollbar {
    width: 6px;
}

.life-insurance-content-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.life-insurance-content-container::-webkit-scrollbar-thumb {
    background: #6c5ce7;
    border-radius: 10px;
}

.life-insurance-content-container::-webkit-scrollbar-thumb:hover {
    background: #5549c9;
}

@media (max-width: 991.98px) {
    .life-insurance-section-title {
        font-size: 22px;
    }
    .life-insurance-section-subtitle {
        font-size: 20px;
    }
    .life-insurance-image-container {
        margin-bottom: 40px;
        height: auto;
    }
    .life-insurance-content-container {
        max-height: none; /* Remove max-height on smaller screens */
        overflow-y: visible;
        padding-right: 0;
    }
    .life-insurance-equal-height-row {
        display: block;
    }
}

.life-insurance-insurance-cards-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.life-insurance-cards-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
}

.life-insurance-cards-track {
    display: flex;
    width: calc(
        280px * 32
    ); /* Double width to account for all 16 cards plus duplicates */
    animation: scroll 60s linear infinite;
}

.life-insurance-cards-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(
            calc(-280px * 16)
        ); /* Full width of original set of cards */
    }
}

.life-insurance-insurance-card {
    width: 250px;
    height: 320px;
    margin: 0 15px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: #333;
    display: block;
    position: relative;
    transform: translateY(0);
}

.life-insurance-insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.3);
    color: #333;
}

.life-insurance-card-img-container {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.life-insurance-card-img-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.life-insurance-insurance-card:hover
    .life-insurance-card-img-container::before {
    opacity: 1;
}

.life-insurance-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .life-insurance-insurance-card:hover .life-insurance-card-img {
    transform: scale(1.1);
  } */

.life-insurance-card-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.life-insurance-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3436;
    transition: color 0.3s ease;
}

.life-insurance-insurance-card:hover .life-insurance-card-title {
    color: #6c5ce7;
}

.life-insurance-card-btn {
    display: inline-block;
    background-color: transparent;
    color: #6c5ce7;
    border: 1px solid #6c5ce7;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.life-insurance-card-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #6c5ce7;
    transition: all 0.4s ease;
    z-index: -1;
}

.life-insurance-insurance-card:hover .life-insurance-card-btn {
    color: white;
}

.life-insurance-insurance-card:hover .life-insurance-card-btn::before {
    left: 0;
}

/* Gradient fade at edges */
.life-insurance-fade-left,
.life-insurance-fade-right {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.life-insurance-fade-left {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(248, 249, 250, 1),
        rgba(248, 249, 250, 0)
    );
}

.life-insurance-fade-right {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(248, 249, 250, 1),
        rgba(248, 249, 250, 0)
    );
}

/* Add slight staggered appearance for cards */
.life-insurance-insurance-card:nth-child(odd) {
    animation: float 3s ease-in-out infinite;
}

.life-insurance-insurance-card:nth-child(even) {
    animation: float 3s 1.5s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(0);
    }
}

/* Fix for ensuring all cards appear in animation */
@media (min-width: 1200px) {
    .life-insurance-cards-container {
        height: 350px;
    }

    .life-insurance-cards-track {
        width: calc(
            280px * 32
        ); /* Ensure enough width for all cards plus duplicates */
    }
}

/* Additional responsive styles */
@media (max-width: 1199.98px) {
    .life-insurance-cards-track {
        width: calc(280px * 32);
    }
}

@media (max-width: 767.98px) {
    .life-insurance-insurance-card {
        width: 220px;
        height: 300px;
    }

    .life-insurance-cards-track {
        width: calc(250px * 32);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 16));
        }
    }

    .life-insurance-section-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .life-insurance-insurance-cards-section {
        padding: 50px 0;
    }

    .life-insurance-section-title {
        font-size: 24px;
    }

    .life-insurance-insurance-card {
        width: 200px;
        height: 280px;
    }

    .life-insurance-card-img-container {
        height: 180px;
    }

    .life-insurance-cards-track {
        width: calc(230px * 32);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-230px * 16));
        }
    }

    .life-insurance-card-content {
        padding: 10px;
    }

    .life-insurance-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .life-insurance-card-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

/* Custom Classes with new-p prefix */
.new-p-main-heading {
    color: #4338ca;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 2rem;
}

.new-p-header-section {
    background-color: #f8fafc;
    padding: 5rem 0 1rem;
    text-align: center;
}
/* Tab Design CSS - Improved Mobile Responsiveness */
.new-p-custom-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0;
}

.new-p-tab-link {
    border: none;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin: 0 15px;
    padding: 0;
    transition: all 0.3s ease;
}

.new-p-tab-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4338ca;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.new-p-tab-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    /* When inactive: use the same color as active background */
    filter: invert(22%) sepia(76%) saturate(2852%) hue-rotate(239deg)
        brightness(87%) contrast(96%);
}

.new-p-tab-link.active .new-p-tab-icon-container,
.new-p-tab-link:hover .new-p-tab-icon-container {
    background-color: #4338ca;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(67, 56, 202, 0.25);
}

.new-p-tab-link.active .new-p-tab-icon,
.new-p-tab-link:hover .new-p-tab-icon {
    transform: scale(1.1);
    filter: brightness(10);
}

.new-p-tab-link.active,
.new-p-tab-link:hover {
    color: #1e293b;
    font-weight: 600;
    transform: translateY(-3px);
}

/* Improved Responsive Styles for Tabs */
@media (max-width: 992px) {
    .new-p-tab-link {
        width: 110px;
        height: 110px;
        margin: 0 10px;
    }

    .new-p-tab-icon-container {
        width: 70px;
        height: 70px;
    }

    .new-p-tab-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .new-p-custom-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .new-p-tab-link {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 15px 10px;
        border-radius: 12px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        background-color: white;
    }

    .new-p-tab-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        margin-right: 12px;
    }

    .new-p-tab-icon {
        width: 25px;
        height: 25px;
    }

    .new-p-tab-link.active,
    .new-p-tab-link:hover {
        transform: translateY(-2px);
        background-color: #f8fafc;
        box-shadow: 0 4px 8px rgba(67, 56, 202, 0.15);
    }
}

@media (max-width: 480px) {
    .new-p-custom-tabs {
        gap: 10px;
    }

    .new-p-tab-link {
        padding: 12px 10px;
    }

    .new-p-tab-icon-container {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .new-p-tab-icon {
        width: 20px;
        height: 20px;
    }
}

.new-p-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

    margin-bottom: 2rem;
    text-align: center;
    overflow: hidden;
    background-color: #ffffff;
}

.new-p-card:hover {
    box-shadow: 0 0 25px rgba(67, 56, 202, 0.15);
}

.new-p-card-img-container {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    border: 3px solid #4338ca;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #f8fafc;
}

.new-p-card:hover .new-p-card-img-container {
    transform: scale(1.1);
    border-color: #6366f1;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.new-p-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.new-p-card:hover .new-p-card-img {
    transform: scale(1);
}

.new-p-card-title {
    color: #4338ca;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.new-p-card:hover .new-p-card-title {
    color: #6366f1;
}

.new-p-card-text {
    color: #64748b;
}

.new-p-card-link {
    text-decoration: none;
    color: #4338ca;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 2px 4px;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.2s ease;
}

.new-p-card-link {
    text-decoration: none;
    color: #4338ca;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 2px 4px;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Modern underline effect */
.new-p-card-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #6366f1;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.new-p-card-link:hover {
    color: #6366f1;
    transform: translateY(-1px);
}

.new-p-card-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Optional: Add subtle box shadow on hover for depth */
.new-p-card-link:hover {
    text-shadow: 0 0 1px rgba(99, 102, 241, 0.2);
}

/* Active state for when the link is clicked */
.new-p-card-link:active {
    transform: translateY(0px);
    transition: transform 0.1s ease;
}

.new-p-consultation-section {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(67, 56, 202, 0.2);
    transition: all 0.4s ease;
}

.new-p-consultation-section:hover {
    box-shadow: 0 20px 30px rgba(67, 56, 202, 0.3);
    transform: translateY(-5px);
}

.new-p-consultation-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
}

.new-p-consultation-text {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.new-p-btn-consultation {
    background-color: white;
    color: #4338ca;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.new-p-btn-consultation::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(99, 102, 241, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.4s ease;
    z-index: -1;
}

.new-p-btn-consultation:hover {
    background-color: #f8fafc;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #6366f1;
}

.new-p-btn-consultation:hover::before {
    left: 100%;
}

.new-p-phone-number {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.new-p-phone-number:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .new-p-consultation-section {
        padding: 2rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1400px) {
    .empowering-contact-card {
        background: #ffffff;
        border-radius: 5.34px;
        width: 292.74px;
        height: 250px;
        position: absolute;
        left: 34%;
        top: 71%;
        transform: translate(-50%, -50%);
        box-shadow: 0px 16.03px 36.32px 0px rgba(18, 87, 59, 0.25);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        text-align: center;
        z-index: 2;
    }
}

.accordion-button::after {
    display: none; /* Hide the default Bootstrap arrow icon */
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Position back-to-top button on left for mobile screens */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 20px; /* Left side position for mobile */
    width: 45px; /* Slightly smaller for mobile */
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(103, 86, 252, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

/* Move to right side for screens larger than 768px (tablets and up) */
@media (min-width: 768px) {
    .back-to-top {
        left: auto;
        right: 30px;
        width: 50px; /* Original size for larger screens */
        height: 50px;
    }
}

/* Rest of the styles remain the same */
.back-to-top:hover {
    background-color: var(--main-bg-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(103, 86, 252, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s infinite;
}

.back-to-top i {
    font-size: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(103, 86, 252, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(103, 86, 252, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(103, 86, 252, 0);
    }
}

/* Results Section Styles - keeping the original styles */
.broker-new-results-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.broker-new-results-header {
    text-align: center;
    margin-bottom: 30px;
}

.broker-new-results-title {
    color: #6c5ce7;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.broker-new-brokers-found {
    display: inline-block;
    background-color: #6c5ce7;
    color: white;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.broker-new-table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.broker-new-entries-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.broker-new-entries-select select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.broker-new-brokers-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.broker-new-brokers-table tbody tr {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.broker-new-brokers-table tbody tr:last-child {
    border-bottom: none;
}

.broker-new-brokers-table td {
    padding: 15px;
}

.broker-new-message-btn {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}

.broker-new-message-btn:hover {
    background-color: #5649c0;
}

.broker-new-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.broker-new-pagination {
    display: flex;
    gap: 10px;
}

.broker-new-pagination a {
    color: #333;
    text-decoration: none;
}

.broker-new-pagination a:hover {
    text-decoration: underline;
    color: #6b62b0;
}

/* Email Modal Styles - keep original styles */
.broker-new-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.broker-new-modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.broker-new-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.broker-new-modal-title {
    color: #6c5ce7;
    font-size: 22px;
    font-weight: bold;
}

.broker-new-close {
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* New Referral Form Section Styles */
.broker-new-referral-form-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    display: none; /* Initially hidden */
}

.broker-new-referral-header {
    text-align: center;
    margin-bottom: 40px;
}

.broker-new-referral-title {
    color: #6c5ce7;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.broker-new-referral-form {
    max-width: 800px;
    margin: 0 auto;

    padding: 30px;
    border-radius: 8px;
}

.broker-new-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.broker-new-form-group {
    flex: 1 1 45%;
    min-width: 250px;
}

.broker-new-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.broker-new-form-group input,
.broker-new-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.broker-new-form-group input:focus,
.broker-new-form-group select:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

.broker-new-checkbox-group {
    margin-top: 10px;
}

.broker-new-checkbox-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.broker-new-checkbox-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.broker-new-form-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 10px;
}

.broker-new-assistance-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.broker-new-referral-button {
    background-color: #252a61;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s ease;
}

.broker-new-referral-button:hover {
    background-color: #1a1f4d;
}

.broker-new-no-brokers-message {
    text-align: center;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .broker-new-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .broker-new-form-group {
        flex: 1 1 100%;
    }

    .broker-new-assistance-options {
        grid-template-columns: 1fr;
    }

    .broker-new-referral-title {
        font-size: 24px;
    }
}

.angelic-banner-carousel-item {
    height: 720px;
    position: relative;
    overflow: hidden;
}

.angelic-banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.angelic-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15%;
    background: linear-gradient(
        135deg,
        rgba(75, 72, 124, 0.95) 0%,
        rgba(75, 72, 124, 0.85) 100%
    );
}

.angelic-banner-business-slide .angelic-banner-overlay {
    background: linear-gradient(
        135deg,
        rgba(75, 72, 124, 0.5) 0%,
        rgba(149, 147, 169, 0.7) 100%
    );
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
}

.angelic-banner-loved-ones-slide .angelic-banner-overlay {
    background: linear-gradient(
        135deg,
        rgba(102 100 150 / 66%) 0%,
        rgba(190 189 205 / 68%) 100%
    );
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
}

.angelic-banner-clients-slide .angelic-banner-overlay {
    background: linear-gradient(
        135deg,
        rgb(77 71 171 / 89%) 0%,
        rgb(106 103 149 / 64%) 100%
    );
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
}

.angelic-banner-caption {
    position: static;
    padding: 0;
}

/* Different fonts for each element */
.angelic-banner-main-heading {
    font-family: "Raleway", serif;
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.angelic-banner-sub-heading {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.angelic-banner-tagline {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.angelic-banner-business-slide .angelic-banner-main-heading {
    color: white;
}

.angelic-banner-business-word {
    color: #b8b2ef;
    text-shadow: 1px 1px 0 #9f99d1, 2px 2px 0 #8680b4, 3px 3px 0 #6d6897,
        4px 4px 8px rgba(0, 0, 0, 0.4);
}

.angelic-banner-love-word {
    color: #fbc72c;
    text-shadow: 1px 1px 0 #9f99d1, 2px 2px 0 #8680b4, 3px 3px 0 #6d6897,
        4px 4px 8px rgba(0, 0, 0, 0.4);
}

.angelic-banner-client-word {
    color: #342c6d;
    text-shadow: 1px 1px 0 #c8c4ea, 2px 2px 0 #aba7ca, 3px 3px 0 #bcb9dc,
        4px 4px 8px rgba(0, 0, 0, 0.4);
}
.angelic-banner-business-slide .angelic-banner-sub-heading {
    color: #fbc72c;
}

.angelic-banner-loved-ones-slide .angelic-banner-main-heading {
    color: #342c6d;
}

.angelic-banner-loved-ones-slide .angelic-banner-sub-heading {
    color: #fbc72c;
}

.angelic-banner-loved-ones-tagline {
    color: white;
}

.angelic-banner-clients-slide .angelic-banner-main-heading {
    color: #fbc72c;
}

.angelic-banner-clients-slide .angelic-banner-sub-heading {
    color: white;
}

/* Button styles with added hover effects */
.angelic-banner-btn {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px;
    text-decoration: none;
}

.angelic-banner-btn-primary-business {
    background-color: #fbc72c;
    border: 2px solid #fdd835;
    color: #333;
}

.angelic-banner-btn-primary-business:hover {
    background-color: #f9a825;
    border-color: #e0e0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.angelic-banner-btn-secondary-business {
    background-color: #b8b2ef;
    border: 2px solid #e0e0f0;
    color: #342c6d;
}

.angelic-banner-btn-secondary-business:hover {
    background-color: #c5c5d7;
    border-color: #c5c5d7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.angelic-banner-btn-primary-loved-ones {
    background-color: #fbc72c;
    border: 2px solid #ffa500;
    color: #342c6d;
}

.angelic-banner-btn-primary-loved-ones:hover {
    background-color: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.angelic-banner-btn-secondary-loved-ones {
    background-color: #6756fc;
    border: 2px solid #6a5acd;
    color: white;
}

.angelic-banner-btn-secondary-loved-ones:hover {
    background-color: #5d4ebd;
    border-color: #5d4ebd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.angelic-banner-btn-primary-clients {
    background-color: #342c6d;
    border: 2px solid #3f51b5;
    color: white;
}

.angelic-banner-btn-primary-clients:hover {
    background-color: #303f9f;
    border-color: #303f9f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.angelic-banner-btn-secondary-clients {
    background-color: #fdd835;
    border: 2px solid #fdd835;
    color: #342c6d;
}

.angelic-banner-btn-secondary-clients:hover {
    background-color: #fbc02d;
    border-color: #fbc02d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modified indicators to be circular */
.angelic-banner-indicators {
    bottom: 30px;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.angelic-banner-indicator-button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    opacity: 0.5;
    border: none;
    padding: 0;
    box-sizing: content-box;
}

.angelic-banner-indicator-button.active {
    opacity: 1;
    background-color: #fdd835;
    width: 12px;
    height: 12px;
}

.angelic-banner-buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Added responsive styles */
@media (max-width: 1200px) {
    .angelic-banner-main-heading {
        font-size: 5rem;
    }

    .angelic-banner-sub-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .angelic-banner-main-heading {
        font-size: 3.5rem;
    }

    .angelic-banner-sub-heading {
        font-size: 2rem;
    }

    .angelic-banner-tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .angelic-banner-carousel-item {
        height: 600px;
    }

    .angelic-banner-main-heading {
        font-size: 2.5rem;
    }

    .angelic-banner-sub-heading {
        font-size: 1.8rem;
    }

    .angelic-banner-tagline {
        font-size: 1.2rem;
    }

    .angelic-banner-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}
.weglot-container {
    z-index: 1 !important;
}
@media (max-width: 576px) {
    .angelic-banner-carousel-item {
        height: 650px;
    }
    .weglot-container {
        margin: 0 auto;
    }

    .angelic-banner-main-heading {
        font-size: 2rem;
    }

    .angelic-banner-sub-heading {
        font-size: 1.5rem;
    }

    .angelic-banner-tagline {
        font-size: 1rem;
    }

    .angelic-banner-overlay {
        padding: 0 5%;
    }

    .angelic-banner-btn {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .angelic-banner-carousel-item {
        height: 600px;
    }

    .angelic-banner-main-heading {
        font-size: 1.8rem;
    }

    .angelic-banner-sub-heading {
        font-size: 1.3rem;
    }
}

.blog-description p,
.blog-description h1,
.blog-description h2,
.blog-description h3,
.blog-description h4,
.blog-description h5,
.blog-description h6,
.blog-description span {
    font-family: "Poppins", sans-serif !important;
}

/* Main Section */
.partner-section1 {
    padding: 80px 0;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.partner-section1__row {
    gap: 5rem;
    min-height: 600px;
}

/* Content Column */
.partner-section1__content-col {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.partner-section1__content {
    width: 100%;
    max-width: 100%;
}

.partner-section1__text-wrapper {
    margin-bottom: 2rem;
}

/* Heading Styles */
.partner-section1__heading {
    font-family: "Roboto", sans-serif;
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-align: left;
}

.partner-section1__heading-text {
    color: #141f3b;
}

.partner-section1__heading-brand {
    color: #6856fd;
}

/* Description */
.partner-section1__description {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 1.625rem;
    line-height: 2.5rem;

    font-weight: 400;
    margin-bottom: 0;
    text-align: left;
}

/* CTA Button */
.partner-section1__cta {
    margin-top: 2rem;
}

.partner-section1__btn {
    background: #6856fd;
    border: none;
    border-radius: 6px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px 0px rgba(104, 86, 253, 0.25);
}

.partner-section1__btn:hover {
    background: #5a4bef;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px 0px rgba(104, 86, 253, 0.35);
}

.partner-section1__btn:focus {
    background: #5a4bef;
    color: #ffffff;
    box-shadow: 0px 2px 15px 0px rgba(104, 86, 253, 0.25),
        0 0 0 0.25rem rgba(104, 86, 253, 0.25);
}

/* Image Column */
.partner-section1__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.partner-section1__image-wrapper {
    width: 100%;
    max-width: 658px;
    margin: 0;
}

.partner-section1__image {
    border-radius: 30px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Medium screens (768px to 991px) */
@media (max-width: 991.98px) {
    .partner-section1 {
        padding: 60px 0;
    }

    .partner-section1__row {
        gap: 2rem;
        text-align: center;
    }

    .partner-section1__heading {
        font-size: 3.5rem;
        text-align: center;
    }

    .partner-section1__description {
        font-size: 1.375rem;
        line-height: 2rem;
        text-align: center;
    }

    .partner-section1__content-col {
        order: 2;
    }

    .partner-section1__image-col {
        order: 1;
        margin-bottom: 1rem;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767.98px) {
    .partner-section1 {
        padding: 40px 0;
    }

    .partner-section1__heading {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .partner-section1__description {
        font-size: 1.25rem;
        line-height: 1.8rem;
    }

    .partner-section1__btn {
        font-size: 1.25rem;
        padding: 0.875rem 1.75rem;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .partner-section1 {
        padding: 30px 0;
    }

    .partner-section1__content-col,
    .partner-section1__image-col {
        padding: 1rem 1rem;
    }

    .partner-section1__heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .partner-section1__description {
        font-size: 1.125rem;
        line-height: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .partner-section1__btn {
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }

    .partner-section1__image {
        border-radius: 20px;
    }
}

/* Ultra small screens (below 400px) */
@media (max-width: 399.98px) {
    .partner-section1__heading {
        font-size: 1.5rem;
    }

    .partner-section1__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .partner-section1__btn {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Print Styles */
@media print {
    .partner-section1 {
        padding: 20px 0;
        page-break-inside: avoid;
    }

    .partner-section1__btn {
        display: none;
    }
}

/* Main Section */
.partner-section2 {
    background: #ffffff;
    overflow: hidden;
}

.partner-section2__content {
    width: 100%;
}

/* Optional Header (hidden by default) */
.partner-section2__header {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-section2__title {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #141f3b;
    margin-bottom: 0;
}

/* Logos Wrapper */
.partner-section2__logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Logos Container */
.partner-section2__logos-container {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
    padding: 20px 0;
}

/* Logo Items */
.partner-section2__logo-item {
    margin: 0;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-section2__logo-item:hover {
    transform: translateY(-5px);
    background: rgba(104, 86, 253, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Base Logo Image Styles */
.partner-section2__logo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-section2__logo-image:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Individual Logo Sizes */
.partner-section2__logo-image--1 {
    width: 117px;
    height: 69px;
    aspect-ratio: 117/69;
}

.partner-section2__logo-image--2 {
    width: 125px;
    height: 125px;
    aspect-ratio: 1;
}

.partner-section2__logo-image--3 {
    width: 88px;
    height: 88px;
    aspect-ratio: 1;
}

.partner-section2__logo-image--4 {
    width: 101px;
    height: 87px;
    aspect-ratio: 101/87;
}

.partner-section2__logo-image--5 {
    width: 193px;
    height: 80px;
    aspect-ratio: 193/19;
}

.partner-section2__logo-image--6 {
    width: 135px;
    height: 134px;
    aspect-ratio: 135/134;
}

.partner-section2__logo-image--7 {
    width: 113px;
    height: 113px;
    aspect-ratio: 1;
}

.partner-section2__logo-image--8 {
    width: 116px;
    height: 60px;
    aspect-ratio: 116/60;
}

.partner-section2__logo-image--9 {
    width: 98px;
    height: 50px;
    aspect-ratio: 98/50;
}

.partner-section2__logo-image--10 {
    width: 82px;
    height: 80px;
    aspect-ratio: 82/42;
}

/* Responsive Design */

/* Extra Large screens (1400px and up) */
@media (min-width: 1400px) {
    .partner-section2__title {
        font-size: 3rem;
    }
}

/* Medium screens (768px to 991px) */
@media (max-width: 991.98px) {
    .partner-section2 {
        padding: 50px 0;
    }

    .partner-section2__logos-container {
        justify-content: center;
    }

    .partner-section2__title {
        font-size: 2.25rem;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767.98px) {
    .partner-section2 {
        padding: 40px 0;
    }

    .partner-section2__logos-container {
        justify-content: center;
    }

    .partner-section2__title {
        font-size: 2rem;
    }

    .partner-section2__logo-item {
        padding: 8px;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .partner-section2 {
        padding: 30px 0;
    }

    .partner-section2__logos-container {
        padding: 15px 0;
    }

    .partner-section2__title {
        font-size: 1.75rem;
    }

    .partner-section2__logo-item {
        padding: 6px;
    }

    /* Mobile sizes */
    .partner-section2__logo-image--1 {
        width: 78px;
        height: 46px;
    }

    .partner-section2__logo-image--2 {
        width: 83px;
        height: 83px;
    }

    .partner-section2__logo-image--3 {
        width: 59px;
        height: 59px;
    }

    .partner-section2__logo-image--4 {
        width: 67px;
        height: 58px;
    }

    .partner-section2__logo-image--5 {
        width: 129px;
        height: 50px;
    }

    .partner-section2__logo-image--6 {
        width: 90px;
        height: 89px;
    }

    .partner-section2__logo-image--7 {
        width: 75px;
        height: 75px;
    }

    .partner-section2__logo-image--8 {
        width: 77px;
        height: 40px;
    }

    .partner-section2__logo-image--9 {
        width: 65px;
        height: 33px;
    }

    .partner-section2__logo-image--10 {
        width: 55px;
        height: 40px;
    }
}

/* Ultra small screens (below 400px) */
@media (max-width: 399.98px) {
    .partner-section2__logos-container {
        gap: 12px;
    }

    .partner-section2__title {
        font-size: 1.5rem;
    }

    /* Ultra compact sizes */
    .partner-section2__logo-image--1 {
        width: 70px;
        height: 41px;
    }

    .partner-section2__logo-image--2 {
        width: 75px;
        height: 75px;
    }

    .partner-section2__logo-image--3 {
        width: 53px;
        height: 53px;
    }

    .partner-section2__logo-image--4 {
        width: 61px;
        height: 52px;
    }

    .partner-section2__logo-image--5 {
        width: 116px;
        height: 30px;
    }

    .partner-section2__logo-image--6 {
        width: 81px;
        height: 80px;
    }

    .partner-section2__logo-image--7 {
        width: 68px;
        height: 68px;
    }

    .partner-section2__logo-image--8 {
        width: 70px;
        height: 36px;
    }

    .partner-section2__logo-image--9 {
        width: 59px;
        height: 30px;
    }

    .partner-section2__logo-image--10 {
        width: 49px;
        height: 30px;
    }
}

/* Animation for logo reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-section2__logo-item {
    animation: fadeInUp 0.6s ease forwards;
}

.partner-section2__logo-item:nth-child(1) {
    animation-delay: 0.1s;
}
.partner-section2__logo-item:nth-child(2) {
    animation-delay: 0.2s;
}
.partner-section2__logo-item:nth-child(3) {
    animation-delay: 0.3s;
}
.partner-section2__logo-item:nth-child(4) {
    animation-delay: 0.4s;
}
.partner-section2__logo-item:nth-child(5) {
    animation-delay: 0.5s;
}
.partner-section2__logo-item:nth-child(6) {
    animation-delay: 0.6s;
}
.partner-section2__logo-item:nth-child(7) {
    animation-delay: 0.7s;
}
.partner-section2__logo-item:nth-child(8) {
    animation-delay: 0.8s;
}
.partner-section2__logo-item:nth-child(9) {
    animation-delay: 0.9s;
}
.partner-section2__logo-item:nth-child(10) {
    animation-delay: 1s;
}

/* Main Section */
.partner-section3 {
    background: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-section3__content {
    width: 100%;
}

/* Header Section */
.partner-section3__header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1154px;
    margin-left: auto;
    margin-right: auto;
}

.partner-section3__title {
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-section3__title-text {
    color: #000000;
}

.partner-section3__title-brand {
    color: #6856fd;
}

.partner-section3__description {
    color: #3f4254;
    font-family: "Roboto", sans-serif;
    font-size: 1.625rem;
    line-height: 2.5rem;

    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

/* Cards Section */
.partner-section3__cards {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Individual Card Styles */
.partner-section3__card {
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e6e1f7;
    padding: 45px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect - Transform to Active State */
.partner-section3__card:hover {
    background: #f3f5ff;
    border-color: #7b61ff;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Icon Wrapper */
.partner-section3__icon-wrapper {
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 64px;
    flex-shrink: 0;
}

.partner-section3__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-section3__card:hover .partner-section3__icon {
    transform: scale(1.1);
}

/* Card Content */
.partner-section3__card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.partner-section3__card-title {
    color: #000000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: center;
}

.partner-section3__card-description {
    color: #3f4254;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
    max-width: 252px;
}

/* Responsive Design */

/* Medium screens (768px to 991px) */
@media (max-width: 991.98px) {
    .partner-section3 {
        padding: 60px 0;
    }

    .partner-section3__header {
        margin-bottom: 3rem;
    }

    .partner-section3__title {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .partner-section3__description {
        font-size: 1.375rem;
        line-height: 2rem;
    }

    .partner-section3__card {
        padding: 40px 20px 20px 20px;
    }

    .partner-section3__card-title {
        font-size: 1.375rem;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767.98px) {
    .partner-section3 {
        padding: 50px 0;
    }

    .partner-section3__header {
        margin-bottom: 2.5rem;
    }

    .partner-section3__title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .partner-section3__description {
        font-size: 1.25rem;
        line-height: 1.8rem;
    }

    .partner-section3__card {
        padding: 35px 20px 20px 20px;
        margin-bottom: 1rem;
    }

    .partner-section3__card-title {
        font-size: 1.25rem;
    }

    .partner-section3__card-description {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .partner-section3__icon-wrapper {
        width: 56px;
        height: 54px;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .partner-section3 {
        padding: 40px 0;
    }

    .partner-section3__header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .partner-section3__title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .partner-section3__description {
        font-size: 1.125rem;
        line-height: 1.6rem;
    }

    .partner-section3__cards {
        padding: 0 15px;
    }

    .partner-section3__card {
        padding: 30px 15px 20px 15px;
    }

    .partner-section3__card-content {
        gap: 20px;
    }

    .partner-section3__card-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .partner-section3__card-description {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .partner-section3__icon-wrapper {
        width: 48px;
        height: 46px;
        margin-bottom: 20px;
    }
}

/* Ultra small screens (below 400px) */
@media (max-width: 399.98px) {
    .partner-section3__title {
        font-size: 1.75rem;
    }

    .partner-section3__description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .partner-section3__card {
        padding: 25px 12px 15px 12px;
    }

    .partner-section3__card-title {
        font-size: 1rem;
    }

    .partner-section3__card-description {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .partner-section3__icon-wrapper {
        width: 40px;
        height: 38px;
        margin-bottom: 15px;
    }
}

/* Animation for cards reveal */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-section3__card {
    animation: slideUpFade 0.6s ease forwards;
}

.partner-section3__card:nth-child(1) {
    animation-delay: 0.1s;
}
.partner-section3__card:nth-child(2) {
    animation-delay: 0.2s;
}
.partner-section3__card:nth-child(3) {
    animation-delay: 0.3s;
}
.partner-section3__card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Focus states for accessibility */
.partner-section3__card:focus {
    outline: 2px solid #6856fd;
    outline-offset: 2px;
}

.partner-section3__card:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .partner-section3 {
        padding: 30px 0;
        background: #ffffff;
        page-break-inside: avoid;
    }

    .partner-section3__card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .partner-section3__card:hover {
        transform: none;
        background: #ffffff;
    }
}

/* Main Section */
.partner-section4 {
    background: linear-gradient(135deg, #e8e4ff 0%, #f0edff 50%, #e8e4ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-section4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(104, 86, 253, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(104, 86, 253, 0.08) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.partner-section4__content {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Header Section */
.partner-section4__header {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.partner-section4__title {
    color: #6856fd;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-section4__description {
    color: #4a5568;
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.partner-section4__features {
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards */
.partner-section4__feature-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(104, 86, 253, 0.1);
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(104, 86, 253, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.partner-section4__feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6856fd, #8b7bff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.partner-section4__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(104, 86, 253, 0.15);
    border-color: rgba(104, 86, 253, 0.2);
}

.partner-section4__feature-card:hover::before {
    transform: scaleX(1);
}

.partner-section4__feature-card:hover .partner-section4__icon {
    transform: scale(1.1) rotate(5deg);
}

.partner-section4__feature-card:hover .partner-section4__card-title {
    color: #6856fd;
}

/* Icon Wrapper */
.partner-section4__icon-wrapper {
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f7ff, #f0edff);
    border-radius: 20px;
    border: 1px solid rgba(104, 86, 253, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partner-section4__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Content */
.partner-section4__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex: 1;
}

.partner-section4__card-title {
    color: #2d3748;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.partner-section4__card-description {
    color: #718096;
    font-family: "Roboto", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

/* Medium screens (768px to 991px) */
@media (max-width: 991.98px) {
    .partner-section4 {
        padding: 70px 0;
    }

    .partner-section4__header {
        margin-bottom: 3rem;
    }

    .partner-section4__description {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .partner-section4__feature-card {
        padding: 35px 25px 25px 25px;
        margin-bottom: 1.5rem;
    }

    .partner-section4__card-title {
        font-size: 1.25rem;
    }

    .partner-section4__card-description {
        font-size: 0.9rem;
    }

    .partner-section4__icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .partner-section4__icon {
        width: 42px;
        height: 42px;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767.98px) {
    .partner-section4 {
        padding: 60px 0;
    }

    .partner-section4__header {
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }

    .partner-section4__description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .partner-section4__feature-card {
        padding: 30px 20px 25px 20px;
    }

    .partner-section4__card-content {
        gap: 14px;
    }

    .partner-section4__card-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .partner-section4__card-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .partner-section4__icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .partner-section4__icon {
        width: 38px;
        height: 38px;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .partner-section4 {
        padding: 50px 0;
    }

    .partner-section4__header {
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .partner-section4__title {
        font-size: 1.275rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .partner-section4__description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .partner-section4__features {
        padding: 0 15px;
    }

    .partner-section4__feature-card {
        padding: 25px 18px 20px 18px;
    }

    .partner-section4__card-content {
        gap: 12px;
    }

    .partner-section4__card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .partner-section4__card-description {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .partner-section4__icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .partner-section4__icon {
        width: 32px;
        height: 32px;
    }
}

/* Ultra small screens (below 400px) */
@media (max-width: 399.98px) {
    .partner-section4__title {
        font-size: 1.325rem;
    }

    .partner-section4__description {
        font-size: 0.875rem;
    }

    .partner-section4__feature-card {
        padding: 20px 15px 18px 15px;
    }

    .partner-section4__card-title {
        font-size: 0.9375rem;
    }

    .partner-section4__card-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .partner-section4__icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .partner-section4__icon {
        width: 28px;
        height: 28px;
    }
}

/* Staggered Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-section4__feature-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.partner-section4__feature-card:nth-child(1) {
    animation-delay: 0.1s;
}
.partner-section4__feature-card:nth-child(2) {
    animation-delay: 0.2s;
}
.partner-section4__feature-card:nth-child(3) {
    animation-delay: 0.3s;
}
.partner-section4__feature-card:nth-child(4) {
    animation-delay: 0.4s;
}
.partner-section4__feature-card:nth-child(5) {
    animation-delay: 0.5s;
}
.partner-section4__feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Focus states for accessibility */
.partner-section4__feature-card:focus {
    outline: 3px solid #6856fd;
    outline-offset: 2px;
}

.partner-section4__feature-card:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .partner-section4 {
        padding: 40px 0;
        background: #ffffff !important;
        page-break-inside: avoid;
    }

    .partner-section4::before {
        display: none;
    }

    .partner-section4__feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .partner-section4__feature-card:hover {
        transform: none;
    }

    .partner-section4__title {
        color: #333 !important;
    }
}

/* Partner Section 5 Styles */
.partner-section5-wrapper {
    background: linear-gradient(
        to bottom,
        #e2ddff 45%,
        #f8f7ff 30%,
        #fdfcff 60%,
        #ffffff 100%
    );
    padding: 40px 0;
}

.partner-section5-main {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(229, 229, 229, 0.3);
    padding: 60px 40px;
    box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.08);
    margin: 0;
}

.partner-section5-title {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.partner-section5-title-normal {
    color: #000000;
}

.partner-section5-title-highlight {
    color: #6856fd;
}

.partner-section5-hero-image {
    border-radius: 30px;
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: cover;
}

.partner-section5-feature-card {
    border-radius: 10px;

    margin-bottom: 40px;
    height: 100%;
}

.partner-section5-icon-wrapper {
    border-radius: 6px;
    padding: 15px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #f8f9fa;
}

.partner-section5-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-section5-feature-title {
    color: #6856fd;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.partner-section5-feature-description {
    color: #3f4254;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partner-section5-main {
        padding: 50px 30px;
    }

    .partner-section5-title {
        font-size: 3rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .partner-section5-main {
        padding: 40px 25px;
    }

    .partner-section5-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .partner-section5-hero-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .partner-section5-main {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .partner-section5-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .partner-section5-feature-card {
        padding: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .partner-section5-main {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .partner-section5-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .partner-section5-feature-title {
        font-size: 1.25rem;
    }

    .partner-section5-feature-description {
        font-size: 0.9rem;
    }
}

.partner-section6 {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-section6__content {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Header Section */
.partner-section6__header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-section6__title {
    color: black;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-section6__description {
    color: #4a5568;
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.partner-section6__features {
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards */
.partner-section6__feature-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(104, 86, 253, 0.1);
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(104, 86, 253, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.partner-section6__feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6856fd, #8b7bff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.partner-section6__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(104, 86, 253, 0.15);
    border-color: rgba(104, 86, 253, 0.2);
}

.partner-section6__feature-card:hover::before {
    transform: scaleX(1);
}

.partner-section6__feature-card:hover .partner-section6__icon {
    transform: scale(1.1) rotate(5deg);
}

.partner-section6__feature-card:hover .partner-section6__card-title {
    color: #6856fd;
}

/* Icon Wrapper */
.partner-section6__icon-wrapper {
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f7ff, #f0edff);
    border-radius: 20px;
    border: 1px solid rgba(104, 86, 253, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partner-section6__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Content */
.partner-section6__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex: 1;
}

.partner-section6__card-title {
    color: #2d3748;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.partner-section6__card-description {
    color: #718096;
    font-family: "Roboto", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

/* Medium screens (768px to 991px) */
@media (max-width: 991.98px) {
    .partner-section6 {
        padding: 70px 0;
    }

    .partner-section6__header {
        margin-bottom: 3rem;
    }

    .partner-section6__description {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .partner-section6__feature-card {
        padding: 35px 25px 25px 25px;
        margin-bottom: 1.5rem;
    }

    .partner-section6__card-title {
        font-size: 1.25rem;
    }

    .partner-section6__card-description {
        font-size: 0.9rem;
    }

    .partner-section6__icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .partner-section6__icon {
        width: 42px;
        height: 42px;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767.98px) {
    .partner-section6 {
        padding: 60px 0;
    }

    .partner-section6__header {
        margin-bottom: 2.5rem;
        padding: 0 15px;
    }

    .partner-section6__description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .partner-section6__feature-card {
        padding: 30px 20px 25px 20px;
    }

    .partner-section6__card-content {
        gap: 14px;
    }

    .partner-section6__card-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .partner-section6__card-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .partner-section6__icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }

    .partner-section6__icon {
        width: 38px;
        height: 38px;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .partner-section6 {
        padding: 50px 0;
    }

    .partner-section6__header {
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .partner-section6__title {
        font-size: 1.275rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .partner-section6__description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .partner-section6__features {
        padding: 0 15px;
    }

    .partner-section6__feature-card {
        padding: 25px 18px 20px 18px;
    }

    .partner-section6__card-content {
        gap: 12px;
    }

    .partner-section6__card-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .partner-section6__card-description {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .partner-section6__icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .partner-section6__icon {
        width: 32px;
        height: 32px;
    }
}

/* Ultra small screens (below 400px) */
@media (max-width: 399.98px) {
    .partner-section6__title {
        font-size: 1.325rem;
    }

    .partner-section6__description {
        font-size: 0.875rem;
    }

    .partner-section6__feature-card {
        padding: 20px 15px 18px 15px;
    }

    .partner-section6__card-title {
        font-size: 0.9375rem;
    }

    .partner-section6__card-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .partner-section6__icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .partner-section6__icon {
        width: 28px;
        height: 28px;
    }
}

/* Staggered Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-section6__feature-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.partner-section6__feature-card:nth-child(1) {
    animation-delay: 0.1s;
}
.partner-section6__feature-card:nth-child(2) {
    animation-delay: 0.2s;
}
.partner-section6__feature-card:nth-child(3) {
    animation-delay: 0.3s;
}
.partner-section6__feature-card:nth-child(4) {
    animation-delay: 0.4s;
}
.partner-section6__feature-card:nth-child(5) {
    animation-delay: 0.5s;
}
.partner-section6__feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Focus states for accessibility */
.partner-section6__feature-card:focus {
    outline: 3px solid #6856fd;
    outline-offset: 2px;
}

.partner-section6__feature-card:focus:not(:focus-visible) {
    outline: none;
}

/* Print Styles */
@media print {
    .partner-section6 {
        padding: 40px 0;
        background: #ffffff !important;
        page-break-inside: avoid;
    }

    .partner-section6__feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .partner-section6__feature-card:hover {
        transform: none;
    }

    .partner-section6__title {
        color: #333 !important;
    }
}

.testimonial-section7 {
    background: #f3f5ff;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.testimonial-section7__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;

    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-section7__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    max-width: 1136px;
}

.testimonial-section7__title {
    color: #000000;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.testimonial-section7__description {
    color: #3f4254;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    line-height: 40px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.testimonial-section7__content {
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.testimonial-section7__slider {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.testimonial-section7__slides-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-section7__slide {
    background: #ffffff;
    border-radius: 16px;
    border-style: solid;
    border-color: transparent;
    border-width: 1px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: calc(25% - 19px);
    position: relative;
}

.testimonial-section7__slide:hover {
    border-color: #6856fd;
}

.testimonial-section7__quote-icon {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background: #d9d4fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.testimonial-section7__stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.testimonial-section7__star {
    color: #ffd700;
    font-size: 24px;
    width: 24px;
    height: 22.8px;
}

.testimonial-section7__review-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.testimonial-section7__review-text {
    color: #000000;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.testimonial-section7__reviewer-name {
    color: #000000;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.testimonial-section7__controls {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.testimonial-section7__arrow {
    border-radius: 36px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    position: relative;
    overflow: visible;
    background: #6756fc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0px 10px 15px 3px rgba(103, 86, 252, 0.25);
}

.testimonial-section7__arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 25px 5px rgba(103, 86, 252, 0.35);
}

.testimonial-section7__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-section7__arrow:disabled:hover {
    transform: none;
    box-shadow: 0px 10px 15px 3px rgba(103, 86, 252, 0.25);
}

.testimonial-section7__arrow i {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .testimonial-section7 {
        padding: 80px 0;
    }

    .testimonial-section7__content {
        gap: 30px;
    }

    .testimonial-section7__slide {
        min-width: calc(33.333% - 17px);
    }
}

@media (max-width: 991.98px) {
    .testimonial-section7 {
        padding: 70px 0;
    }

    .testimonial-section7__title {
        font-size: 42px;
    }

    .testimonial-section7__description {
        font-size: 22px;
        line-height: 36px;
    }

    .testimonial-section7__content {
        gap: 25px;
    }

    .testimonial-section7__slide {
        min-width: calc(100%);
    }

    .testimonial-section7__controls {
        gap: 30px;
    }

    .testimonial-section7__arrow {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-section7 {
        padding: 60px 0;
    }

    .testimonial-section7__header {
        gap: 20px;
    }

    .testimonial-section7__title {
        font-size: 36px;
    }

    .testimonial-section7__description {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0.04em;
    }

    .testimonial-section7__content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-section7__slide {
        padding: 20px;
    }

    .testimonial-section7__quote-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-section7 {
        padding: 50px 0;
    }

    .testimonial-section7__container {
        padding: 0 15px;
    }

    .testimonial-section7__title {
        font-size: 28px;
    }

    .testimonial-section7__description {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-section7__slide {
        padding: 18px;
    }

    .testimonial-section7__quote-icon {
        width: 48px;
        height: 48px;
    }

    .testimonial-section7__review-text {
        font-size: 13px;
    }

    .testimonial-section7__reviewer-name {
        font-size: 14px;
    }

    .testimonial-section7__controls {
        gap: 20px;
    }

    .testimonial-section7__arrow {
        width: 50px;
        height: 50px;
    }

    .testimonial-section7__arrow i {
        width: 20px;
        height: 20px;
    }
    .testimonial-section7__slides-container {
        gap: 0px;
    }
}

.partner-section8 {
    background: #f9f9f9;
    padding: 100px 0;

    position: relative;
    overflow: hidden;
}

.partner-section8-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.partner-section8-main-title {
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
}

.partner-section8-title-highlight {
    color: #6856fd;
}

.partner-section8-register-btn {
    background: #6856fd;
    border-radius: 6px;
    padding: 12px 22px;
    border: none;
    box-shadow: 0px 2px 15px 0px rgba(104, 86, 253, 0.25);
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partner-section8-register-btn:hover {
    background: #5a47e8;
    color: #ffffff;
    text-decoration: none;
}

.partner-section8-register-btn i {
    font-size: 22px;
}

.partner-section8-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    height: 752px;
}

.partner-section8-cards-container {
    width: 650px;
    height: 752px;
    flex-shrink: 0;
}

.partner-section8-cards-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.partner-section8-feature-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e6e1f7;
    padding: 45px 30px;
    height: 356px;
    box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex: 1;
}

.partner-section8-feature-card:hover,
.partner-section8-active-card {
    border-color: #7b61ff;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08);
}

.partner-section8-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-section8-card-icon img {
    width: 48px;
    height: 48px;
}

.partner-section8-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 266px;
}

.partner-section8-card-title {
    color: #000000;
    text-align: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.partner-section8-card-description {
    color: #3f4254;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.partner-section8-image-container {
    width: 600px;
    height: 752px;
    flex-shrink: 0;
}

.partner-section8-main-image {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .partner-section8 {
        padding: 60px 0;
        min-height: auto;
    }

    .partner-section8-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .partner-section8-main-title {
        font-size: 30px;
    }

    .partner-section8-register-btn {
        font-size: 18px;
        padding: 10px 18px;
    }

    .partner-section8-cards-row {
        flex-direction: column;
        gap: 30px;
    }

    .partner-section8-cards-container {
        width: 100%;
        height: auto;
    }

    .partner-section8-image-container {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .partner-section8-main-title {
        font-size: 25px;
    }

    .partner-section8-register-btn {
        font-size: 16px;
        padding: 10px 16px;
    }

    .partner-section8-register-btn i {
        font-size: 16px;
    }

    .partner-section8-feature-card {
        height: auto;
        padding: 30px 20px;
    }

    .partner-section8-card-title {
        font-size: 20px;
    }

    .partner-section8-card-description {
        font-size: 14px;
    }

    .partner-section8-image-container {
        width: 100%;
        height: 300px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .partner-section8 {
        padding: 40px 0;
    }

    .partner-section8-main-title {
        font-size: 1.3rem;
    }

    .partner-section8-register-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .partner-section8-content-wrapper {
        gap: 30px;
    }

    .partner-section8-cards-row {
        gap: 20px;
    }
}

/* Custom CSS - Minimal usage */
.five-star-section-title {
    font-family: "Poppins", sans-serif;
    color: #3a2a5f;
    font-weight: 600;
    font-size: 2.5rem;
}

.five-star-section-subtitle {
    color: #3a2a5f;
    font-family: "Roboto", sans-serif;
}

.five-star-star-box {
    background: #fbc72c;
}

.five-star-testimonial-card {
    background: white;

    cursor: pointer;
}

.five-star-testimonial-card:hover {
    background: #6756fc;
    color: white !important;
}

.five-star-testimonial-icon {
    background: rgba(103, 86, 252, 0.25);
    color: black;
    transition: all 0.3s ease;
}

.five-star-testimonial-card:hover .five-star-testimonial-icon {
    background: white;
    color: black;
}
.five-star-star-box-outline {
    background: transparent;
    border: 2px solid #fbc72c;
}
.five-star-testimonial-card:hover .five-star-text,
.five-star-testimonial-card:hover .five-star-author {
    color: white !important;
}

.five-star-star-color {
    color: #ffd700;
}

.five-star-text {
    font-family: "Inter", sans-serif;
}

.five-star-author {
    font-family: "Inter", sans-serif;
}

.five-star-carousel-btn {
    background: #6756fc;
}

.five-star-carousel-btn:hover {
    background: #5a4ae6;
}

.five-star-arrow-line {
    max-width: 90%;
    z-index: 10;
    right: 5%;
    bottom: 0%;
    transform: translateY(50%);
    position: absolute;
}
