/* Font Declarations */
@font-face {
    font-family: 'SatoshiRegular';
    src: url('fonts/satoshi/Satoshi-Regular.woff2');
}

@font-face {
    font-family: 'SatoshiBold';
    src: url('fonts/satoshi/Satoshi-Bold.woff2');
}

@font-face {
    font-family: 'SatoshiMedium';
    src: url('fonts/satoshi/Satoshi-Medium.woff2');
}

:root {
    --sec-conn-bg: #ffffff;
    --sec-conn-text-dark: #111111;
    --sec-conn-text-gray: #555555;
    --sec-conn-radius: 20px;
}

/* Section Wrapper */
.sec-conn-wrapper {
    /* min-height: 100vh; */
    background-color: var(--sec-conn-bg);
    font-family: 'SatoshiRegular', sans-serif;
    padding-top: 96px;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
}

.sec-conn-container {
    width: 100%;
    margin: 0 auto;
}

/* Header centered like your screenshot */
.sec-conn-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0px 24px;
}

.sec-conn-title {
    font-family: 'SatoshiBlack';
    font-size: 2.2rem;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    /* color: #2B2B2B; */
    color: #000;
    font-size: 22px;
}

.sec-conn-description {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    /* color: #4C4C4C; */
    color: #000;
    font-family: SatoshiRegular;
    font-size: 16px;
    text-align: center;
}

/* Grid: 1 Column Mobile */
.sec-conn-grid {
    --col-width: 90%;
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    grid-auto-columns: var(--col-width);
}

/* Card Design */
.sec-conn-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-position: top;
}

.sec-conn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: #ffffff;
}

.sec-conn-tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'SatoshiMedium';
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sec-conn-info h3 {
    font-family: 'SatoshiBold';
    font-size: 1.4rem;
    margin: 0 0 8px 0;
}

.sec-conn-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

/* .talk-now-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-family: 'SatoshiMedium', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    border-radius: 50px;
    margin-top: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    width: fit-content;
} */

/* .talk-now-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #2b263f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

.sec-conn-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
}

@media (min-width: 375px) {


    .sec-conn-title {
        font-size: 26px;
    }

    .sec-conn-description {
        font-size: 18px;
    }

}

@media (min-width: 768px) {
    .sec-conn-title {
        font-size: 2.8rem;
    }

    .sec-conn-grid {
        --col-width: 35%;
    }

    .sec-conn-header {
        padding: 0px 54px;
    }
}

@media (min-width: 1024px) {
    .sec-conn-title {
        font-size: 32px;
    }

    .sec-conn-grid {
        --col-width: 24%;
    }

    .sec-conn-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
}

@media (min-width: 1600px) {
    .sec-conn-grid {
        --col-width: 15%;
    }
}

@media (max-width: 480px) {
    .talk-now-btn {
        width: 100%;
        padding: 10px 0;
    }
}