/* ============================================================
   style6.css — Site6 Theme
   Navy + teal, card-driven layout on a light-gray canvas
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --s6-navy: #0d3b66;
    --s6-navy-dark: #082646;
    --s6-teal: #17a2b8;
    --s6-teal-dark: #128a9c;
    --s6-green: #1e8e3e;
    --s6-gold: #f2a900;
    --s6-accent: #e0532c;
    --s6-bg: #eceff3;
    --s6-card: #ffffff;
    --s6-text: #22282f;
    --s6-muted: #6c7580;
    --s6-border: #e2e5ea;
}

/* ---- Body / container ---- */
body.s6-body {
    background: var(--s6-bg);
    font-family: 'Hind Siliguri', 'Poppins', Arial, sans-serif;
    font-size: 14px;
    color: var(--s6-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Header/footer are full viewport width; only the page content column is capped */
.s6-container {
    background: var(--s6-bg);
    padding: 0;
    max-width: 1300px;
}

.s6-section {
    padding: 24px 0;
}

.s6-card {
    background: var(--s6-card);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08);
    padding: 18px;
    height: 100%;
}

/* Opt a standalone .s6-card out of stretching to match a taller row sibling */
.s6-card-auto-height {
    height: auto;
}

.s6-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--s6-border);
}

.s6-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--s6-navy);
    margin: 0;
}

.s6-card-viewall {
    font-size: 0.8rem;
    color: var(--s6-accent);
    text-decoration: none;
    font-weight: 500;
}

.s6-card-viewall:hover {
    text-decoration: underline;
}

/* ============================================================
   HEADER
   ============================================================ */

.s6-topbar {
    background: var(--s6-teal);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.78rem;
    padding: 6px 0;
}

.s6-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.s6-topbar-item i {
    font-size: 0.72rem;
    opacity: 0.9;
}

