/* =========================================
   HERO SECTION
========================================= */

.hero-section{

    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(8,15,29,0.55),
            rgba(8,15,29,0.20)
        );
        

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;

    /* leave enough space for fixed header (réduit pour supprimer l'espace vide) */
    padding-top: 100px;
    padding-bottom: 0;

}

.hero-overlay{

    position: absolute;
    inset: 0;

    /* subtle glow overlay to keep text legible */
    background:
        radial-gradient(
            circle at top right,
            rgba(247,232,139,0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(124,208,173,0.12),
            transparent 24%
        );

    z-index: 2;
    pointer-events: none;

}

.hero-content{

    position: relative;
    z-index: 4;
    color: #fff;

    

}

.hero-overlay{

    position: absolute;
    inset: 0;

    /* subtle color accents on top of the photo */
    background:
        radial-gradient(
            circle at top right,
            rgba(247,232,139,0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(123,200,164,0.08),
            transparent 30%
        );

    z-index: 1;

}

.hero-shape{

    position: absolute;
    border-radius: 50%;
    filter: blur(80px);

}

.hero-shape-1{

    width: 350px;
    height: 350px;

    background: rgba(247,232,139,0.25);

    top: -120px;
    right: -100px;

}

.hero-shape-2{

    width: 280px;
    height: 280px;

    background: rgba(107,175,146,0.2);

    bottom: -80px;
    left: -100px;

}

.hero-content{

    position: relative;
    z-index: 3;

    color: #fff;

}

.hero-badge{

    display: inline-flex;
    align-items: center;

    padding: 12px 22px;

    border-radius: 60px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    color: #fff;

    margin-bottom: 30px;

    backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.35);

}

.hero-title{

    font-size: 56px;
    font-weight: 800;

    line-height: 1.05;

    color: #fff;

    margin-bottom: 24px;

    font-family: 'Manrope', sans-serif;

    text-shadow: 0 10px 30px rgba(0,0,0,0.55);

    transform-origin: left center;

}

.hero-description{

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);

    margin-bottom: 36px;

    max-width: 680px;

}

.hero-trust h3,
.hero-trust p {
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-buttons{

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 60px;

}

/* =========================================
   BUTTONS
========================================= */

.btn-secondary-custom{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 30px;

    border-radius: 60px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.08);

    color: #fff;

    backdrop-filter: blur(10px);

    transition: 0.4s ease;

    font-weight: 600;

}

.btn-secondary-custom:hover{

    background: #fff;
    color: #1D3557;

}

/* =========================================
   TRUST
========================================= */

.hero-trust{

    display: flex;
    gap: 40px;
    flex-wrap: wrap;

}

.trust-item h3{

    font-size: 42px;
    font-weight: 800;

    color: #F7E887;

}

.trust-item p{

    color: rgba(255,255,255,0.8);

}

/* =========================================
   SIMULATOR CARD
========================================= */

.simulator-card{

    position: relative;

    padding: 36px 34px;

    border-radius: 26px;

    /* light glass card to contrast with the background image */
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.9));

    backdrop-filter: blur(14px);

    box-shadow: 0 30px 90px rgba(12,18,30,0.45);

    overflow: hidden;

    border: 1px solid rgba(29,53,87,0.06);

    transition: transform 0.6s cubic-bezier(.2,.9,.2,1), box-shadow 0.4s ease;

}

.simulator-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 40px 120px rgba(12,18,30,0.55);

}

.card-glow{

    position: absolute;

    width: 220px;
    height: 220px;

    background: radial-gradient(circle at center, rgba(247,232,139,0.18), transparent 40%);

    border-radius: 50%;

    top: -80px;
    right: -60px;

    filter: blur(40px);

}

.simulator-card h2{

    font-size: 34px;
    font-weight: 800;

    margin-bottom: 10px;

    color: #1D3557;

}

.simulator-card p{

    color: #6c757d;
    margin-bottom: 35px;

}

.form-group-custom{

    margin-bottom: 25px;

}

