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

:root {
    --primary-color: #a51f17;
    --secondary-color: #c3221e;
    --primary-dark: #7a1510;
    --primary-light: #e8352c;
    --accent-gold: #d4a017;
    --dark-bg: #111;
    --light-bg: #f8f9fa;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-blue {
    color: #2e4e8c !important;
    font-weight: 800 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2f3640;
    background: linear-gradient(180deg, #fcf8f5 0%, #ffffff 100%);
    line-height: 1.6;
    /*    display: flex !important;
        flex-direction: column !important;
        min-height: 100vh !important;
    */
}

section[id] {
    scroll-margin-top: 100px;
}

#header {
    position: relative;
    z-index: 2000;
}

#topBar {
    background: linear-gradient(90deg, #171717 0%, #2d2d2d 100%);
    color: #f5f5f5;
}

.top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-container ul {
    margin: 0;
    padding: 0;
}

.logo-bar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo-bar img {
    max-height: 72px;
}

.btn-default,
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-default,
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    box-shadow: 0 12px 30px rgba(165, 31, 23, 0.22);
}

.btn-default:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(165, 31, 23, 0.28);
    color: #fff;
}

.btn-outline {
    color: var(--primary-color);
    border: 1px solid rgba(165, 31, 23, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.btn-outline:hover {
    background: #fff5f5;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-spotlight {
    margin-top: -40px;
    position: relative;
    z-index: 3;
    padding-bottom: 40px;
}

.hero-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 237, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(165, 31, 23, 0.08);
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(165, 31, 23, 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 12px;
}

.hero-panel h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    color: #161616;
    margin-bottom: 10px;
}

.hero-panel p {
    margin: 0;
    color: #64748b;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-panel__highlights {
    min-width: 260px;
    display: grid;
    gap: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    color: #475569;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.highlight-item i {
    color: var(--primary-color);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrap .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title-wrap h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title-wrap p {
    color: #777;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    margin: 16px auto 0;
}


.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-bar {
    padding: 15px 0;
    background: #fff url('https://tercihim.comu.edu.tr/template/tercihim/img/sluet.png') no-repeat center bottom;
    background-size: contain;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.logo-bar img {
    max-height: 70px;
    position: relative;
    z-index: 2;
}

#headerRight {
    position: relative;
    z-index: 2;
}

.social-media a {
    color: #555;
    margin-left: 10px;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-media a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-wrapper {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px) saturate(180%) brightness(1.02) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) brightness(1.02) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05) !important;
    padding: 0;
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.navbar-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.60) 30%,
    rgba(56, 189, 248, 0.50) 50%,
    rgba(255, 255, 255, 0.60) 70%,
    transparent 100%);
    pointer-events: none;
}

.navbar-wrapper > .container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.navbar-wrapper .navbar > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
}

.menuborder {
    border-top: none !important;
}

.navbar-inverse {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
}

.navbar-inverse .navbar-collapse {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.navbar-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    float: none !important;
    width: 100%;
    margin: 0 !important;
}

.navbar-nav > li {
    float: none !important;
    flex-shrink: 0;
    position: relative;
}


.navbar-nav > li > a {
    position: relative;
    white-space: nowrap !important;
    color: #1e293b !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.5px !important;
    padding: 20px 18px !important;
    transition: color 0.22s ease, background 0.25s ease !important;
    background: transparent !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
    line-height: 1 !important;
    display: block;
    border-radius: 0;
}

.navbar-nav > li > a:hover {
    color: #0369a1 !important;
    background: rgba(56, 189, 248, 0.18) !important;
}

.navbar-nav > li.active > a {
    color: #0284c7 !important;
    background: rgba(56, 189, 248, 0.22) !important;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.40) !important;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #38bdf8 30%, #7dd3fc 60%, transparent);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8), 0 0 4px rgba(56, 189, 248, 1);
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li.active > a::after {
    width: 65%;
    left: 17.5%;
}

.dropdown-menu {
    border: 1px solid rgba(56, 189, 248, 0.12) !important;
    border-radius: 16px !important;
    padding: 6px !important;
    /*margin-top: 4px !important;*/
    min-width: 185px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    animation: vsDropdownFade 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes vsDropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu > li > a {
    color: #1e293b !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.2px !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    transition: all 0.18s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    border-left: none !important;
    margin: 1px 0 !important;
}

.dropdown-menu > li > a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.dropdown-menu > li > a:hover {
    background: linear-gradient(135deg,
    rgba(56, 189, 248, 0.10),
    rgba(14, 165, 233, 0.05)) !important;
    color: #0369a1 !important;
    padding-left: 14px !important;
    transform: translateX(3px);
}

.dropdown-menu > li > a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(165, 31, 23, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 31, 23, 0.4);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

#quick-links {
    background: #f8fafb;
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
}

