/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Maven+Pro:wght@400..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

    --web-primary: #f7941d;
    --web-secondary: #341739;
    --web-purple: #6d68af;
    
}

    .w-25 { width: 25% !important; }
    .w-50 { width: 50% !important; }
    .w-75 { width: 75% !important; }

    @media (min-width: 768px) {
        .w-md-25 { width: 25% !important; }
        .w-md-50 { width: 50% !important; }
        .w-md-75 { width: 75% !important; }
    }

    @media (min-width: 992px) {
        .w-lg-25 { width: 25% !important; }
        .w-lg-50 { width: 50% !important; }
        .w-lg-75 { width: 75% !important; }
    }


body {
    /* font-family: "Inter", sans-serif !important; */
    /* font-family: "Manrope", sans-serif !important; */
    font-family: "Maven Pro", sans-serif !important;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #161e2d;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidespace-large {
    padding: 0 7vw;
}

.sidespace-small {
    padding: 0 5vw;
}



@media (max-width: 768px) {

}

@media (max-width: 576px) {

}


/* Home Page CSS  */


.home-gradient-bg{
    background: linear-gradient(180deg,rgba(254, 254, 255, 1) 0%, rgba(243, 244, 246, 1) 100%);
}

.home-section {
    display: flex;
    justify-content: center;
}

.home-section .home-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* max-width: 680px; */
    width: 100%;
    gap: 0;
}

.home-section .home-logo-wrap {
    margin-bottom: 18px;
}

.home-section .home-logo-icon {
    width: 100%;
    height: 120px;
    object-fit: scale-down;
}

.home-section .home-brand {
    font-size: 38px;
    font-weight: 700;
    color: var(--web-secondary);
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.home-section .home-tagline {
    font-size: 23px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.home-section .home-desc {
    font-size: 18px;
    color: #8e96a3;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 400;
    width: 50vw;
}

.home-section .home-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.home-section .btn-primary-custom {
    background-color: var(--web-primary);
    color: #fff;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.home-section .btn-primary-custom:hover {
    background-color: #e0831a;
    color: #fff;
    transform: translateY(-2px);
}

.home-section .btn-outline-custom {
    border: 2px solid var(--web-purple);
    color: var(--web-purple);
    padding: 11px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.home-section .btn-outline-custom:hover {
    background-color: var(--web-purple);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .home-section .home-brand {
        font-size: 28px;
    }
    .home-section .home-tagline {
        font-size: 16px;
    }
}


/* Industry Section */

.industrys-section {
    /* background-color: #f2f3f7; */
}

.industrys-section .industrys-header {
    text-align: center;
    margin-bottom: 40px;
}

.industrys-section .industrys-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.industrys-section .industrys-taglines {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 8px;
}

.industrys-section .industrys-taglines p {
    flex: 1 1 calc(33.333% - 14px);
    font-size: 15px;
    font-weight: 600;
    color: var(--web-primary);
    line-height: 1.5;
    margin: 0;
}

.industrys-section .industrys-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.industrys-section .industry-card {
    flex: 1 1 calc(33.333% - 16px);
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 26px 32px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.industrys-section .industry-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.industrys-section .industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.industrys-section .industry-icon--purple {
    background-color: var(--web-purple);
}

.industrys-section .industry-icon--orange {
    background-color: var(--web-primary);
}

.industrys-section .industry-number.first-number {
    color: var(--web-purple);
}

.industrys-section .industry-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--web-primary);
    line-height: 1;
}

.industrys-section .industry-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--web-secondary);
    line-height: 1.6;
    margin: 0;
}

.industrys-section .industry-card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .industrys-section .industrys-taglines,
    .industrys-section .industrys-cards {
        flex-direction: column;
    }
    .industrys-section .industrys-taglines p {
        flex: 1 1 100%;
        text-align: center;
    }
    .industrys-section .industry-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .industrys-section .industrys-title {
        font-size: 20px;
    }
}



/* Brokers Section */


.brokers-section {
    background-color: #ffffff;
}

.brokers-section .brokers-header {
    text-align: center;
    margin: 40px 0;
}

.brokers-section .brokers-title {
   font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.brokers-section .brokers-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.brokers-section .brokers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.brokers-section .broker-card {
    flex: 1 1 calc(33.333% - 16px);
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 28px 26px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brokers-section .broker-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.brokers-section .broker-icon--orange {
    background-color: var(--web-primary);
}

.brokers-section .broker-icon--purple {
    background-color: var(--web-purple);
}

.brokers-section .broker-icon--teal {
    background-color: #2bbfa4;
}

.brokers-section .broker-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--web-secondary);
    line-height: 1.4;
    margin: 0;
}

.brokers-section .broker-card-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .brokers-section .broker-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .brokers-section .broker-card {
        flex: 1 1 100%;
    }
    .brokers-section .brokers-title {
        font-size: 20px;
    }
}


/* Insurance Company Section */

.insuarance-company-section {
    background-color: #f2f3f7;
}

.insuarance-company-section .insurance-header {
    text-align: center;
    margin-bottom: 40px;
}

.insuarance-company-section .insurance-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.insuarance-company-section .insurance-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: 600;
}

.insuarance-company-section .insurance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    /* max-width: 900px; */
    margin: 0 auto;
}

.insuarance-company-section .insurance-card {
    flex: 1 1 calc(50% - 12px);
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.insuarance-company-section .insurance-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.insuarance-company-section .insurance-icon--purple {
    background-color: var(--web-purple);
}

.insuarance-company-section .insurance-icon--teal {
    background-color: #2bbfa4;
}

.insuarance-company-section .insurance-icon--orange {
    background-color: var(--web-primary);
}

.insuarance-company-section .insurance-icon--indigo {
    background-color: #5b6abf;
}

.insuarance-company-section .insurance-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insuarance-company-section .insurance-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--web-secondary);
    line-height: 1.4;
    margin: 0;
}