/* BN/EN language switcher (Google Translate powered) */
.s6-lang-switcher {
    display: inline-flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.s6-lang-switcher button {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.s6-lang-switcher button.lang-active {
    background: #fff;
    color: var(--s6-teal);
}

.s6-lang-switcher button.lang-inactive:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Hide Google Translate's own banner/branding artifacts */
.goog-te-banner-frame,
.skiptranslate > iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

.s6-school-header {
    background: var(--s6-navy);
    color: #fff;
    padding: 14px 12px;
}

.s6-logo {
    height: 64px;
    width: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: #fff;
}

.s6-school-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.s6-school-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 2px 0 0;
}

/* Header social icon links (top-right of desktop school header) */
.s6-header-social {
    display: flex;
    gap: 6px;
}

.s6-header-social a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.s6-header-social a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.s6-header-social-facebook { background: #3b5998; }
.s6-header-social-email { background: #1abc9c; }
.s6-header-social-location { background: #e0532c; }
.s6-header-social-youtube { background: #ff0000; }
.s6-header-social-linkedin { background: #0077b5; }

.s6-mobile-header {
    background: var(--s6-navy);
    color: #fff;
    text-align: center;
    padding: 14px 12px;
}

.s6-mobile-school-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.s6-mobile-school-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Notice ticker strip */
.s6-notice-bar {
    background: #fff;
    border-bottom: 1px solid var(--s6-border);
    padding: 6px 0;
}

.s6-notice-label {
    background: var(--s6-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 10px;
}

.s6-notice-bar marquee a {
    color: var(--s6-navy);
    text-decoration: none;
    font-size: 0.82rem;
}

.s6-notice-bar marquee a:hover {
    color: var(--s6-accent);
}

/* Navbar */
.s6-navbar {
    background: var(--s6-navy) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.s6-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 14px !important;
}

.s6-navbar .nav-link:hover,
.s6-navbar .nav-link.active {
    color: var(--s6-gold) !important;
}

.s6-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.s6-navbar .dropdown-item:hover {
    background: var(--s6-bg);
    color: var(--s6-navy);
}

/* Mobile nav: integrate the dropdown into the dark nav instead of a floating white card */
@media (max-width: 991.98px) {
    .s6-navbar .nav-link {
        padding: 13px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .s6-navbar .dropdown-menu {
        position: static !important;
        background: rgba(0, 0, 0, 0.18);
        box-shadow: none;
        border-radius: 0;
        margin: 0 !important;
        padding: 4px 0;
    }

    .s6-navbar .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        padding: 11px 16px 11px 34px;
        font-size: 0.86rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .s6-navbar .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--s6-gold);
    }

    .s6-navbar .dropdown-toggle.show {
        color: var(--s6-gold) !important;
        background: rgba(0, 0, 0, 0.12);
    }
}

/* ============================================================
   SLIDER
   ============================================================ */

.s6-slider {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(13, 59, 102, 0.12);
}

.s6-slider-img {
    height: 60vh;
    object-fit: cover;
}

.s6-slider-caption {
    background: rgba(8, 38, 70, 0.72);
    border-radius: 6px;
    left: 5%;
    right: 5%;
    bottom: 20px;
    text-align: left;
    padding: 12px 18px;
}

.s6-slider-caption h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================================
   LEADERSHIP CARDS
   ============================================================ */

.s6-leader-card {
    background: var(--s6-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08);
    height: 100%;
}

.s6-leader-photo {
    width: 100%;
    height: 220px;
    object-fit: fill;
    display: block;
}

.s6-leader-body {
    padding: 14px 16px;
}

.s6-leader-role {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--s6-navy);
    margin: 0;
}

.s6-leader-name {
    font-size: 0.85rem;
    color: var(--s6-teal-dark);
    font-weight: 500;
    margin: 0 0 6px;
}

.s6-leader-subtitle {
    font-size: 0.78rem;
    color: var(--s6-muted);
    margin: 0 0 6px;
}

.s6-leader-excerpt {
    font-size: 0.85rem;
    color: var(--s6-text);
    margin: 0 0 8px;
}

.s6-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--s6-accent);
    text-decoration: none;
}

.s6-read-more:hover {
    text-decoration: underline;
}

/* ============================================================
   AUTO-SCROLL TICKER BOXES (vertical)
   ============================================================ */

.s6-ticker-box {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.s6-ticker-list {
    position: absolute;
    width: 100%;
    top: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.s6-ticker-list li {
    padding: 6px 2px;
    border-bottom: 1px dashed var(--s6-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.s6-ticker-date {
    flex-shrink: 0;
    background: var(--s6-navy);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 2px 8px;
    font-size: 0.68rem;
    line-height: 1.2;
    min-width: 42px;
}

.s6-ticker-date strong {
    display: block;
    font-size: 0.85rem;
}

.s6-ticker-list li a {
    color: var(--s6-text);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.3;
}

.s6-ticker-list li a:hover {
    color: var(--s6-accent);
}

/* Stars of Institution: bigger card-style items inside the vertical auto-scroll ticker */
.s6-star-list-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px !important;
    margin-bottom: 8px;
    border-radius: 10px;
    /* background is set inline per starts_of_institute_background_color admin setting */
    box-shadow: 0 2px 8px rgba(213, 143, 0, 0.2);
    border-bottom: none !important;
}

.s6-star-list-item img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: fill;
    border: 3px solid #fff;
    flex-shrink: 0;
}

.s6-star-list-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--s6-navy-dark);
    margin: 0 0 6px;
}

.s6-star-list-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--s6-navy-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin: 0 6px 4px 0;
}

/* ============================================================
   ABOUT US
   ============================================================ */

.s6-about-img {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
}

.s6-about-title {
    color: var(--s6-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.s6-about-text {
    color: var(--s6-text);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   BOTTOM MESSAGES (auto-scroll horizontal)
   ============================================================ */

.s6-bmsg-ticker-wrap {
    overflow: hidden;
    padding: 4px;
}

.s6-bmsg-track {
    display: inline-flex;
    white-space: nowrap;
}

.s6-bmsg-card {
    display: inline-block;
    text-align: center;
    width: 200px;
    white-space: normal;
    vertical-align: top;
    margin-right: 14px;
    background: var(--s6-card);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13, 59, 102, 0.1);
    padding: 18px 14px;
}

.s6-bmsg-card img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: fill;
    border: 3px solid var(--s6-teal);
    display: block;
    margin: 0 auto 10px;
}

.s6-bmsg-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--s6-navy);
    margin: 0;
}

.s6-bmsg-name {
    font-size: 0.74rem;
    color: var(--s6-teal-dark);
    font-weight: 600;
    margin: 2px 0 8px;
}

.s6-bmsg-text {
    font-size: 0.76rem;
    color: var(--s6-text);
    line-height: 1.45;
    margin: 0;
}

/* ============================================================
   STATIC IMAGE BLOCKS (academic calendar, hotline)
   ============================================================ */

.s6-static-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.s6-hotline-title {
    background: var(--s6-navy);
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.s6-hotline-body {
    border: 1px solid var(--s6-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 10px;
    background: var(--s6-card);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.s6-hotline-body .s6-static-img {
    width: auto;
    max-width: 100%;
    max-height: 552px;
    object-fit: contain;
    margin: 0 auto;
}

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */

.s6-achievements {
    background: var(--s6-navy);
    border-radius: 10px;
    padding: 24px 12px;
}

.s6-achv-cell {
    text-align: center;
    color: #fff;
    padding: 10px;
}

.s6-achv-icon {
    font-size: 1.8rem;
    color: var(--s6-gold);
    margin-bottom: 8px;
}

.s6-achv-value {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}

.s6-achv-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* ============================================================
   GALLERY / VIDEO GRIDS
   ============================================================ */

.s6-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.s6-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.s6-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.s6-gallery-item:hover img {
    transform: scale(1.06);
}

.s6-video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08);
    background: var(--s6-card);
}

.s6-video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

/* ============================================================
   MAP
   ============================================================ */

.s6-map-iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 8px;
    display: block;
}

/* ============================================================
   VISITOR STATS (stacked counter list, pairs with Academic Performance)
   ============================================================ */

.s6-visitor-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.s6-visitor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--s6-bg);
    border-radius: 8px;
    padding: 12px;
    transition: transform 0.2s ease;
}