#quick-links .container {
    position: relative;
    z-index: 1;
}

#quick-links .row {
    display: flex;
    flex-wrap: wrap;
}

#quick-links .row > [class*="col-"] {
    display: flex;
    padding-bottom: 28px;
}

#quick-links a.text-decoration-none {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-decoration: none;
    width: 100%;
}

.quick-links-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.ql-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(165, 31, 23, 0.25);
}

.ql-title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.ql-subtitle {
    font-size: 16px;
    color: #777;
    margin: 0 0 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.ql-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    margin: 0 auto;
}

.quick-card {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #ffffff;
    border-radius: 24px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    border: 2px solid var(--qc-border-color) !important;
    min-height: 0;
    flex-grow: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 24px !important;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
            var(--qc-color-light, rgba(220, 53, 69, 0.15)),
            transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: block !important;
}

.quick-card:hover::before {
    opacity: 1;
}

.quick-card::after {
    font-family: 'FontAwesome';
    position: absolute;
    bottom: -10px;
    right: -5px;
    font-size: 100px;
    color: var(--qc-color, #dc3545);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    transition: all 0.4s ease;
}

.quick-card:hover::after {
    opacity: 0.10;
    transform: scale(1.08) rotate(5deg);
}

.qc-akademik::after {
    content: '\f19d';
}

.qc-bilge::after {
    content: '\f2db';
}

.qc-kontenjan::after {
    content: '\f0f6';
}

.qc-yokatlas::after {
    content: '\f002';
}

.qc-burs::after {
    content: '\f195';
}

.qc-brosur::after {
    content: '\f1c1';
}

.qc-video::after {
    content: '\f01d';
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: var(--qc-border-color-hover) !important;
}

.qc-icon-bg {
    position: relative;
    margin-bottom: 18px;
    width: fit-content;
}

.qc-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--qc-color-light, rgba(220, 53, 69, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.qc-icon-circle i {
    font-size: 20px;
    color: var(--qc-color, #dc3545);
    transition: all 0.35s ease;
}

.qc-icon-circle::after {
    display: none;
}

.quick-card:hover .qc-icon-circle {
    background: var(--qc-color, #dc3545);
    transform: scale(1.06);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--qc-color, #dc3545) 25%, transparent);
}

.quick-card:hover .qc-icon-circle i {
    color: #fff;
}

.quick-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
    letter-spacing: -0.2px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.quick-card p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.qc-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--qc-color, #dc3545);
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 0;
    border-top: none;
    position: relative;
    z-index: 10;
}

.qc-cta i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.quick-card:hover .qc-cta {
    gap: 12px;
}

.quick-card:hover .qc-cta i {
    transform: translateX(4px);
}

.qc-akademik {
    --qc-color: #dc3545;
    --qc-color-light: rgba(220, 53, 69, 0.12);
    --qc-border-color: #fecaca;
    --qc-border-color-hover: #ef4444;
}

.qc-bilge {
    --qc-color: #0d6efd;
    --qc-color-light: rgba(220, 53, 69, 0.12);
    --qc-border-color: #fecaca;
    --qc-border-color-hover: #ef4444;
}

.qc-kontenjan {
    --qc-color: #6366f1;
    --qc-color-light: rgba(99, 102, 241, 0.12);
    --qc-border-color: #c7d2fe;
    --qc-border-color-hover: #6366f1;
}

.qc-yokatlas {
    --qc-color: #10b981;
    --qc-color-light: rgba(16, 185, 129, 0.12);
    --qc-border-color: #a7f3d0;
    --qc-border-color-hover: #10b981;
}

.qc-burs {
    --qc-color: #0ea5e9;
    --qc-color-light: rgba(14, 165, 233, 0.12);
    --qc-border-color: #bae6fd;
    --qc-border-color-hover: #0ea5e9;
}

.qc-brosur {
    --qc-color: #f59e0b;
    --qc-color-light: rgba(245, 158, 11, 0.12);
    --qc-border-color: #fed7aa;
    --qc-border-color-hover: #f59e0b;
}

.qc-video {
    --qc-color: #ef4444;
    --qc-color-light: rgba(239, 68, 68, 0.12);
    --qc-border-color: #fecdd3;
    --qc-border-color-hover: #f43f5e;
}


.videos-showcase {
    background: #ffffff;
    padding: 20px 0 45px;
    position: relative;
}

.vs-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.vs-badge {
    display: inline-block;
    background: rgba(165, 31, 23, 0.08);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.vs-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.vs-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.vs-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    margin: 0 auto;
}

.vs-card {
    background: #f8fafb;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.vs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.vs-video-wrap {
    position: relative;
    overflow: hidden;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9 {
    padding-top: 56.25%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vs-info {
    padding: 20px 24px;
}

.vs-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.vs-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.vs-action-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff !important;
    border: 2px solid var(--primary-dark) !important;
    border-radius: 8px !important;
    padding: 16px 55px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(165, 31, 23, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.vs-btn:hover {
    background: linear-gradient(135deg, #4ea5e9, #2b70c9) !important;
    border-color: #2258a3 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(43, 112, 201, 0.45);
    text-decoration: none;
}

#photos, #canakkale {
    padding: 45px 0;
    background: #fff;
}

#canakkale {
    background: #fafafa;
}

#iletisim-section {
    background: linear-gradient(160deg, #f8f9fa 0%, #fff 50%, #fef5f5 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

#iletisim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-gold), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.iletisim-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.iletisim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 6px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(165, 31, 23, 0.25);
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-info h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 4px;
}

.contact-info p, .contact-info a {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.form-control-modern {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
    background: #fafafa;
    font-family: inherit;
    color: #333;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(165, 31, 23, 0.08);
    background: #fff;
}

.form-label-modern {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.3px;
}

.form-group-modern {
    margin-bottom: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(165, 31, 23, 0.3);
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(165, 31, 23, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link-btn:hover {
    transform: translateY(-4px) scale(1.1);
    color: white;
}

.social-link-btn.fb {
    background: linear-gradient(135deg, #1877f2, #0d5bb5);
}

.social-link-btn.tw {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-link-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-btn.yt {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}


.fixed-action-buttons {

    display: contents;
}

.action-btn {
    position: fixed;
    bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 50px;
    border: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    z-index: 9999;
}

.ai-btn {
    left: 28px;
    right: auto;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 0;
    gap: 0;
    width: 54px;
    box-shadow: 0 5px 18px rgba(37, 99, 235, 0.38);
    overflow: visible;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
    animation: aiFloat 4s ease-in-out infinite;
}

.ai-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform 0.35s ease;
    border-radius: 50%;
}

.ai-label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    margin-left 0.3s ease;
}


.ai-bubbles-wrapper {
    position: absolute;
    bottom: 68px;
    left: -12px;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 10000;
}

.ai-bubble-top, .ai-bubble-bottom {
    background: #364d84 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25) !important;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
}

.ai-bubble-top:empty, .ai-bubble-bottom:empty {
    display: none !important;
}


@keyframes robotWobble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    15% {
        transform: translateY(-4px) rotate(-3deg);
    }
    30% {
        transform: translateY(-1px) rotate(2deg);
    }
    45% {
        transform: translateY(-5px) rotate(-1deg);
    }
    60% {
        transform: translateY(-2px) rotate(3deg);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

.ai-avatar.typing-active {
    animation: robotWobble 0.75s ease-in-out infinite;
}

/* Triangle for the bottom bubble pointing down to the avatar */
.ai-bubble-bottom::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 32px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #364d84 transparent;
    display: block;
    width: 0;
}

.ai-btn:hover .ai-bubbles-wrapper,
.ai-btn.show-welcome .ai-bubbles-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ai-btn:hover {
    animation: none !important;
    width: auto;
    padding: 0 20px 0 5px;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5) !important;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
    color: #fff;
    gap: 9px;
}

.ai-btn:hover .ai-avatar {
    transform: rotate(10deg);
}

.ai-btn:hover .ai-label {
    max-width: 120px;
    opacity: 1;
    margin-left: 2px;
}

@keyframes aiFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 5px 18px rgba(37, 99, 235, 0.38);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
    }
}

.msg-btn {
    right: 28px;
    left: auto;
    width: 54px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 5px 18px rgba(165, 31, 23, 0.38);
    animation: floatPulse 3s ease-in-out infinite;
    overflow: visible;
}

.msg-btn i {
    font-size: 22px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.msg-btn:hover {
    transform: translateY(-4px) scale(1.08);
    animation: none;
    box-shadow: 0 12px 32px rgba(165, 31, 23, 0.5);
}

.msg-tooltip {
    position: absolute;
    bottom: 68px;
    right: -12px;
    background: #0f172a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.msg-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 32px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #0f172a transparent;
    display: block;
    width: 0;
}

.msg-btn:hover .msg-tooltip,
.msg-btn.show-welcome .msg-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 5px 18px rgba(165, 31, 23, 0.38);
    }
    50% {
        box-shadow: 0 5px 28px rgba(165, 31, 23, 0.55), 0 0 0 8px rgba(165, 31, 23, 0.08);
    }
}

#rector {
    background: linear-gradient(160deg, #fff 0%, #fef9f9 100%);
    padding: 70px 0 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(165, 31, 23, 0.08);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(165, 31, 23, 0.2);
    border-color: var(--primary-color);
}

.hover-effect-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.hover-effect-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sayilar-section {
    background: #f8fafb;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}


.sayilar-title-wrap {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.sayilar-heading {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #1a2b4c;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.sayilar-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 15px;
}

.sayilar-title-line {
    width: 50px;
    height: 3px;
    background: #c3221e;
    border-radius: 3px;
    margin: 0 auto;
}

.stats-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

.stats-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
    touch-action: pan-y;
}

.stats-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.stats-slide {
    flex: 0 0 33.333%;
    box-sizing: border-box;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .stats-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .stats-slide {
        flex: 0 0 100%;
    }

    .stats-slider-container {
        padding: 0 20px;
    }
}

.stat-card-item {
    background: transparent;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    border: 1px solid transparent;
    box-shadow: none;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.35;
    transform: scale(0.9);
    cursor: pointer;
}

.stat-card-item:hover {
    opacity: 0.75;
    transform: scale(0.93) translateY(-4px);
}

.stats-slide.active .stat-card-item {
    background: #ffffff;
    opacity: 1;
    transform: scale(1.03);
    border: 1px solid rgba(195, 34, 30, 0.08);
    box-shadow: 0 12px 35px rgba(195, 34, 30, 0.1) !important;
}

.stats-slide.active .stat-card-item:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 18px 45px rgba(195, 34, 30, 0.15) !important;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon-wrapper i {
    font-size: 32px;
    background: linear-gradient(135deg, #e65c00, #c3221e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    display: inline-block;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #e65c00, #c3221e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.stats-slide.active .stat-icon-wrapper i {
    filter: drop-shadow(0 8px 16px rgba(230, 92, 0, 0.35));
}


.stat-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a2b4c;
    margin: 0;
}

.stats-slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    padding: 0;
}

.stats-slider-arrow i {
    font-size: 18px;
    color: #e65c00;
    background: linear-gradient(135deg, #e65c00, #c3221e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.stats-slider-arrow:hover {
    background: linear-gradient(135deg, #e65c00, #c3221e);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(195, 34, 30, 0.35);
}

.stats-slider-arrow:hover i {
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.stats-slider-arrow.prev {
    margin-right: 18px;
}

.stats-slider-arrow.next {
    margin-left: 18px;
}

.stats-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.stats-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-dot.active {
    background: #e65c00;
    transform: scale(1.2);
}

.sayilar-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.sayilar-deco-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(195, 34, 30, 0.04) 0%, transparent 70%);
}

.sayilar-deco-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(195, 34, 30, 0.03) 0%, transparent 70%);
}

.sayilar-deco-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(195, 34, 30, 0.02) 0%, transparent 70%);
}

.stat-number.counting {
    animation: countPulse 0.1s ease;
}

@keyframes countPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .sayilar-section {
        padding: 60px 0 50px;
    }

    .sayilar-slider-wrap {
        padding: 0 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-icon-circle {
        width: 56px;
        height: 56px;
    }

    .stat-icon-circle i {
        font-size: 22px;
    }

    .sayilar-section .bx-wrapper .bx-prev {
        left: -10px;
    }

    .sayilar-section .bx-wrapper .bx-next {
        right: -10px;
    }

    .sayilar-section .bx-wrapper .bx-controls-direction a {
        width: 38px;
        height: 38px;
    }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(165, 31, 23, 0.25);
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 36px rgba(165, 31, 23, 0.34);
}

.modern-footer {
    background-color: #1a1e21; /* Koyu antrasit arka plan */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: absolute;
    width: 100%;
    /*margin-top: auto !important;*/
}


.footer-top-bar {
    height: 4px;
    background-color: #d32f2f;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo-col, .footer-map-col {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo-col, .footer-map-col {
        grid-column: span 1;
    }
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-col ul:not(.contact-list):not(.campus-list) li a::before {
    content: "▶";
    font-size: 9px;
    color: #888888;
    margin-right: 8px;
    display: inline-block;
}

.footer-logo-col {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
}

.footer-logo-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    padding: 8px !important;
}