.form-group-custom label{

    display: block;
    margin-bottom: 12px;

    font-weight: 600;
    color: #1D3557;

}

.form-control-custom{

    width: 100%;
    height: 56px;

    border-radius: 12px;

    border: 1px solid rgba(29,53,87,0.08);

    padding: 0 18px;

    outline: none;

    transition: 0.28s ease;

    background: #fff;

}

.form-control-custom:focus{

    border-color: rgba(247,232,139,0.9);

    box-shadow: 0 6px 30px rgba(247,232,139,0.12);

}

/* Primary button for simulator */
.btn-primary-custom{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 56px;
    padding: 0 26px;

    border-radius: 12px;

    background: linear-gradient(135deg, #F7E887, #7BC8A4);

    color: #fff;
    font-weight: 800;

    box-shadow: 0 18px 50px rgba(123,200,164,0.12);

    border: none;

    transition: transform 0.28s ease, box-shadow 0.28s ease;

}

.btn-primary-custom:hover{

    transform: translateY(-4px);

}

input[type="range"]{

    width: 100%;
    accent-color: #F7E887;

}

.range-value{

    margin-top: 12px;

    font-weight: 700;
    color: #1D3557;

}

.simulation-results{

    background: #f8f9fa;

    border-radius: 25px;

    padding: 30px;

    margin: 30px 0;

}

.result-item{

    margin-bottom: 20px;

}

.result-item:last-child{
    margin-bottom: 0;
}

.result-item span{

    display: block;

    margin-bottom: 8px;

    color: #6c757d;

}

.result-item h3{

    font-size: 42px;
    color: #F7E887;
    font-weight: 800;

}

.result-item h4{

    font-size: 28px;
    font-weight: 700;

    color: #1D3557;

}

/* =========================================
   STATS SECTION
========================================= */

.stats-section{

    padding: 0 0 24px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    margin-top: 10px;
}

/* Force a horizontal, scrollable row for stats with centered cards */
.stats-section .row{
    display: flex;
    gap: 26px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.stats-card{

    flex: 0 0 260px;
    min-width: 260px;
    text-align: center;
    padding: 34px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(248,249,250,0.95));
    border: 1px solid rgba(29,53,87,0.06);
    box-shadow: 0 20px 60px rgba(13,24,40,0.06);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), box-shadow 0.45s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(247,232,139,0.06), transparent 20%);
    pointer-events: none;
}

.stats-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 90px rgba(13,24,40,0.12);
}

