/* Custom Fonts */
@import url("https://use.typekit.net/qoi4oqs.css");
/* DIN 2014 */

:root {
    --bg-dark: #05080a;
    --card-glass: rgba(255, 255, 255, 0.03);
    --text-white: #ffffff;
    --text-dim: #b0b0b0;
    --font-main: "din-2014", sans-serif;
}

.otology-section {
    background-color: var(--bg-dark);
    padding: 160px 0;
    font-family: var(--font-main);
    color: var(--text-white);
    overflow: hidden;
}

/* Header Styling */
.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-intro h1 span {
    color: #0073ba;
}

.section-intro p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 10px auto;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Slick Card Design */
.bento-card {
    background: var(--card-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    min-height: 320px;
}

.bento-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 115, 186, 0.1);
}

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* Visual Side with Hover Animation */
.card-visual {
    flex: 0.8;
    position: relative;
    background: #0a0e12;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.card-visual img {
   
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.6s ease;
}

.bento-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Modern Button */
.btn-slick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-slick span {
    background: var(--accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .section-intro h1 {
        font-size: 2.5rem;
    }
}