.footer-logo-container:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 12px 35px rgba(211, 47, 47, 0.25) !important; /* Glowing corporate red shadow on hover! */
    transform: translateY(-4px) scale(1.04) !important;
}

.footer-logo {
    max-width: 115px !important;
    height: auto !important;
    opacity: 0.88 !important;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.25)) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.footer-logo-container:hover .footer-logo {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.35)) !important;
}

.contact-list li i {
    color: #ffffff;
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #1a1e21;
    transform: translateY(-3px);
    border-color: #ffffff;
}

.footer-map-col {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    min-height: 240px !important;
}

.footer-map-bg-iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    opacity: 0.42 !important;
    pointer-events: none !important;
    filter: grayscale(0.2) contrast(1.1) brightness(1.25);
}

.footer-map-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 24px 20px !important;
}

.footer-map-content h3,
.campus-list li a {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.campus-list li a {
    display: flex !important;
    align-items: center !important;
    color: #cccccc !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.campus-list li a:hover {
    color: #ffffff !important;
    padding-left: 5px !important;
}

.campus-list li i {
    color: #d32f2f !important;
    margin-right: 10px !important;
    font-size: 15px !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
}

.campus-list li a:hover i {
    transform: scale(1.22) !important;
    color: #ff5252 !important;
}

.footer-bottom-bar {
    background-color: #0d233a;
    padding: 30px 20px !important;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #b0bec5;
}

.footer-bottom-bar a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.footer-bottom-bar a:hover {
    color: #eceff1;
}

.gallery li a {
    transition: var(--transition);
}

.gallery li a:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .quick-card {
        margin-bottom: 0;
        padding: 22px 20px 22px !important;
        border-radius: 20px !important;
    / min-height: auto;
        background: var(--qc-color-light, rgba(255, 255, 255, 0.95)) !important;
        border: 2px solid var(--qc-border-color) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .quick-card:hover,
    .quick-card:active {
        transform: translateY(-4px) !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
        border-color: var(--qc-border-color-hover) !important;
        background: #ffffff !important;
    }

    .quick-card::after {
        display: none !important;
    }

    .qc-icon-circle {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        margin-bottom: 14px;
        background: var(--qc-color-light, rgba(220, 53, 69, 0.1)) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.35s ease !important;
    }

    .qc-icon-circle i {
        font-size: 20px;
        color: var(--qc-color, #dc3545) !important;
        transition: all 0.35s ease !important;
    }

    .quick-card:hover .qc-icon-circle,
    .quick-card:active .qc-icon-circle {
        background: var(--qc-color, #dc3545) !important;
        transform: scale(1.06) !important;
    }

    .quick-card:hover .qc-icon-circle i,
    .quick-card:active .qc-icon-circle i {
        color: #ffffff !important;
    }

    .quick-card h4 {
        font-size: 16px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .quick-card p {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 14px;
    }

    .qc-cta {
        font-size: 12px;
        gap: 6px;
    }

    .qc-cta i {
        font-size: 11px;
    }

    .iletisim-card {
        padding: 25px;
    }

    .map-wrapper {
        height: 280px;
    }

    .stat-item {
        padding: 12px;
    }

    .kacsayi {
        font-size: 28px;
    }

    #iletisim-section {
        padding: 60px 0;
    }

    #quick-links {
        padding: 60px 0;
    }


    .vs-card {
        margin-bottom: 16px;
    }

    #quick-links .row > [class*="col-"] {
        width: 100% !important;
        max-width: 480px !important;
        float: none !important;
        margin: 0 auto 16px !important;
    }


    .navbar-collapse {
        background: rgba(15, 23, 42, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        border-radius: 20px !important;
        margin-top: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 15px 12px !important;
        animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .navbar-nav > li {
        margin: 6px 0 !important;
        position: relative;
    }

    .navbar-nav > li > a {
        color: #e2e8f0 !important;
        padding: 13px 20px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px;
        text-shadow: none !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .navbar-nav > li > a::after {
        content: '\f105';
        font-family: 'FontAwesome';
        font-size: 14px;
        opacity: 0.5;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .navbar-nav > li > a:hover,
    .navbar-nav > li.active > a {
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(37, 99, 235, 0.15)) !important;
        color: #38bdf8 !important;
        border-color: rgba(56, 189, 248, 0.2) !important;
        padding-left: 24px !important;
    }

    .navbar-nav > li > a:hover::after {
        transform: translateX(4px);
        opacity: 1;
        color: #38bdf8;
    }

    .navbar-nav .dropdown-menu {
        background: rgba(0, 0, 0, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
        border-radius: 12px;
        margin: 6px 4px 0 !important;
        padding: 8px 0 !important;
    }

    .navbar-nav .dropdown-menu a {
        color: #cbd5e1 !important;
        padding: 11px 24px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        transition: all 0.25s ease !important;
    }

    .navbar-nav .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        padding-left: 28px !important;
    }


    .action-btn {
        bottom: 16px !important;
        height: 46px !important;
    }

    .ai-btn {
        left: 16px !important;
        width: 46px !important;
        padding: 0 !important;
    }

    .ai-avatar {
        width: 38px !important;
        height: 38px !important;
    }

    .msg-btn {
        right: 16px !important;
        width: 46px !important;
    }

    .msg-btn i {
        font-size: 18px !important;
    }

    .ai-bubbles-wrapper {
        bottom: 58px !important;
        left: -6px !important;
        gap: 6px !important;
    }

    .ai-bubble-top, .ai-bubble-bottom {
        font-size: 11px !important;
        padding: 6px 12px !important;
        border-radius: 10px !important;
    }

    .ai-bubble-bottom::after {
        left: 22px !important;
    }


    .navbar-wrapper {
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03) !important;
    }

    .navbar-inverse, .navbar-header, .navbar {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
    }

    .navbar-toggle {
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        margin-top: 6px !important;
        margin-bottom: 6px !important;
        margin-right: 15px !important;
        padding: 9px 10px !important;
        transition: all 0.3s ease;
    }

    .navbar-toggle .icon-bar {
        background-color: #ffffff !important;
        width: 22px !important;
        height: 2px !important;
    }

    .scrolled .navbar-toggle {
        border-color: rgba(0, 0, 0, 0.12) !important;
        background-color: rgba(0, 0, 0, 0.04) !important;
    }

    .scrolled .navbar-toggle .icon-bar {
        background-color: #1e293b !important;
    }
}

@media (max-width: 767px) {
    #galleryLink {
        display: none !important;
    }

    .gallery, #videos ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .gallery li, #videos li {
        width: 100% !important;
        max-width: 480px !important;
        margin: 10px 0 !important;
        display: block !important;
        float: none !important;
    }

    .gallery li {
        height: 220px !important;
    }

    #videos li {
        height: auto !important;
    }

    .gallery li a.fancybox {
        height: 100% !important;
        width: 100% !important;
    }

    .gallery li:nth-child(n+4), #videos li:nth-child(n+4) {
        display: block !important;
    }
}