.stats-icon{
    width: 86px;
    height: 86px;
    margin: 0 auto 18px auto;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(247,232,139,0.18), rgba(28,61,86,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(247,232,139,0.18);
}

.stats-icon svg{
    width: 38px;
    height: 38px;
    color: #0f2b24;
}

.stats-card h2{
    font-size: 42px;
    font-weight: 900;
    color: #0f2b24; /* deep tone for contrast */
    margin-bottom: 8px;
}

.stats-card p{
    color: #6c757d;
    font-size: 15px;
}

/* small scrollbar reset for aesthetics */
.stats-section .row::-webkit-scrollbar{ height:8px }
.stats-section .row::-webkit-scrollbar-thumb{ background: rgba(13,24,40,0.06); border-radius:8px }

/* entrance micro animation fallback */
@keyframes statsFadeUp{
    from{ transform: translateY(18px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}
.stats-card{ animation: statsFadeUp 0.9s ease both; }




/* =========================================
   SECTION HEADER
========================================= */

.section-header{

    margin-bottom: 70px;

}

.section-subtitle{

    display: inline-block;

    margin-bottom: 15px;

    color: #F7E887;

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.section-title{

    font-size: 56px;
    font-weight: 800;

    color: #1D3557;

    margin-bottom: 20px;

}

.section-description{

    max-width: 700px;

    margin: auto;

    color: #6c757d;

    line-height: 1.9;

}

.company-section{
    padding: 120px 0;
}

.company-section .row{
    align-items: flex-start;
}

.company-section .company-image-wrapper{
    max-width: 520px;
    margin-left: 0;
    margin-bottom: 40px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(17,25,39,0.08);
    border: 1px solid rgba(13,24,40,0.06);
}

.company-section .company-image-wrapper img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.company-section .company-content{
    max-width: 620px;
    margin-left: 0;
    text-align: left;
}

.company-section .company-content .section-title{
    margin-bottom: 24px;
    line-height: 1.05;
}

.company-section .company-content .section-description{
    margin: 0 0 24px;
    max-width: 100%;
}

.company-section .company-features{
    display: grid;
    gap: 16px;
    margin: 32px 0 28px;
}

.company-section .feature-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(247,232,139,0.12);
    border: 1px solid rgba(247,232,139,0.25);
    color: #1d3557;
    font-weight: 600;
}

.company-section .feature-item i{
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #F7E887;
    color: #0f1724;
    font-size: 16px;
}

.company-section .btn-primary{
    align-self: flex-start;
}

@media (max-width: 992px){
    .company-section .company-image-wrapper{
        max-width: 100%;
    }
    .company-section .company-content{
        max-width: 100%;
    }
}

@media (max-width: 768px){
    .company-section .company-image-wrapper{
        margin-bottom: 24px;
    }
    .company-section .company-content{
        width: 100%;
        padding-left: 0;
    }
}

/* =========================================
   SERVICES
========================================= */
.services-section{

    padding: 120px 0;
    background: linear-gradient(180deg, #fbfdff, #f8f9fb);

}

.service-card{

    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(.2,.9,.2,1), box-shadow 0.6s ease;
    box-shadow: 0 30px 80px rgba(10,20,30,0.06);
    border: 1px solid rgba(13,24,40,0.04);
    display: flex;
    flex-direction: column;

}

.service-card:hover{

    transform: translateY(-18px);
    box-shadow: 0 45px 140px rgba(10,20,30,0.12);

}

.service-image{

    height: 360px;
    position: relative;
    overflow: hidden;

}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(.2,.9,.2,1);
    transform-origin: center;
}

.service-image::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,15,29,0.08), rgba(247,232,139,0.04));
    mix-blend-mode: overlay;
    pointer-events: none;
}

.service-card:hover .service-image img{
    transform: scale(1.06) translateY(-4px);
}

.service-content{

    padding: 32px 36px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.service-content h3{
    font-size: 22px;
    font-weight: 800;
    color: #0f2b24;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-content p{
    color: #6c757d;
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15px;
}

.service-content a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(245,224,120,1));
    color: #0f1724;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(247,232,139,0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-content a:hover{
    transform: translateY(-4px);
}

@media (max-width: 991px){
    .service-image{ height: 260px; }
}

@media (max-width: 575px){
    .service-image{ height: 200px; }
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section{

    padding: 120px 0;

    background: #fff;

}

.testimonial-card{

    padding: 40px;

    border-radius: 30px;

    background: #fff;

    box-shadow: 0 15px 60px rgba(0,0,0,0.08);

    transition: 0.4s ease;

}

.testimonial-card:hover{

    transform: translateY(-10px);

}

.testimonial-stars{

    color: #ffc107;

    font-size: 22px;

    margin-bottom: 20px;

}

.testimonial-card p{

    line-height: 1.9;

    color: #495057;

    margin-bottom: 30px;

}

.testimonial-user{

    display: flex;
    align-items: center;
    gap: 15px;

}

.user-avatar{

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #d9d9d9;

}

.testimonial-user h5{

    margin-bottom: 4px;
    color: #1D3557;

}

.testimonial-user span{

    color: #6c757d;

}

/* =========================================
   PARTNERS
========================================= */

.partners-section{

    padding: 120px 0;

    background: #f8f9fa;

}

.partners-wrapper{

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 30px;

}

.partner-logo{

    height: 120px;

    border-radius: 25px;

    background: #d9d9d9;

}

/* =========================================
   CTA
========================================= */

.cta-section{

    padding-bottom: 120px;

    background: #f8f9fa;

}

.cta-box{

    position: relative;

    padding: 70px;

    border-radius: 40px;

    overflow: hidden;

    background:
    linear-gradient(
        135deg,
        #1D3557,
        #F7E887
    );

}

.cta-box h2{

    color: #fff;

    font-size: 52px;
    font-weight: 800;

    margin-bottom: 15px;

}

.cta-box p{

    color: rgba(255,255,255,0.8);

    font-size: 18px;

}

.btn-light-custom{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 60px;

    padding: 0 35px;

    border-radius: 60px;

    background: #fff;

    color: #1D3557;

    font-weight: 700;

}

.btn-light-custom:hover{

    transform: translateY(-5px);

    color: #1D3557;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .hero-title{
        font-size: 52px;
    }

    .section-title{
        font-size: 42px;
    }

    .partners-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box{
        text-align: center;
    }

}