.s6-visitor-item:hover {
    transform: translateX(4px);
}

.s6-visitor-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--s6-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.s6-visitor-icon-teal {
    background: var(--s6-teal);
}

.s6-visitor-icon-green {
    background: var(--s6-green);
}

.s6-visitor-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--s6-navy);
    line-height: 1.2;
}

.s6-visitor-label {
    font-size: 0.8rem;
    color: var(--s6-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.s6-footer {
    background: var(--s6-navy-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 30px 0 0;
    margin-top: 24px;
}

.s6-footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.s6-footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.s6-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s6-footer-links li {
    margin-bottom: 8px;
}

.s6-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
}

.s6-footer-links a:hover {
    color: var(--s6-gold);
}

.s6-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s6-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

@media (max-width: 991.98px) {
    .s6-footer-contact-center li {
        justify-content: center;
    }
}

.s6-footer-contact i {
    color: var(--s6-teal);
    margin-top: 3px;
}

.s6-social-icons {
    display: flex;
    gap: 10px;
}

.s6-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s ease;
}

.s6-social-icons a:hover {
    background: var(--s6-teal);
}

.s6-footer-hr {
    border-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0 0;
}

.s6-footer-bottom {
    padding: 14px 12px;
}

.s6-footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.s6-footer-copy a {
    color: var(--s6-gold);
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767.98px) {
    .s6-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .s6-footer-bottom {
        padding-bottom: 56px;
    }

    .s6-slider-img {
        height: 240px;
    }

    .s6-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s6-leader-photo {
        height: 260px;
    }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */

.s6-page-header {
    background: var(--s6-navy);
    color: #fff;
    padding: 26px 12px 0;
    position: relative;
    overflow: hidden;
}

.s6-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.s6-page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.s6-page-header svg {
    display: block;
    width: 100%;
}

/* ============================================================
   INNER PAGES (generic building blocks)
   ============================================================ */

.s6-inner-page { min-height: 60vh; padding: 16px 0 24px; }

.s6-page-section-header { border-left: 4px solid var(--s6-teal); padding: 6px 12px; background: var(--s6-bg); margin-bottom: 16px; border-radius: 4px; }
.s6-page-section-header h4 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--s6-navy); }

