
    :root {
        --brand-navy: #001A72;
        --brand-teal: #00AF66;
          --accent-lime: #D9F99D; /* Similar to the lime in the inspo image */
       --text-muted: #64748b;
    --text-main: #1A1A1B;
    }

    .about-section {
        padding: 90px 5%;
        background: #ffffff;
        display: flex;
        justify-content: center;
    }

    .about-container {
        max-width: 1300px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    /* Left Side: Content */
    .about-label {
        color: var(--sky-blue);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
    }

    .about-heading {
        font-size: 3rem;
        font-weight: 700;
        color: var(--brand-navy);
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .about-heading span.heart {
        color: var(--brand-teal);
    }

    .about-text {
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .about-text.highlight {
        color: var(--brand-navy);
        font-style: oblique;
        font-weight: 600;
        border-left: 4px solid var(--brand-teal);
        padding-left: 10px;
    }

    /* Trust List */
    .trust-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        color: var(--brand-navy);
        margin-bottom: 15px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        background: rgba(0, 175, 102, 0.1);
        color: var(--brand-teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }

    /* Right Side: 3D Visuals */
    .visual-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .glow-bg {
        position: absolute;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        z-index: 1;
    }

    .device-stack {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 400px;
    }

    .phone-main {
        width: 90%;
        height: 90%;
        border-radius: 40px;
        /* box-shadow: 0 50px 100px -20px rgba(0, 26, 114, 0.3); */
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        transition: 0.5s ease;
    }

    .phone-secondary {
        position: absolute;
        width: 70%;
        top: 60px;
        right: -20px;
        border-radius: 40px;
        box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
        transform: perspective(1000px) rotateY(15deg) translateZ(50px);
        opacity: 0.9;
        z-index: -1;
    }

    .visual-wrapper:hover .phone-main {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    }

    @media (max-width: 968px) {
        .about-container { grid-template-columns: 1fr; text-align: left; }
        .about-text.highlight { border-left: none; border-top: 4px solid var(--brand-teal); padding: 20px 0 0 0; }
        .trust-list { display: inline-block; text-align: left; }
        .about-heading {
    font-size: 2.5rem;
}
    }

    .wedo-edge{
        padding: 40px 5%;
         background:
        linear-gradient(135deg, #0a1f44, #071633),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    }

    .wedo-edge-header{
        max-width: 800px;
        color: white;
    }
    .wedo-edge-header h2{
       color: white !important;
    }

     .competitive-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr; /* Central image has priority */
        gap: 30px;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

     /* feature card styles (dark green on dark green -> soft gray [cite: 2026-02-10]) */
    .competitive-feature-column {
        display: flex;
        flex-direction: column !important;
        gap: 30px;
    }

   .competitive-feature-card{
        background: rgba(255, 255, 255, 0.03); /* dark layout, transparent card */
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 25px;
        text-align: left;
        width: 100% !important;
        transition: 0.3s;
    }

   .competitive-feature-card:hover {
        border-color: rgba(59, 130, 246, 0.3);
        transform: translateY(-5px);
    }

    /* Icon styles (orange -> blue [cite: 2026-02-10]) */
    .competitive-feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(59, 130, 246, 0.1);
        color: var(--sky-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

   .competitive-feature-card h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: white;
    }

   .competitive-feature-card p {
        font-size: 0.9rem;
        color: #cbd5e1;
        line-height: 1.5;
    }

    /* Central image with traveler theme */
    .traveler-image-container {
        position: relative;
        height: 100%;
        max-height: 500px;
        overflow: hidden;
        border-radius: 30px;
    }

    .traveler-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* The glowing halo behind the image using brand colors [cite: 2026-02-10] */
    .image-halo {
        position: absolute;
        width: 120%;
        height: 120%;
        top: -10%;
        left: -10%;
        background: radial-gradient(circle, rgba(0, 175, 102, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }

    @media (max-width: 1024px) {
        .competitive-grid { grid-template-columns: 1fr; }
        .competitive-feature-column { flex-direction: row; flex-wrap: wrap; justify-content: center; }
       .competitive-feature-card{ width: 45%; }
        .traveler-image-container { min-height: 200px; margin: 40px 0; }
    }








    .bento-section {
        padding: 80px 5%;
        background-color: #ffffffff;
        text-align: center;
    }

    .bento-header {
        margin-bottom: 30px;
    }

    .bento-header h2 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--brand-navy);
        letter-spacing: -1px;
    }

    .bento-header span.highlight {
        background: linear-gradient(120deg, var(--accent-lime) 0%, var(--accent-lime) 100%);
        background-repeat: no-repeat;
        background-size: 100% 0.3em;
        background-position: 0 80%;
    }

    /* Exact Layout Replication */
    .bento-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1.2fr;
        gap: 20px;
        max-width: 1200px;
        /* margin: 0 auto; */
    }

    .bento-card {
        border-radius: 32px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: transform 0.4s ease;
    }

    .bento-card:hover {
        transform: translateY(-5px);
    }

    /* Large Image Cards (Left & Right) */
    .card-img {
        height: 470px;
        color: white;
        text-align: left;
        padding: 40px;
        justify-content: flex-end;
        background-size: cover;
        background-position: center;
    }

    .card-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    }

    .card-img h3, .card-img p {
        position: relative;
        z-index: 2;
    }

    .card-img h3 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
    }

    /* Center Column Styles */
    .center-col {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .card-lime {
        background-color: var(--accent-lime);
        padding: 30px;
        text-align: left;
        height: 225px;
        color: var(--brand-navy);
        justify-content: center;
    }

    .card-lime h3 {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .card-stats {
        background-color: var(--brand-navy);
        padding: 30px;
        height: 225px;
        color: white;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .stats-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .stats-number {
        font-size: 2.3rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stats-number span {
        color: var(--accent-lime);
        font-size: 1.5rem;
    }

    .customer-avatars {
        display: flex;
        margin-bottom: 20px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--brand-navy);
        margin-right: -12px;
        background-color: #ddd;
    }

    /* Floating Arrow Buttons from inspo */
    .arrow-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: white;
        color: var(--brand-navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        font-size: 1.2rem;
    }

    @media (max-width: 1024px) {
        .bento-container { grid-template-columns: 1fr; }
        .card-img { height: 400px; }
    }


     /* Vision & Mission Grid */
    .mission-vision-grid {
        padding: 60px 5%;
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
        text-align: left;
    }

    .grid-column {
        padding: 20px;
    }

    .grid-column h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .grid-column h3 i {
        color: var(--brand-teal);
        font-size: 1.6rem;
    }

    .grid-column p {
        color: #64748b;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .vertical-divider {
        background: rgba(0, 26, 114, 0.1);
        height: 80%;
    }

    /* Commitment List */
    .commitment-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .commitment-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #475569;
    }

    .commitment-item i {
        color: var(--brand-teal);
    }

     @media (max-width: 850px) {
        .mission-vision-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
        .vertical-divider { display: none; }
        
    }