@media(max-width:768px){

   

    .hero-title{
        font-size: 42px;
    }

    .hero-badge{text-shadow: 0 2px 10px rgba(0,0,0,0.28) !important;}

    .hero-description{
        font-size: 16px;
        text-shadow: 0 3px 14px rgba(0,0,0,0.42) !important;
    }

    .hero-trust h3,
    .hero-trust p{

        text-shadow: 0 2px 12px rgba(0,0,0,0.35) !important;

    }

    .simulator-card{
        margin-top: 60px;
    }

    .section-title{
        font-size: 34px;
    }

    .cta-box{
        padding: 45px 30px;
    }

    .cta-box h2{
        font-size: 36px;
    }

}

/* Entrance animations (CSS fallback/enhancement to GSAP) */
@keyframes fadeUp{
    from{ transform: translateY(18px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}

.hero-badge{ animation: fadeUp 0.9s cubic-bezier(.2,.9,.2,1) both; font-size: 10px; font-weight: 400; padding: 8px 18px;}
.hero-title{ animation: fadeUp 1.1s cubic-bezier(.2,.9,.2,1) 0.15s both; }
.hero-description{ animation: fadeUp 1.1s cubic-bezier(.2,.9,.2,1) 0.3s both; }
.hero-buttons{ animation: fadeUp 1s cubic-bezier(.2,.9,.2,1) 0.45s both; }
.simulator-card{ animation: fadeUp 1.2s cubic-bezier(.2,.9,.2,1) 0.5s both; }

/* Responsive hero adjustments */
@media (max-width: 991px){

    .hero-section{ padding-top: 0px; padding-bottom: 60px; }

    .hero-title{ font-size: 40px; }

    .simulator-card{ margin-top: 28px; }

}

@media (max-width: 575px){

    .hero-title{ font-size: 28px; }

    .hero-description{ font-size: 15px; max-width: 100%; }

    .hero-buttons{ gap: 12px; }

}

/* Responsive tweaks for stats & services */
@media (max-width: 991px){

    .stats-section .row{
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-card{
        flex: 0 0 46%;
        min-width: auto;
        margin-bottom: 18px;
    }

    .service-card{ margin: 0 auto; }

}

@media (max-width: 575px){

    .stats-card{ flex: 0 0 100%; }

    .service-image{ height: 160px; }

    .service-content{ padding: 20px; }

    .service-content h3{ font-size: 18px; }

}

/* Slight typography refinements for premium look */
.service-content h3, .section-title, .hero-title{
    letter-spacing: -0.02em;
}

.stats-card h2{ letter-spacing: -0.01em; }






/* =========================================
   COMPANY SECTIONS
========================================= */

.company-section{

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #ffffff;

}

.company-section-alt{

    background: #f8fafc;

}

/* =========================================
   IMAGE SIDE
========================================= */

.company-image-wrapper{

    position: relative;

    width: 100%;
    height: 100%;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.12);

    transition: 0.5s ease;

}

.company-image-wrapper:hover{

    transform: translateY(-8px);

    box-shadow:
    0 35px 90px rgba(0,0,0,0.18);

}

.company-image-wrapper img{

    width: 100%;
    height: 620px;

    object-fit: cover;

    display: block;

    transition: 0.6s ease;

}

.company-image-wrapper:hover img{

    transform: scale(1.05);

}

/* =========================================
   CONTENT SIDE
========================================= */

.company-content{

    position: relative;

    padding-left: 40px;

}

.company-section-alt .company-content{

    padding-left: 0;
    padding-right: 40px;

}

/* =========================================
   BADGE
========================================= */

.section-badge{

    display: inline-flex;
    align-items: center;

    padding: 12px 24px;

    border-radius: 50px;

    background:
    rgba(247,232,139,0.18);

    color: #1D3557;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 28px;

    letter-spacing: 0.5px;

    text-transform: uppercase;

}

/* =========================================
   TITLES
========================================= */

.section-title{

    font-size: 52px;
    font-weight: 800;

    line-height: 1.15;

    color: #1D3557;

    margin-bottom: 30px;

    letter-spacing: -1.5px;

    font-family: 'Manrope', sans-serif;

}

/* =========================================
   DESCRIPTION
========================================= */

.section-description{

    font-size: 17px;

    line-height: 1.9;

    color: #5f6b7a;

    margin-bottom: 25px;

}

/* =========================================
   FEATURES
========================================= */

.company-features{

    margin-top: 35px;
    margin-bottom: 40px;

}

.feature-item{

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

}

.feature-item i{

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        #F7E887,
        #7BC8A4
    );

    color: #fff;

    font-size: 14px;

}

.feature-item span{

    color: #1D3557;

    font-weight: 600;

    font-size: 16px;

}

/* =========================================
   STATS
========================================= */

.company-stats{

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 40px;
    margin-bottom: 40px;

}

.stat-box{

    flex: 1;

    min-width: 150px;

    padding: 28px 22px;

    border-radius: 24px;

    background: #fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.06);

    text-align: center;

    transition: 0.4s ease;

}

.stat-box:hover{

    transform: translateY(-6px);

}

.stat-box h3{

    font-size: 38px;
    font-weight: 800;

    margin-bottom: 10px;

    background:
    linear-gradient(
        135deg,
        #1D3557,
        #7BC8A4
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.stat-box p{

    color: #6c757d;

    margin: 0;

    font-size: 15px;

}

/* =========================================
   BUTTON
========================================= */

.btn-primary{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 60px;

    padding: 0 34px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #1D3557,
        #7BC8A4
    );

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: 0.4s ease;

    box-shadow:
    0 15px 35px rgba(29,53,87,0.18);

}

.btn-primary:hover{

    transform: translateY(-5px);

    color: #fff;

    box-shadow:
    0 25px 45px rgba(29,53,87,0.25);

}

/* =========================================
   ANIMATIONS
========================================= */

.fade-left{

    animation:
    fadeLeft 1s ease forwards;

}

.fade-right{

    animation:
    fadeRight 1s ease forwards;

}

@keyframes fadeLeft{

    from{

        opacity: 0;
        transform: translateX(-60px);

    }

    to{

        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity: 0;
        transform: translateX(60px);

    }

    to{

        opacity: 1;
        transform: translateX(0);

    }

}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media(max-width:991px){

    .company-section{

        padding: 90px 0;

    }

    .company-content{

        padding-left: 0;
        padding-top: 20px;

    }

    .company-section-alt .company-content{

        padding-right: 0;

    }

    .section-title{

        font-size: 40px;

    }

    .company-image-wrapper img{

        height: 500px;

    }

    .company-stats{

        gap: 15px;

    }

}

/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media(max-width:767px){

    .company-section{

        padding: 70px 0;

    }

    .section-title{

        font-size: 32px;

        line-height: 1.3;

    }

    .section-description{

        font-size: 15px;

        line-height: 1.8;

    }

    .company-image-wrapper{

        border-radius: 24px;

    }

    .company-image-wrapper img{

        height: 320px;

    }

    .company-content{

        text-align: left;

        padding-top: 25px;

    }

    .company-stats{

        flex-direction: column;

    }

    .stat-box{

        width: 100%;

    }

    .btn-primary{

        width: 100%;

    }

}