@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue Local';
    src: url('fonts/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

:root {
    --swiper-pagination-bullet-inactive-color: #ffffff;
    --primary-color: #FFFFFF;
    --accent-color: #006DB7;
    /* Specific blue for button */
    --text-light: #ffffff;
    --font-main: 'Helvetica Neue Local', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #000;
    color: var(--primary-color);
    line-height: 1.3;
    /* 130% line-height as specified */
}

.containerf {
    width: 1200px;
    margin: 0 auto;
}

p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 20px 0px;

}

h2 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 38px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}

.flexr {
    display: flex;
    flex-wrap: wrap;
}



section {
    padding: 0 0 100px;
}

.banner {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left aligned as per image */
    text-align: left;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%), url('images/banner.webp');
    background-size: cover;
    background-position: center;
    /* Providing some breathing room from the edges */
}

.banner h1 {
    font-family: 'Helvetica Neue Local', sans-serif;
    font-size: 48px;
    /* Specifically 48px */
    font-weight: 700;
    /* Bold */
    line-height: 130%;
    /* 130% as specified */
    letter-spacing: 0%;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 750px;
    /* Constraining width to match the visual */
    animation: fadeIn 1s ease-out;
}

.fixedbtn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    /* #006DB7 */
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Helvetica Neue Local', sans-serif;
    font-size: 20px;
    font-weight: 500;
    /* Specifically 20px */
    font-weight: 500;
    /* Medium */
    line-height: 130%;
    /* 130% as specified */
    letter-spacing: 0%;
    border-radius: 6px;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.3s both;
}

.fixedbtn:hover {
    background-color: #005691;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 109, 183, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about {
    text-align: center;
}

.truested {
    text-align: center;

    .flexr {
        justify-content: space-between;
        margin-top: 50px;

        .flexr-item {
            width: 190px;
            height: 160px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            background: #2f2f33;
            margin-bottom: 10px;

            img {
                width: var(--width, 80%);
                height: var(--height, 90px);
                object-fit: contain;
            }
        }

    }


}


/* Success Section Styles */
.success {
    background-color: #000;
    text-align: center;
}


.success-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.success-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-card {
    width: 290px;
    height: 330px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.success-card h3 {
    font-weight: 500;
    font-size: 70px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}

.success-card h4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;

}



.success-main-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 680px;
}

.success-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Review Section Styles */
.review {
    text-align: center;
}



.review-visual {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 570px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;

}

.visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    z-index: 1;
}

.woman-wrapper {
    position: relative;
    z-index: 2;
    width: 340px;
    margin-top: 50px;
}

.visual-woman {
    width: 100%;
    height: auto;
    display: block;
}

.badge {
    position: absolute;
    z-index: 3;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

.badge img {
    height: 60px;
    width: 170px;
    display: block;
    object-fit: contain;
}

/* Positioning based on design */
.badge.trustpilot {
    top: 43px;
    left: 37%;
    transform: translateX(-50%);
}

.badge.g2 {
    top: 35%;
    left: 16%;
}

.badge.clutch {
    top: 70%;
    left: 12%;
}

.badge.google {
    top: 35%;
    right: 17%;
}

.badge.goodfirms {
    top: 70%;
    right: 11%;
}

/* Benefits Section Styles */

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefits-left {
    flex: 1;
    max-width: 450px;
}

.benefits-left h2 {
    text-align: left;
    margin-bottom: 30px;
}

.benefits-left p {
    font-size: 20px;
    line-height: 140%;
}

.benefits-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #2f2f33;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: default;
}

.benefit-card:hover {
    border: 1px solid #006DB7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 109, 183, 0.3);
    transition: all 0.4s ease;

}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 140%;
    margin: 0;
    opacity: 0.9;
}



/* Gallery Section Styles */
.gallery-section {

    text-align: center;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #006DB7;
    color: #006DB7;
}

.tab-btn.active {
    background-color: #006DB7;
    border-color: #006DB7;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item.hidden {
    display: none;
}

.project-image {
    width: 100%;
    height: 100%;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-info {
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-info h3 {
    margin: 0 0 5px;
    font-size: 22px;
    color: #fff;
}

.project-info span {
    font-size: 14px;
    color: #006DB7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.gallery-item:hover .project-overlay {
    opacity: 1;
}

.gallery-item:hover .project-info {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}



/* Testimonials Section Styles */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonials-swiper {
    padding-bottom: 60px !important;
}

.testimonial-card {
    background: #2f2f33;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    height: 100%;
    margin-right: 0 !important;
}

.quote-icon {
    margin-bottom: 24px;
    opacity: 1;
}

.quote-icon svg {
    width: 62px;
    height: 62px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 20px;
    color: #fff;
}

.testimonial-author {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #808080;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: #006DB7;
}


/* Industries We Serve Section Styles */
.industries {

    text-align: center;
}


.industries-desc {
    margin: 20px auto 50px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #292A2D;
    padding: 24px 30px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0px 0px 10px 0px #006DB759;


}

.industry-card span {
    text-align: left;
}

.industry-card svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    border-color: #006DB759;
    transform: translateY(-2px);
}

.industry-card:hover svg {
    transform: translate(2px, -2px);
}



/* Advanced Design Tools Section Styles */
.design-tools {

    text-align: center;
}

.design-tools h2 {
    margin-bottom: 20px;
}

.section-desc {
    margin: 0 auto 50px;

}

.tools-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.tools-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
}

.tools-image img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    object-position: top;
}

/* Ripple Background Effect */
.ripple-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ripple-bg span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 109, 183, 0.4);
    animation: ripple 4s linear infinite;
}

