body {
    background-color: #050505;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

input,
textarea,
select {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #731209;
}

.main {
    background-color: rgb(0 0 0 / 88%);
    padding: 40px;
    border-radius: 8px;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* responsive left image: visible on small screens, hidden on md+ */
.left-responsive-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}



/* Social icon buttons (disc style like attachment) */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 0.5rem;
    align-items: center;
}

.icon-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    /* light disc */
    color: #6b6b6b;
    /* icon color */
    text-decoration: none;
    box-shadow: 10px 12px 24px rgba(15, 15, 15, 0.18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    position: relative;
}

.icon-button::after {
    /* soft long shadow similar to the attachment */
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    filter: blur(6px);
    z-index: -1;
}

.icon-button svg {
    width: 22px;
    height: 22px;
}

.icon-button svg path,
.icon-button svg circle,
.icon-button svg rect,
.icon-button svg line {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-button:hover {
    transform: translateY(-4px);
    box-shadow: 14px 18px 36px rgba(15, 15, 15, 0.22);
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Neumorphic icon grid (inspired from attachment) */
.icon-container {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    gap: 18px;
    margin-top: 18px;
    align-items: center;
    justify-content: start;
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #555;
    /* box-shadow: 6px 6px 14px #bebebe, -6px -6px 14px #ffffff; */
    transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease;
    text-decoration: none;
}

.icon:hover {
    /* subtle lift + scale on hover */
    transform: translateY(-6px) scale(1.04);
    box-shadow: 8px 14px 30px rgba(0,0,0,0.16), -6px -6px 14px #ffffff;
    box-shadow: 6px 6px 14px #bebebe, -6px -6px 14px #ffffff;
}

/* Ensure links inside icons don't show underline and preserve icon color */
.icon,
.icon:visited,
.icon:focus,
.icon:hover {
    text-decoration: none;
    color: inherit;
}

/* Extra overrides to ensure no residual colored glow or animations apply */
.icon,
.icon *,
.icon:focus,
.icon:active,
.icon:hover {
    animation: none !important;
    filter: none !important;
}

/* Ensure small svg-disc buttons also don't show a glow */
.icon-button,
.icon-button:hover,
.icon-button:focus,
.icon-button:active {
    box-shadow: 10px 12px 24px rgba(15, 15, 15, 0.18) !important;
}