.aday-btn-wrap {
    text-align: center;
    padding: 24px 0 16px;
}

.aday-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    color: #ffffff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.aday-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.28),
            transparent
    );
    transition: all 0.55s ease;
}

.aday-cta-btn:hover::before {
    left: 100%;
}

.aday-cta-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    text-decoration: none;
}

.aday-cta-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.aday-cta-btn:hover i {
    transform: translateX(3px);
}

.frame-bg {
    max-height: calc(100vw * .69 - 645px);
}

#ust-hepbirlikte {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-family: 'Square Peg';
    color: #fff;
    line-height: 100px;
    text-shadow: 2px 2px 6px #0000007d;
    font-size: 100px;
    display: block;
}

#hepbirlikte {
    max-width: 640px;
    display: block;
    height: 200px;
    text-align: left;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-1px);
    }
}

#mainSlide {
    width: 100%;
    height: calc(100vh - 280px);
    position: relative;
    overflow: hidden;
}

.video-background {
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -99;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bx-wrapper .bx-prev {
    left: -12px;
}

.bx-wrapper .bx-next {
    right: -12px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #a51f17;
    background: transparent;
}

.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #a51f17;
}

.ana-yuvarlak {
    margin-bottom: 50px;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}

@media all and (max-width: 600px) {
    #mainSlide {
        height: 50vh;
    }
}