.insuarance-company-section .insurance-card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .insuarance-company-section .insurance-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .insuarance-company-section .insurance-title {
        font-size: 20px;
    }
}


/* About Section */

.about-section {
    background-color: #ffffff;
}

.about-section .about-inner {
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.about-section .about-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.about-section .about-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.about-section .about-actions {
    margin-top: 10px;
}

.about-section .btn-contact-custom {
    display: inline-block;
    border: 2px solid var(--web-purple);
    color: var(--web-purple);
    padding: 12px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.about-section .btn-contact-custom:hover {
    background-color: var(--web-purple);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .about-section .about-title {
        font-size: 20px;
    }
}


/* Responsibility Section */

.responsibility-section {
    background-color: var(--web-purple);
    padding-top: 60px;
    padding-bottom: 60px;
}

.responsibility-section .responsibility-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.responsibility-section .responsibility-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.responsibility-section .responsibility-title {
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.responsibility-section .responsibility-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 0;
}

.responsibility-section .responsibility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    text-align: center;
}

.responsibility-section .responsibility-feature {
    flex: 1 1 calc(33.333% - 22px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.responsibility-section .responsibility-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.responsibility-section .responsibility-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.responsibility-section .responsibility-feature-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .responsibility-section .responsibility-features {
        gap: 28px;
    }
    .responsibility-section .responsibility-feature {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .responsibility-section .responsibility-title {
        font-size: 20px;
    }
}


/* Working How It Works Section */

.working-section {
    background-color: #ffffff;
}

.working-section .working-header {
    text-align: center;
    margin-bottom: 48px;
}

.working-section .working-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.working-section .working-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
}

.working-section .working-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.working-section .working-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    position: relative;
    gap: 14px;
}

.working-section .working-step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.working-section .working-step--orange {
    background-color: var(--web-primary);
}

.working-section .working-step--purple {
    background-color: var(--web-purple);
}

.working-section .working-step--teal {
    background-color: #2bbfa4;
}

.working-section .working-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--web-secondary);
    margin: 0;
    line-height: 1.3;
}

.working-section .working-step-desc {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .working-section .working-steps {
        gap: 32px;
    }
    .working-section .working-step {
        flex: 0 0 calc(33.333% - 22px);
    }
}

@media (max-width: 576px) {
    .working-section .working-step {
        flex: 0 0 calc(50% - 16px);
    }
    .working-section .working-title {
        font-size: 20px;
    }
}


/* Associates Section */

.associates-section {
    background-color: #f2f3f7;
}

.associates-section .associates-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.associates-section .associates-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--web-secondary);
    margin-bottom: 24px;
}

.associates-section .associates-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
}

.associates-section .associates-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--web-primary);
    margin-top: 8px;
}

.associates-section .associates-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.associates-section .associate-logo-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 130px;
    text-align: center;
}

@media (max-width: 768px) {
    .associates-section .associates-logos {
        gap: 14px;
    }
    .associates-section .associate-logo-item {
        min-width: 100px;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .associates-section .associates-title {
        font-size: 20px;
    }
    .associates-section .associates-logos {
        gap: 10px;
    }
}


/* Footer */

.site-footer {
    background-color: #e8e6f5;
}

.site-footer .footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 52px;
    padding-bottom: 40px;
}

.site-footer .footer-brand-col {
    flex: 1 1 0;
    min-width: 0;
}

.site-footer .footer-links-col {
    flex: 1 1 0;
    min-width: 0;
}

.site-footer .footer-callback-col {
    flex: 1 1 0;
    min-width: 0;
}

.site-footer .footer-logo {
    margin-bottom: 16px;
}

.site-footer .footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-footer .footer-about {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-footer .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer .footer-address {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.site-footer .footer-phone,
.site-footer .footer-email {
    font-size: 15px;
    font-weight: 700;
    color: #6b7280;
    margin: 0;
}

.site-footer .footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--web-secondary);
    margin-bottom: 18px;
}

.site-footer .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-nav-list a {
    font-size: 15px;
    color: #6b7280;
    transition: color 0.2s ease;
    font-weight: 600;
}

.site-footer .footer-nav-list a:hover {
    color: var(--web-primary);
}

.site-footer .footer-callback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer .footer-input {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #d5d6e0;
    border-radius: 30px;
    font-size: 14px;
    color: var(--web-secondary);
    background: #f4f5fa;
    outline: none;
    transition: border-color 0.2s ease;
}

.site-footer .footer-input::placeholder {
    color: #9ca3af;
}

.site-footer .footer-input:focus {
    border-color: var(--web-primary);
}

.site-footer .footer-send-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--web-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.site-footer .footer-send-btn:hover {
    background-color: #e0831a;
}

.site-footer .footer-bottom {
    border-top: 1px solid #d0d1dc;
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
}

.site-footer .footer-bottom p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 992px) {
    .site-footer .footer-main {
        gap: 36px;
    }
    .site-footer .footer-brand-col {
        flex: 1 1 100%;
    }
    .site-footer .footer-links-col {
        flex: 1 1 0;
    }
    .site-footer .footer-callback-col {
        flex: 2 1 0;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-main {
        gap: 28px;
    }
    .site-footer .footer-links-col,
    .site-footer .footer-callback-col {
        flex: 1 1 100%;
    }
}