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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}


.pb-1 {
    padding-bottom: 2rem !important;
    display: block;
}
/* First Section Styles */

/* Other Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Third Section Styles */

.section-title {
    font-size: 2rem;
    text-align: center;
    display: block;
    color: #9d2e9d;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Lending Journey Section Styles */

ul {
    width: 100%;
    list-style-type: none; /* Remove default bullets for all <ul> */
    padding-left: 0; /* Reset padding */
    margin: 0;
}

ul > li {
    position: relative;
    padding-left: 20px; /* Indent for custom bullet */
    margin-bottom: 10px;
}

ul > li:before {
    content: "•"; /* Single bullet */
    position: absolute;
    left: 0; /* Align bullet with the text */
    color: #6a0dad; /* Custom color for the bullet */
    font-size: 1.2em; /* Adjust size if needed */
}

ul ul > li {
    padding-left: 30px; /* Additional indent for nested items */
    margin-bottom: 5px; /* Reduce spacing for nested items */
}

ul ul > li:before {
    content: "–"; /* A smaller dash or different bullet for nested items */
    left: 10px; /* Align dash */
    color: #6a0dad;
    font-size: 1em;
}

/* Individual Card Styling */

/* Problem Solution Section */

 .solution-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quote {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

/* Industry Challenges Section */

.emphasis-text {
    color: #FF7F00;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(255, 127, 0, 0.2);
}

.talk-to-us {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.talk-to-us:hover {
    background-color: #359686;
}

/* Hero Features Styles */

/* Responsive adjustments */

/* About You Section */

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-top: -2em;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Deliver Section */

.section-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
}

/* Hero Section Styles */
.hero-section {
    min-height: 90vh;
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    position: relative;
}

.hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1F1F1F;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.hero-text p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.dashboard-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: scale(1.02);
}

@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

.solution-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.solution-cta .talk-to-us {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.solution-cta .talk-to-us:hover {
    background-color: #359686;
    transform: translateY(-2px);
}

.team-section {
    padding: 6rem 0;
    background-color: #ffffff;
    scroll-margin-top: 100px;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(33.333% - 1.67rem);
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-member-title {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .team-member {
        flex: 0 1 75%;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-section .section-title {
        font-size: 2rem;
    }

    .team-section .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .team-member {
        flex: 0 1 100%;
        padding: 1.5rem;
    }
}

.speak-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.speak-link:hover {
    color: #40B3A2;
}

/* Blog Section Styles */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    color: #40B3A2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid #40B3A2;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background-color: rgba(64, 179, 162, 0.1);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #2c3e50;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #40B3A2;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: #2c8f80;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-blogs:hover {
    background-color: #359686;
    transform: translateY(-2px);
}

.view-all-blogs i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-blogs:hover i {
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Strategic Priorities Card Styles */

/* Priority item specific colors */

/* Responsive adjustments for the strategic priorities card */

/* Your Growth, Our Focus Section Styles */
.main-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.main-section.light {
    background-color: #ffffff;
}

.main-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px 0 0 2px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: #00B8A9;
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1F1F1F;
    margin: 0;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Theme colors using brand palette */
.deals-theme::before {
    background-color: #00B8A9;
}

.relationships-theme::before {
    background-color: #FFCF56;
}

.deals-moving-theme::before {
    background-color: #FF6F61;
}

.future-theme::before {
    background-color: #4D4D4D;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .help-card {
        padding: 1.5rem;
    }
    
    .help-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-section {
        padding: 3rem 0;
    }
    
    .main-section .section-title {
        font-size: 2rem;
    }
    
    .help-card {
        padding: 1.25rem;
    }
    
    .help-card h3 {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* Alternative Your Growth, Our Focus Section - Different Design */

/* Alternative theme colors */

/* Responsive adjustments for alternative design */



.work-steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1em 2rem;
}

.work-step {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 250px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-we-work-content .work-step {
    max-width: 100%;
}

.how-we-work-content .work-step * {
    text-align: left !important;
}

.work-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-number:hover {
    transform: scale(1.1);
}

.step-number.green {
    background-color: #00b8a9;
}

.step-number.blue {
    background-color: #FECD57;
}

.step-number.orange {
    background-color: #ED6A5A;
}

.step-number.purple {
    background-color: #555555;
}

.work-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: center;
}

.work-step p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.highlight {
    background-color: #D0E0F0;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .work-steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .work-step {
        max-width: 400px;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin: 0 auto 1.5rem auto;
    }
    
    .work-step h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .work-steps-grid {
        gap: 2rem;
        max-width: 600px;
        padding: 1.5rem 1rem;
    }
    
    .work-step {
        padding: 0.5rem;
        max-width: 100%;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .work-step h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .work-step h3 {
        font-size: 1.1rem;
    }
    
    .work-step p {
        font-size: 0.95rem;
    }
}

/* Work CTA Styles */
.work-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 0;
}

.cta-text {
    font-size: 1.5rem;
    color: #1F1F1F;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.schedule-call-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #00B8A9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 184, 169, 0.3);
}

.schedule-call-btn:hover {
    background-color: #009688;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 184, 169, 0.4);
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .work-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .schedule-call-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.work-best-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    align-items: flex-start;
}

.work-best-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.work-best-point {
    padding: 0;
    border: none;
    background: none;
    transition: none;
}

.work-best-point:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.work-best-point h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.work-best-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.work-best-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-best-img {
    max-width: 100%;
    height: auto;
}

.work-best-cta {
    text-align: center;
    margin-top: 2rem;
}

.work-best-cta p {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-statement {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.work-best-cta .talk-to-us {
    display: inline-block;
    background: #40B3A2;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.work-best-cta .talk-to-us:hover {
    background: #00B8A9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 179, 162, 0.3);
}

@media (max-width: 768px) {
    .work-best-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .work-best-image {
        max-width: 100%;
        min-height: 300px;
    }
    
    .work-best-point h3 {
        font-size: 1.1rem;
    }
}


.lenders-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.lenders-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.lenders-visual {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.lenders-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lender-feature {
    text-align: left;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.lender-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #40B3A2;
}



.lender-feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: left;
}

.lender-feature p {
    font-size: 0.95rem;
    color: #4D4D4D;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .lenders-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .lenders-image {
        max-width: 100%;
        order: 2;
    }
    
    .lenders-features {
        order: 1;
    }
}

@media (max-width: 768px) {
    
    .lender-feature {
        padding: 1rem;
    }
    
    .lender-feature h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .lender-feature h3 {
        font-size: 1.1rem;
    }

    .lender-feature p {
        font-size: 0.9rem;
    }
}

/* Section Separators */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    margin-top: -2rem;
}

.section-divider::before {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #40B3A2 50%, transparent 100%);
    flex: 1;
    max-width: 300px;
}

.section-divider::after {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #40B3A2 50%, transparent 100%);
    flex: 1;
    max-width: 300px;
}

.section-divider .divider-icon {
    width: 50px;
    height: 50px;
    background: #40B3A2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(64, 179, 162, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 520px;
    justify-self: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.testimonial-author-section {
    flex-shrink: 0;
    text-align: center;
}

.testimonial-author-image {
    margin-bottom: 1rem;
}

.author-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.testimonial-author-info {
    text-align: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.testimonial-quote-section-title {
    text-align: center;
    padding-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #40B3A2;
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: serif;
}





@media (max-width: 768px) {
    .testimonials-grid {
        gap: 1.5rem;
        margin: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .testimonial-quote::before {
        font-size: 2.5rem;
        left: -0.5rem;
        top: -0.5rem;
    }
}

/* Testimonial CTA Section */

/* Operations Page Styles */
.operations-hero {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.operations-cta-section {
    padding: 5rem 0;
    text-align: center;
}

.operations-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.operations-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .operations-cta h2 {
        font-size: 2rem;
    }
    
    .operations-cta p {
        font-size: 1.1rem;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-grid .solution-card:nth-child(4) {
    grid-column: 2;
    justify-self: center;
    max-width: 400px;
}

.solution-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #40B3A2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: white;
    font-size: 2rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #40B3A2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: #00B8A9;
    transform: translateX(4px);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid .solution-card:nth-child(4) {
        grid-column: 1;
        justify-self: stretch;
        max-width: none;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #2D2D2D;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-tag i {
    color: #666;
    font-size: 0.8rem;
}

.about-hero .hero-title {
    font-size: 2.75rem;
    font-weight: 500;
    color: #1F1F1F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-title .emphasis-text {
    color: #40B3A2;
    font-weight: 600;
}

.about-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #2D2D2D;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 4em;
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1F1F1F;
    border: 2px solid #e9ecef;
}

.cta-button.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 2rem 0;
        min-height: auto;
    }
    
    .about-hero .container {
        padding: 0 1rem;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* How We Got Here Section */
.how-we-got-here {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.how-we-got-here .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-we-got-here .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.how-we-got-here .content-wrapper {
    max-width: 100%;
}

.how-we-got-here .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    text-align: left;
}

.how-we-got-here .content-wrapper p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .how-we-got-here {
        padding: 4rem 0;
    }
    
    .how-we-got-here .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .how-we-got-here .content-wrapper p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.what-we-believe {
    background-color: #ffffff;
    padding: 80px 0 0 0;
}

.what-we-believe .section-header {
    text-align: center;
    margin-bottom: 60px;
}



.what-we-believe .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.what-we-believe .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.principle-icon {
    margin-bottom: 25px;
}

.principle-icon i {
    font-size: 2.5rem;
    padding: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: inline-block;
}

.principle-card:nth-child(1) .principle-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.principle-card:nth-child(2) .principle-icon i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.principle-card:nth-child(3) .principle-icon i {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.principle-card:nth-child(4) .principle-icon i {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
}

.principle-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.principle-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principle-card {
        padding: 30px 20px;
    }
    
    .what-we-believe .section-title {
        font-size: 2rem;
    }
}

.how-we-work-section {
    padding: 80px 0 0 0;
    background-color: #f8f9fa;
}

.how-we-work-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-we-work-text {
    flex: 1;
    text-align: left;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 2.0;
    margin: 0;
}

.how-we-work-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .how-we-work-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .how-we-work-text {
        max-width: 100%;
    }
    
    .how-we-work-text .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .work-steps {
        gap: 25px;
    }
    
    .work-step {
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.smart-dropdown {
    min-width: 800px;
    padding: 2rem;
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.dropdown-column {
    flex: 1;
    padding: 0 1rem;
}

.dropdown-column:first-child {
    padding-left: 0;
}

.dropdown-column:last-child {
    padding-right: 0;
}

.dropdown-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    text-decoration: none;
    color: inherit;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.dropdown-icon i {
    color: #40B3A2;
    font-size: 1.2rem;
}

.operations-item .dropdown-icon i {
    color: #f39c12;
}

.revenue-item .dropdown-icon i {
    color: #40B3A2;
}

.dropdown-item-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.dropdown-column:last-child .dropdown-item-content h5 {
    text-align: center;
    font-size: 0.9rem;
}

.dropdown-column:last-child .dropdown-icon {
    width: 32px;
    height: 32px;
}

.dropdown-column:last-child .dropdown-icon i {
    font-size: 1rem;
}

.dropdown-item-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.nav-dropdown:hover .dropdown-content {
    display: flex;
}

/* Also open dropdown when .open is set via JS (desktop) */
.nav-dropdown.open .dropdown-content {
    display: flex;
}

@media (max-width: 768px) {
    /* Hide only the Solutions trigger on mobile; keep submenu visible */
    .nav-dropdown > .nav-link { display: none !important; }
    .nav-dropdown .dropdown-content { display: flex !important; flex-direction: column; width: 100%; }
    .smart-dropdown {
        min-width: auto;
        width: 100%;
        left: 0;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        position: static;
        transform: none;
    }
    /* Ensure dropdown opens as flex on mobile */
    .nav-dropdown.open .dropdown-content { display: flex; flex-direction: column; width: 100%; }
    
    .dropdown-column {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    /* Hide headers inside mobile submenu to keep styling consistent */
    .dropdown-section-title {
        display: none;
    }
    
    .dropdown-item {
        padding: 0.75rem 0;
        margin: 0;
        align-items: center;
    }
    
    .dropdown-icon {
        width: 35px;
        height: 35px;
    }
    
    .dropdown-icon i {
        font-size: 1rem;
    }
    
    .dropdown-item-content h5 {
        font-size: 1rem;
        font-weight: 500;
    }
    
    .dropdown-item-content p {
        display: none;
    }

    /* Make last column headings consistent and left-aligned */
    .dropdown-column:last-child .dropdown-item-content h5 {
        text-align: left;
        font-size: 1rem;
    }

    /* Remove hover motion that could cause jank on mobile */
    .dropdown-item:hover {
        background-color: transparent;
        transform: none;
    }
}

/* Center Alignment Utilities */

/* Responsive center alignment */

