* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

h2 {
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 1px;
}

h3 {
    font-size: 25px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.alt-section {
    background-color: rgb(245, 244, 244);
}

banner {
   
    text-align: center;
    margin: auto;
}

.banner-container {
    position: relative;
    margin: auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 100%;
    background-image: url("../imgs/bannerimg2.jpg");
    background-position: 50%;
    background-size: cover;
    background-attachment: scroll;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
}

.banner-container::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(54, 54, 54, 0.8);
}

.banner-content {
    position: relative;
    text-align: center;
    max-width: 1280px;
    margin: auto auto;
    padding-top: 300px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 200px;
    text-transform: uppercase;
    font-size: 50px;
    color: white;
}

.banner-content h1 {
    position: relative;
    text-align: center;
    max-width: 1280px;
    margin: auto auto;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 60px;
    color: white;
}

.banner-contact-btn {
    font-size: 22px;
    padding: 16px 32px;
    margin-top: 30px;
    border-radius: 10px;
    color: white;
    background-color: #d13848;
    border: none;
    cursor: pointer;
    box-shadow: 0 9px #9a1825;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.4s ease;
}

.banner-contact-btn:hover {
    background-color: #BE1E2D;
}

.banner-contact-btn:active {
    background-color: rgb(31, 52, 53);
    box-shadow: 0 5px rgb(44, 50, 51);
    transform: translateY(4px);
}

/* #our-purpose, #save-time {
    max-width: 1280px;
    margin: 0 auto;
} */
.section-content {
    max-width: 1280px;
    margin: 0 auto;
}

.section-text {
    margin-right: 100px;
    margin-left: 100px;
}

.section-title {
    padding-bottom: 40px;
    text-align: center;
    
}

.section-synopsis {
    font-size: 20px;
    line-height: 30px;
}

.connections {
    display: flex;
    justify-content: space-evenly;
}

.connection-card {
    text-align: center;
    background-color: #ffffff;
    border: solid 1px rgb(225, 222, 222);
    padding: 24px 16px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.connection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.connection-name {
    padding-top: 14px;
    margin: 0 4px;
    font-size: 15px;
    font-weight: 600;
    user-select: none;
    color: #222;
    line-height: 20px;
}

.connection-logo {
    width: 100%;
    height: 70px;
    object-fit: contain;
    object-position: center;
}

.bot-row-connections {
    padding-top: 60px;
}

/* Banner subtext and dual buttons */
.banner-subtext {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    line-height: 32px;
    text-transform: none;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.banner-rfq-btn {
    background-color: transparent !important;
    border: 2px solid white !important;
    box-shadow: none !important;
    color: white !important;
}

.banner-rfq-btn:hover {
    background-color: rgba(255,255,255,0.15) !important;
}

/* Connections grid — wrapping flex */
.connections-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.connections-grid .connection-card {
    width: 170px;
    min-width: 150px;
    max-width: 190px;
    flex: 0 0 auto;
}

.connection-card--dark {
    background-color: #1c2b3a !important;
    border-color: #1c2b3a !important;
}

.connection-card--dark .connection-name {
    color: #ffffff;
}

.connection-card--dark:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.why-choose-item p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.why-choose-icon {
    color: #d13848;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Stats strip */
#stats-section {
    background-color: #1c2b3a;
    padding-top: 50px;
    padding-bottom: 50px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.stat-check {
    color: #d13848;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-content {
        width: 100%;
    }
    .section-text {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }
    .banner-content {
        overflow-x: hidden;
    }
    .copyright-menu {
        position: absolute;
        bottom: 0;
    }
    .connections {
        display: block;
        margin-right: 30px;
        margin-left: 30px;
    }
    .bot-row-connections {
        padding-top: 0 !important;
    }
    .connection-card {
        margin: 40px;
        width: fit-content;
    }
    .connections-grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0 10px;
    }
    .connections-grid .connection-card {
        width: 40%;
        min-width: 140px;
        margin: 8px;
    }
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    .stats-grid {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');