#topBar {
    font-size: 13px;
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

#topBar a {
    color: rgba(255, 255, 255, 0.88) !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-weight: 600 !important;
    transition: color 0.25s ease;
}

#topBar a:hover {
    color: #ffffff !important;
}

#topBar #slogan {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
}

#topBar #slogan strong {
    color: #ffffff !important;
}

.top-container {
    height: 36px;
    padding-top: 3px;
}

a#logo img {
    max-height: 70px;
}

.ana-yuvarlak a {
    padding: 0.5em;
}

.ana-yuvarlak i {
    font-size: 24px;
    margin-bottom: 0.25em;
}

@media (max-width: 991px) {
    header {
        background: transparent
    }

    #ust-hepbirlikte {
        display: none;
    }

    #mainSlide {
        height: 60vw;
        max-height: calc(100vw * .55);
    }

    #mainSlide iframe {
        width: 100vw;
        height: calc(100vw * .69);
        margin-top: calc(100vw * -.12);
    }

    .video-foreground {
        left: unset;
        top: 5vw
    }

    .logo-bar {
        margin-bottom: 0;
        padding-bottom: 15px;
    }

    #logo {
        margin-left: 0;
    }

    a#logo img {
        max-height: 90px;
    }
}

@media (max-width: 819.98px) {
    .bx-wrapper .bx-prev {
        left: 0px;
    }

    .bx-wrapper .bx-next {
        right: 0px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .header-container {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .ana-yuvarlak ul li {
        height: 88px;
    }
}

#galleryLink {
    display: inline-block;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#galleryLink img {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

#galleryLink:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#galleryLink:hover img {
    transform: scale(1.04);
}

.gallery li {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.gallery li a.fancybox {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: block;
    background-size: cover;
    background-position: center;
}

.gallery li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.gallery li:hover a.fancybox {
    transform: scale(1.08);
}

.bottom-footer {
    background: #1a365d !important;
    padding: 32px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bottom-footer .small-text {
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    font-family: 'Inter', sans-serif !important;
}

.bottom-footer .small-text a,
.bottom-footer .small-text a strong {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    transition: opacity 0.25s ease;
}

.bottom-footer .small-text a:hover,
.bottom-footer .small-text a:hover strong {
    opacity: 0.85;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100001; /* above overlay */
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu.active {
    right: 0;
}


.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo img {
    height: 48px;
    width: auto;
}

.sidebar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s, transform 0.3s;
}

.sidebar-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.sidebar-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
}

.sidebar-menu-content ul.navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.sidebar-menu-content ul.navbar-nav > li {
    margin: 8px 0 !important;
    width: 100% !important;
}

.sidebar-menu-content ul.navbar-nav > li > a {
    color: #f1f5f9 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-decoration: none !important;
}

.sidebar-menu-content ul.navbar-nav > li > a::after {
    display: none !important;
    content: none !important;
}

.sidebar-menu-content ul.navbar-nav > li > a:hover::after {
    display: none !important;
    content: none !important;
}

.sidebar-chevron {
    display: inline-block !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: auto !important;
}

.sidebar-menu-content ul.navbar-nav > li > a:hover .sidebar-chevron {
    transform: translateX(4px);
    color: #38bdf8 !important;
}

.sidebar-menu-content ul.dropdown-menu {
    position: static !important;
    float: none !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    margin: 8px 4px 0 !important;
    border-radius: 12px !important;
    padding: 6px 0 !important;
    display: none !important;
}

.sidebar-menu-content ul.dropdown-menu.show-dropdown {
    display: block !important;
}

.sidebar-menu-content ul.dropdown-menu a {
    color: #cbd5e1 !important;
    padding: 10px 24px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    display: block !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.sidebar-menu-content ul.dropdown-menu a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding-left: 28px !important;
}

.sidebar-menu-content ul.navbar-nav > li > a.expanded::after {
    transform: rotate(90deg);
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-contact i {
    color: #38bdf8;
}

.sidebar-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.sidebar-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.sidebar-socials a:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 767px) {

    #navbar {
        display: none !important;
    }
}

.social-media {
    display: inline-flex !important;
    gap: 8px !important;
    align-items: center !important;
    margin-right: 15px !important;
}

.social-media a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    color: #475569 !important;
    background: rgba(241, 245, 249, 0.9) !important;
    transition: all 0.3s ease !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.social-media a i {
    color: inherit !important;
    font-size: 13px !important;
}

.social-media a.facebook:hover {
    background-color: #1877f2 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.social-media a.twitter:hover {
    background-color: #1da1f2 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.social-media a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.social-media a.youtube:hover {
    background-color: #ff0000 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}


.quick-menu {

    margin-bottom: 25px;

}

.menu-card {

    border: none;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);

    transition: .35s;

}

.menu-card:hover {

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

.menu-card .panel-heading {

    background: linear-gradient(135deg, #163b63, #284f79); /*#2E4E8C !important;*/ /*linear-gradient(135deg, #2f6ea7, #4c89c6) !important;*/

    border: none;

    padding: 18px 20px;

}

.menu-card .panel-title {

    font-size: 18px;

    font-weight: 600;

    color: #fff;

    letter-spacing: .4px;

}

.menu-card .panel-title i {

    margin-right: 8px;

    color: #ffd166;

}

.menu-card .list-group {

    background: #fff;

}

.menu-card .list-group-item {

    border-left: none;

    border-right: none;

    border-top: none;

    border-bottom: 1px solid #eef2f7;

    padding: 16px 18px;

    display: flex;

    align-items: center;

    font-size: 15px;

    font-weight: 500;

    color: #505965;

    transition: all .25s ease;

    position: relative;

}

.menu-card .list-group-item:last-child {

    border-bottom: none;

}

.menu-card .list-group-item span:first-child {

    width: 22px;

    margin-right: 12px;

    color: #3f7db7;

    transition: .25s;

}

.menu-card .list-group-item:hover {

    background: #f5f9fd;

    color: #1f5f97;

    padding-left: 24px;

}

.menu-card .list-group-item:hover span:first-child {

    transform: translateX(4px);

    color: #0d6efd;

}

.menu-card .list-group-item:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: #2f6ea7;

    transform: scaleY(0);

    transition: .25s;

}

.menu-card .list-group-item:hover:before {

    transform: scaleY(1);

}

.menu-card .active-item {

    background: #edf5fc !important;

    color: #1d5f96 !important;

    font-weight: 600;

}

.menu-card .active-item:before {

    transform: scaleY(1);

}

@media (max-width: 991px) {

    .menu-card {

        margin-top: 20px;

    }

    .menu-card .list-group-item {

        padding: 18px;

        font-size: 16px;

    }

}


.comu-breadcrumb-wrapper {

    margin: 20px 0 30px;

}

.comu-breadcrumb {

    background: #fff;

    border: none;

    border-radius: 16px;

    padding: 14px 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin-bottom: 0;

}

.comu-breadcrumb > li {

    font-size: 15px;

    font-weight: 500;

}

.comu-breadcrumb > li + li:before {

    content: "\f105";

    font-family: FontAwesome;

    color: #9aa4af;

    padding: 0 12px;

}

.comu-breadcrumb a {

    color: #4b5b6a;

    text-decoration: none;

    transition: .25s;

}

.comu-breadcrumb a:hover {

    color: #1d5f96;

}

.comu-breadcrumb a i {

    margin-right: 6px;

    color: #2f6ea7;

}

.comu-breadcrumb > .active {

    background: #edf5fc;
    color: #1d5f96;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 5px;
    padding-left: 0px;
}

@media (max-width: 768px) {

    .comu-breadcrumb {

        padding: 12px 15px;

        font-size: 14px;

    }

    .comu-breadcrumb > li + li:before {

        padding: 0 8px;

    }

}


.comu-card {

    border: none !important;
    border-radius: 18px !important;
    padding: 0 !important;

    background: #fff !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08) !important;

    overflow: hidden;

}

.comu-card > .comu-list {

    margin: 0 !important;

}

.comu-card > .comu-list > .list-group-item {

    border: none !important;

    border-bottom: 1px solid #edf2f7 !important;

    padding: 0 !important;

    transition: all .25s;

}

.comu-card > .comu-list > .list-group-item:last-child {

    border-bottom: none !important;

}

.comu-card > .comu-list > .list-group-item > .comu-link {

    display: flex !important;

    align-items: center;

    padding: 16px 18px !important;

    text-decoration: none !important;

    color: #495057 !important;

    transition: all .25s;

}

.comu-card > .comu-list > .list-group-item:hover {

    background: #f7fbff !important;

}

.comu-card > .comu-list > .list-group-item:hover > .comu-link {

    padding-left: 26px !important;

    color: #0d6efd !important;

}


.academic-units {

    margin: 20px 0 40px;

}

.academic-units .section-header {

    margin-bottom: 25px;

}

.academic-units .section-header h2 {

    margin: 0 0 10px;

    color: #1a365d;

    font-weight: 600;

    font-size: 30px;

}

.academic-units .section-header p {

    color: #6b7280;

    line-height: 1.7;

    max-width: 900px;

}

.unit-card {

    display: block;

    background: #fff;

    border: 1px solid #e9eef5;

    border-radius: 14px;

    padding: 22px;

    margin-bottom: 22px;

    text-decoration: none;

    color: #2d3748;

    transition: all .22s ease;

    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);

    position: relative;

}

.unit-card:after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 3px;

    height: 100%;

    background: #2f6ea7;

    transform: scaleY(0);

    transition: .22s;

    border-radius: 14px 0 0 14px;

}

.unit-card:hover {

    text-decoration: none;

    color: inherit;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);

    border-color: #d6e5f4;

}

.unit-card:hover:after {

    transform: scaleY(1);

}

.unit-card h4 {

    margin: 0 0 10px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.45;

    color: #1f2937;

}

.unit-card h4 i {

    color: #9ca3af;

    transition: .22s;

}

.unit-card:hover h4 i {

    color: #2f6ea7;

    transform: translateX(4px);

}

.unit-card p {

    margin: 0;

    color: #6b7280;

    font-size: 14px;

    line-height: 1.7;

}

@media (max-width: 768px) {

    .unit-card {

        padding: 18px;

    }

}