.ripple-bg span:nth-child(1) {
    animation-delay: 0s;
}

.ripple-bg span:nth-child(2) {
    animation-delay: 1s;
}

.ripple-bg span:nth-child(3) {
    animation-delay: 2s;
}

.ripple-bg span:nth-child(4) {
    animation-delay: 3s;
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
    }

    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

/* Accordion Styles */
.tools-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: #222224;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background-color: #292A2D;
}

.accordion-header h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #006DB71A;

    border-radius: 50%;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    background-color: #292A2D;
}

.accordion-content p {
    margin: 20px 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 18px;
}

/* Active Accordion State */
.accordion-item.active {
    border: 1px solid #006DB78C
}

.accordion-item.active .accordion-header {
    background-color: #292A2D;
    border-bottom: 1px solid #006DB766
}

.accordion-item.active .accordion-icon {
    background-color: #006DB7;
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust based on content */
    background-color: #292A2D;
}


/* FAQ Section Styles */
.faq-section {
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    background-color: transparent;
    border: 1px solid #D9D9D9BF;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border: 1px solid #006DB7
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    background-color: transparent;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #fff;
    padding-right: 20px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
    background-color: transparent;
}

.faq-content p {
    margin: 0 0 24px;
    line-height: 1.6;
    font-size: 18px;
}

/* Active FAQ State */
.faq-item.active {
    border: 1px solid #006DB7;

    background-color: #292A2D;
    /* Slightly lighter bg for active item */
}

.faq-item.active .faq-header {
    background-color: #222224;
    /* Or keep transparent */
}

.faq-item.active .faq-header h3 {
    color: #006DB7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #006DB7;
}

.faq-item.active .faq-content {
    max-height: 200px;
    /* Adjust as needed */
    background-color: #222224;
}

/* CTA Section Styles */
.cta-section {
    text-align: center;
}

.cta-content {
    background-image: url('images/ctabg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 80px 40px;
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content h2 {

    margin-bottom: 15px;
}

.cta-desc {

    margin-bottom: 15px;
}

.cta-subtext {
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 18px 32px;
    background-color: #fff;
    color: #006DB7;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



/* SEO Links Section Styles */
.seo-links-section {
    padding: 100px 50px 50px;
    background-color: #fff;
    border-top: 1px solid #eee;
    color: #333;
    /* Override general dark theme text color */
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.seo-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.seo-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-column ul li {
    margin-bottom: 12px;
}

.seo-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    transition: color 0.3s ease;
    line-height: 1.5;
    display: block;
}

.seo-column ul li a:hover {
    color: #006DB7;
}

.show-more-container {
    text-align: center;
    margin-top: 20px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #006DB7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.show-more-btn svg {
    transition: transform 0.3s ease;
}

.show-more-btn:hover {
    color: #004a7c;
}

.show-more-btn:hover svg {
    transform: translateY(2px);
}

/* Services Overview Styles */
.services-overview {
    background-color: #000;
    color: #fff;
}

.services-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.services-content {
    flex: 1;
    position: sticky;
    top: 100px;
}

.services-content h2 {

    text-align: left;
}



.services-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #2f2f33;
    padding: 18px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card.active {
    background-image: url('images/blue-squre.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0%;

}

/* Why Choose Section Styles */
.why-choose {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-bottom: 100px;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/whychoose-bg.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.25;
    /* Increased opacity for better visibility */
    z-index: 1;
}

.why-choose .containerf {
    position: relative;
    z-index: 2;
}

.why-choose h2 {
    position: relative;
    z-index: 2;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 auto;
}

.why-card {
    background: rgba(47, 47, 51, 0.4);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 20px;
    padding: 12px;
    text-align: left;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}



.why-card:hover {
    background: radial-gradient(31.37% 31.37% at 100% 0%, rgba(225, 223, 255, 0.2) 0%, rgba(27, 19, 44, 0) 100%), linear-gradient(180deg, #006DB7 0%, #003051 100%);
    backdrop-filter: blur(59.658px);
    transform: translateY(-5px);
}

.why-icon {
    background: transparent;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;

    svg {
        width: 50px;
        height: 50px;
    }
}

.why-card:hover .why-icon {
    background: #fff;

}

.why-card:hover .why-icon svg {
    filter: invert(31%) sepia(100%) saturate(1636%) hue-rotate(181deg) brightness(90%) contrast(104%);
}

.why-card h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    letter-spacing: 0%;

}

/* Process Section Styles */
.process {
    color: #fff;
    text-align: center;
}



.process-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 50px auto 0;

}

.process-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: #1c1c1e;
    padding: 40px;
    border-radius: 20px;
    gap: 40px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-item:hover {
    background: linear-gradient(90deg, #006DB7 0%, #003051 100%);
    transform: translateX(10px);
}

/* Column 1: number - fixed width for consistent alignment */
.process-num {
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0%;
    flex: 0 0 90px;
    min-width: 90px;
}

/* Column 2: heading - fixed width so heading column aligns across all rows */
.process-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 280px;
}

/* Column 3: description - takes remaining space, clear left alignment */
.process-details {
    flex: 1;
    min-width: 0;
}

.process-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-details p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Trust Relgrow Section */
.trust-relgrow {
    color: #fff;
}

.trust-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    text-align: left;
}


.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Professional Importance Section */

.pro-header {
    text-align: center;

    p {
        margin: 50px auto;
    }
}





.pro-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.pro-image {
    flex: 1;
}

.pro-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    height: 632px;
}

.pro-list {
    flex: 1;
}

.pro-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-list li {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;

    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pro-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 20px;
}