.s6-content-body { font-size: 0.92rem; line-height: 1.75; color: var(--s6-text); }
.s6-content-body img { max-width: 100%; height: auto; border-radius: 6px; }
.s6-content-body table { width: 100%; overflow-x: auto; display: block; }
.s6-content-body iframe { max-width: 100%; }

.s6-notice-attachment {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 80vh;
    min-height: 500px;
}

.s6-badge { display: inline-block; padding: 3px 10px; font-size: 0.72rem; font-weight: 600; background: rgba(23, 162, 184, 0.12); color: var(--s6-teal-dark); border: 1px solid var(--s6-teal); border-radius: 20px; }

.s6-search-filter-box { background: var(--s6-card); border-radius: 10px; box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08); padding: 16px; margin-bottom: 18px; }

/* Primary button */
.s6-btn-primary {
    background: var(--s6-navy);
    color: #fff !important;
    border: none;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.2s;
}
.s6-btn-primary:hover { background: var(--s6-teal-dark); color: #fff !important; }

/* Notice list row */
.s6-notice-item-row { background: var(--s6-card); border-radius: 8px; box-shadow: 0 1px 4px rgba(13, 59, 102, 0.06); padding: 12px 16px; margin-bottom: 10px; border-left: 3px solid var(--s6-teal); transition: transform 0.2s; }
.s6-notice-item-row:hover { transform: translateX(3px); }
.s6-notice-title { font-weight: 600; color: var(--s6-navy); font-size: 0.9rem; margin-bottom: 3px; }
.s6-notice-meta { font-size: 0.76rem; color: var(--s6-muted); }

/* Event list row */
.s6-event-list-item { background: var(--s6-card); border-radius: 8px; box-shadow: 0 1px 4px rgba(13, 59, 102, 0.06); padding: 14px; margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start; transition: transform 0.2s; }
.s6-event-list-item:hover { transform: translateX(3px); }
.s6-event-list-date { background: var(--s6-navy); color: #fff; border-radius: 8px; min-width: 50px; height: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.s6-event-list-day { font-size: 1.05rem; }
.s6-event-list-mon { font-size: 0.62rem; text-transform: uppercase; }

/* Faculty / staff card */
.s6-faculty-card { background: var(--s6-card); border-radius: 10px; box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08); overflow: hidden; transition: transform 0.2s; margin-bottom: 16px; }
.s6-faculty-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(13, 59, 102, 0.14); }
.s6-faculty-img { width: 100%; height: 210px; object-fit: fill; }
.s6-faculty-body { padding: 12px; }
.s6-faculty-name { font-size: 0.9rem; font-weight: 700; color: var(--s6-navy); margin-bottom: 2px; }
.s6-faculty-designation { font-size: 0.76rem; color: var(--s6-muted); }

/* Department card */
.s6-dept-card { background: var(--s6-card); border-radius: 10px; border-top: 3px solid var(--s6-teal); box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08); padding: 18px; text-align: center; cursor: pointer; transition: transform 0.2s; margin-bottom: 16px; }
.s6-dept-card:hover { transform: translateY(-3px); background: var(--s6-bg); }

/* Gallery album card (listing) */
.s6-gallery-album-card { background: var(--s6-card); border-radius: 10px; box-shadow: 0 1px 4px rgba(13, 59, 102, 0.08); overflow: hidden; transition: transform 0.2s; margin-bottom: 16px; }
.s6-gallery-album-card:hover { transform: translateY(-3px); }
.s6-gallery-album-img { width: 100%; height: 170px; object-fit: cover; }
.s6-gallery-album-body { padding: 12px; }

.s6-gallery-overlay { position: absolute; inset: 0; background: rgba(8, 38, 70, 0.65); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: opacity 0.3s; }
.s6-gallery-item:hover .s6-gallery-overlay { opacity: 1; }

/* Profile / contact page */
.s6-profile-img { max-width: 190px; width: 100%; border-radius: 10px; border: 3px solid var(--s6-teal); }
.s6-contact-info-box { background: var(--s6-bg); padding: 18px; border-left: 4px solid var(--s6-teal); border-radius: 8px; }
.s6-contact-info-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.s6-contact-info-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--s6-navy); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8rem; }
