/* Root Variables */
:root {
    --primary: #E31837;
    --secondary: #002855;
    --gradient: linear-gradient(45deg, #E31837, #FF4D4D);
    --green: #00B67A;
    --green-gradient: linear-gradient(45deg, #00B67A, #00D68F);
    --dark: #111111;
    --light: #F8F9FA;
    --white: #F7F8FC;
    --card-bg: #FAFBFC;
    --section-bg: #F4F6F8;
    --border: #E2E8F0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    overflow-x: hidden;
    background: var(--section-bg);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--section-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.loader-inner {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Top Bar */
.top-bar {
    background: #002855;
    padding: 4px 0;
    position: relative;
    z-index: 99;
    font-size: 13px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gradient-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.info-text a,
.info-text p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.language-switch .form-select {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 12px;
    padding: 4px 20px 4px 8px;
    height: 28px;
}

/* Header Styles */
.header-area {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
}

.main-header {
    padding: 0;
    background: transparent;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header-logo {
    padding: 0;
}

.header-logo img {
    max-height: 57px;
    display: block;
}

/* Main Navigation */
.header-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    padding: 0 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.nav-item.active .nav-link,
.nav-link:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-item.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 5px;
    border: none;
    padding: 15px 0;
    margin-top: -1px;
    z-index: 99;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
      display: block;
    }
  }
  
  /* Mobil (max-width: 991px) için hover kapalı */
  @media (max-width: 991px) {
    .nav-item.dropdown .dropdown-menu {
      display: none;
    }
  }

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: #f8f9fa;
    padding-left: 30px;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.shortcuts-dropdown {
    position: relative;
}

.shortcuts-dropdown .dropdown-toggle {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.shortcuts-dropdown .dropdown-toggle::after {
    display: none;
}

.shortcuts-dropdown .dropdown-toggle:hover {
    opacity: 0.95;
}

.shortcuts-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.shortcuts-dropdown:hover .shortcuts-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shortcuts-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: var(--white);
    transform: rotate(45deg);
}

.shortcuts-menu li {
    list-style: none;
}

.shortcuts-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.shortcuts-menu li a:hover {
    background: rgba(227, 24, 55, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

.shortcuts-menu li a i {
    font-size: 16px;
    color: var(--primary);
}

@media (max-width: 991px) {
    .shortcuts-dropdown {
        display: none;
    }
    .shortcuts-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
    }

    .shortcuts-menu::before {
        display: none;
    }

    .shortcuts-menu li a {
        color: var(--dark);
        padding: 12px 15px;
    }

    .shortcuts-menu li a:hover {
        background: rgba(227, 24, 55, 0.05);
    }

    .header-logo img {
        max-height: 50px;
        padding: 10px 0;
    }
}

/* Mobile Header Actions */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1000;
}

.mobile-candidate-btn {
    display: flex;
    align-items: center;
}

.mobile-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: #E31837;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(227, 24, 55, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1002;
}

.mobile-form-btn i {
    font-size: 14px;
    flex-shrink: 0;
}

.mobile-form-btn span {
    font-size: 13px;
    font-weight: 500;
}

.mobile-form-btn:hover {
    background: #C71530;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.4);
    color: white;
}

.mobile-form-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(227, 24, 55, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    background: #E31837;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(227, 24, 55, 0.3);
    position: relative;
    z-index: 1002;
}

.mobile-menu-btn:hover {
    background: #C71530;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.4);
}

.mobile-menu-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(227, 24, 55, 0.3);
}

.mobile-menu-btn i {
    transition: all 0.3s ease;
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .header-area {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
    
    .mobile-header-actions {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }
    
    .main-header {
        position: relative;
        z-index: 999;
        padding: 4px 0;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 80px 0 20px;
        overflow-y: auto;
        z-index: 1000;
    }

    .header-nav.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 20px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
        transition: all 0.3s ease;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 0;
        border: none;
        box-shadow: none;
        background: rgba(227, 24, 55, 0.03);
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .nav-item.dropdown .dropdown-menu.show {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        color: var(--dark);
        font-weight: 500;
        border-bottom: none;
    }

    .nav-item.dropdown .nav-link i {
        float: right;
        transition: transform 0.3s;
    }

    .nav-item.dropdown.active .nav-link i {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .nav-item.active .nav-link,
    .nav-link:hover {
        color: var(--primary);
        transform: translateX(8px);
    }

    .dropdown-menu li a:hover {
        background: rgba(227, 24, 55, 0.08);
        color: var(--primary);
        padding-left: 25px;
    }

    .mobile-menu-title {
        display: block;
    }
    .header-nav .social-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        display: block !important;
    }
    
    .top-bar .container {
        padding: 0 8px;
    }
    
    .top-bar .row {
        flex-direction: row !important;
        gap: 0 !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
    }
    
    .header-logo img {
        max-height: 65px !important;
    }
    
    .mobile-header-actions {
        display: flex !important;
        position: relative;
        z-index: 1000;
        gap: 15px;
    }
    
    .mobile-form-btn {
        display: flex !important;
        align-items: center;
        gap: 6px;
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .mobile-form-btn i {
        font-size: 14px;
    }
    
    .mobile-form-btn span {
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        width: 45px !important;
        height: 38px !important;
        font-size: 18px !important;
    }
    
    .top-bar [class*="col-"] {
        flex: none !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .top-bar .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .top-bar-left {
        display: flex !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin-bottom: 0;
        padding: 0 !important;
    }
    
    .top-bar-right {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: right !important;
        height: 100% !important;
    }
    
    .social-links {
        display: flex !important;
        gap: 5px;
        margin-bottom: 0;
        flex-wrap: nowrap !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        width: auto !important;
        float: right !important;
        position: relative !important;
        right: 10px !important;
    }
    
    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0 !important;
    }
    
    .social-links a:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .weather-widget {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        gap: 6px;
        padding: 3px 6px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }
    
    .weather-widget .gradient-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
        flex-shrink: 0;
    }
    
    .weather-info {
        text-align: left;
        overflow: hidden;
        flex: 1;
    }
    
    .weather-info span {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        display: block;
        line-height: 1.2;
    }
    
    .weather-data {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 4px;
        margin-top: 1px;
        overflow: hidden;
        flex-wrap: nowrap;
    }
    
    .temperature {
        font-size: 11px;
        font-weight: 700;
        color: #ffffff;
        white-space: nowrap;
    }
    
    .weather-condition {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.8);
        text-transform: capitalize;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 50px;
    }
}

/* Mobil menü buton animasyonu artık icon rotation ile yapılıyor */

/* Sticky Header Animation (optional) */
@keyframes slideDown {
    from {
        transform: translateY(-5px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slider Styles */
.slider-section {
    position: relative;
    height: 520px;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    position: relative;
}

.slider-image {
    height: 520px;
    overflow: hidden;
    position: relative;
}

.slider-image img,
.slider-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgb(0 0 0 / 88%), rgb(0 0 0 / 7%), transparent); */
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 42%;
    transform: translateY(-65%);
    left: 0;
    width: 100%;
    z-index: 2;
}

.slider-text {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.slider-text .subtitle {
    color: #ff030f;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.slider-text .title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slider-text .description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.slider-buttons {
    display: flex;
    gap: 15px;
}

.slider-buttons .btn {
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-primary {
    background: #E31837;
    color: #fff;
    border: none;
}

.btn-white {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .slider-section,
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 400px;
    }
    
    .slider-text .title {
        font-size: 32px;
    }
    
    .slider-text .subtitle {
        font-size: 16px;
    }

    .slider-text .description {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-section,
    .slider-image {
        height: 350px;
    }
    
    .slider-text {
        text-align: center;
        padding: 0 15px;
    }
    
    .slider-text .title {
        font-size: 28px;
    }
    
    .slider-text .subtitle {
        font-size: 18px;
    }
    
    .slider-text .description {
        font-size: 14px;
    }
    
    .slider-buttons {
        justify-content: center;
    }
    
    .slider-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Service Widgets yeni stiller */
.service-widgets {
    padding: 40px 0;
    margin-top: -160px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.service-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    height: 100%;
    border: 2px solid rgba(227, 24, 55, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #E31837, #FF6B6B);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(227, 24, 55, 0.2);
    border-color: var(--primary);
    text-decoration: none;
    color: inherit;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.1), rgba(255, 107, 107, 0.15));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(227, 24, 55, 0.1);
}

.icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E31837, #FF6B6B);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-box i {
    font-size: 35px;
    color: var(--primary);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-box:hover .icon-box {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.15), rgba(255, 107, 107, 0.25));
}

.service-box:hover .icon-box::after {
    opacity: 1;
    transform: scale(1);
}

.service-box:hover .icon-box i {
    color: var(--white);
    transform: scale(1.1);
}

.service-box h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-box:hover h4 {
    color: var(--primary);
    transform: translateY(-2px);
}

.service-box:hover p {
    color: #555;
    opacity: 1;
}

/* Responsive düzenlemeler */
@media (max-width: 1199px) {
    .service-box {
        padding: 30px 20px;
    }
    
    .service-box h4 {
        font-size: 17px;
    }
    
    .icon-box {
        width: 80px;
        height: 80px;
    }
    
    .icon-box i {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .service-widgets {
        margin-top: -60px;
        padding: 30px 0;
    }
    
    .service-box {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .service-box h4 {
        font-size: 16px;
    }
    
    .service-box p {
        font-size: 13px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .icon-box i {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .service-widgets {
        margin-top: -35px;
        padding: 25px 0;
    }
    
    .service-box {
        padding: 22px 15px;
        border-radius: 15px;
        margin-bottom: 18px;
    }
    
    .service-box h4 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .service-box p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 18px;
        margin-bottom: 12px;
    }
    
    .icon-box i {
        font-size: 22px;
    }
    
    .service-box:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 575px) {
    .service-widgets {
        margin-top: -100px;
        padding: 20px 0;
    }
    
    .service-box {
        padding: 18px 12px;
        margin-bottom: 15px;
    }
    
    .service-box h4 {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .service-box p {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .icon-box i {
        font-size: 20px;
    }
    
    .service-box:hover {
        transform: translateY(-5px);
    }
    
    .service-box:hover .icon-box i {
        transform: scale(1.05);
    }
}

/* Genel link stilini güncelleyelim */
a {
    text-decoration: none !important;
}

/* Diğer link stillerini de güncelleyelim */
.nav-link,
.dropdown-menu li a,
.header-buttons a,
.top-bar a {
    text-decoration: none;
}

.social-links a {
    text-decoration: none;
}

.btn {
    text-decoration: none;
}

/* About Section güncellenmiş stiller */
.about-section {
    padding: 50px 0;
    position: relative;
    background: var(--light);
}

.about-images {
    position: relative;
    padding-right: 50px;
    margin-bottom: 70px;
}

.main-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.floating-img {
    position: absolute;
    right: 0;
    bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 50%;
}

.experience-box {
    background: var(--card-bg);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 200px;
    margin: 0;
    position: absolute;
    z-index: 99;
    bottom: 50px;
    left: 20px;
}

.experience-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.experience-box p {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0;
}

.video-box {
    background: #0e4194;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 65, 148, 0.3);
}

.video-box i {
    color: #fff;
    font-size: 18px;
}

.video-box p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-popup-close:hover {
    transform: rotate(90deg);
    background: var(--primary);
    color: #fff;
}

.video-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-text {
    font-size: 16px;
    margin-bottom: 30px;
}

.feature-items {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 24, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-content p {
    margin: 0;
}

/* About Bottom düzenlemesi */
.about-bottom .row {
    display: flex;
    align-items: center;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 400px; /* Liste genişliğini sınırlayalım */
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--dark);
}

.about-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center; /* flex-end yerine center yaptık */
    margin-left: -50px; /* Sola kaydırmak için negatif margin */
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--dark);
}

.author-info p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.signature {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .about-images {
        margin-bottom: 50px;
        padding-right: 0;
    }
    
    .floating-img {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }

    .about-author {
        margin-left: 0;
        margin-top: 30px;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .experience-box {
        position: relative;
        width: 180px;
        left: 0;
        bottom: 0;
        margin: -50px auto 0;
        z-index: 99;
    }
    
    .experience-box h2 {
        font-size: 36px;
    }
    
    .experience-box p {
        font-size: 14px;
    }
    
    .video-box {
        padding: 10px;
    }
    
    .video-box i {
        font-size: 16px;
    }
    
    .video-box p {
        font-size: 12px;
    }
}

/* News & Events Section */
.news-events {
    padding: 50px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 30px;
}

.section-header .view-all-btn {
    padding: 8px 20px;
    font-size: 13px;
    align-self: flex-end;
    margin-bottom: 10px;
}

/* News Slider */
.news-slider {
    position: relative;
    margin: 0 -10px;
}

.news-slider .owl-nav {
    position: absolute;
    top: -80px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.news-slider .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--light) !important;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-slider .owl-nav button:hover {
    background: var(--gradient) !important;
    color: var(--white) !important;
}

.news-slider .owl-nav button span {
    font-size: 24px;
    line-height: 1;
    position: relative;
    top: -2px;
}

/* News Card düzenlemeleri */
.news-card {
    margin: 10px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.news-content p {
    height: 52px;
    overflow: hidden;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.read-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* News Cards */
.news-grid {
    display: grid;
    gap: 30px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.news-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.news-date .month {
    font-size: 14px;
    font-weight: 500;
}

/* Events List Page */
.events-list-container {
    padding: 30px 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-list-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    transition: transform 0.3s ease;
}

.event-list-item:hover {
    transform: translateX(5px);
}

.event-list-image {
    width: 300px;
    flex-shrink: 0;
}

.event-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-list-content {
    padding: 25px;
    flex: 1;
}

.event-list-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
}

.event-list-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-list-title a:hover {
    color: var(--primary);
}

.event-list-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
}

.event-list-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.event-list-meta i {
    color: var(--primary);
}

.event-list-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 3px);
    background-size: 40px 40px;
    animation: backgroundMove 30s linear infinite;
}

.statistics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227,24,55,0.15), rgba(55,65,81,0.1));
}

.statistics-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.statistics-section .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    
}

.counter-box {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 10px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.08);
    margin-bottom: 10px;
    transition: all 0.4s ease;
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(227,24,55,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #E31837, #B91C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    position: relative;
    box-shadow: 0 8px 20px rgba(227,24,55,0.3);
}

.counter-icon::after {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.counter-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1;
    background: linear-gradient(45deg, #fff, #E31837);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.counter-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes backgroundMove {
    from { transform: translate(0, 0); }
    to { transform: translate(-50%, -50%); }
}

/* Counter Animation */
.counter-box {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.counter-box.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
    .statistics-section .section-title {
        font-size: 36px;
    }
    
    .counter-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .counter-box {
        margin-bottom: 10px;
        padding: 15px 15px;
    }
    
    .counter-content h2 {
        font-size: 32px;
    }
    
    .counter-content h3 {
        font-size: 16px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .counter-icon::after {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 767px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .statistics-section .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .statistics-section .section-header {
        margin-bottom: 40px;
    }
    
    .counter-box {
        margin-bottom: 25px;
        padding: 20px 15px;
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .counter-icon::after {
        width: 70px;
        height: 70px;
    }
    
    .counter-content h2 {
        font-size: 28px;
    }
    
    .counter-content h3 {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .counter-box {
        padding: 25px 20px;
        margin-bottom: 22px;
        margin-left: 6px;
        margin-right: 6px;
    }
    
    .counter-content h2 {
        font-size: 32px;
    }
    
    .counter-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .counter-box {
        margin-bottom: 0px;
        margin-left: 4px;
        margin-right: 4px;
    }
}

/* Footer Styles - New */
.footer-area {
    background: #002855;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 50px;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    
    width: 180px;
}

.footer-desc {
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #E31837;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #E31837;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact li i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #E31837;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* Quick Links Section */
.quick-links {
    padding: 50px 0;
}

.quick-link-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .quick-links .row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .quick-link-box {
        margin-bottom: 0;
    }
    .quick-link-box:nth-child(4),
    .quick-link-box:nth-child(5) {
        grid-column: span 1.5;
    }
}

@media (max-width: 575px) {
    .quick-links .row {
        grid-template-columns: 1fr;
    }
    .quick-link-box:nth-child(4),
    .quick-link-box:nth-child(5) {
        grid-column: auto;
    }
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.quick-link-box:hover .quick-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotateY(360deg);
}

.quick-link-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.quick-link-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-link-box ul li {
    margin-bottom: 10px;
}

.quick-link-box ul li:last-child {
    margin-bottom: 0;
}

.quick-link-box ul li a {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.quick-link-box ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-link-box ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.quick-link-box ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Projects Section */
.social-projects {
    padding: 30px 0;
    background: var(--light);
}

.social-projects .section-header {
    margin-bottom: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 24, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-content {
    padding: 25px;
}

.project-category {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.project-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .project-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .social-projects {
        padding: 50px 0;
    }
    
    .project-card {
        min-height: 230px;
    }
    
    .project-content {
        padding: 12px;
    }
    
    .project-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .project-content p {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .project-category {
        font-size: 10px;
        padding: 3px 6px;
        margin-bottom: 8px;
    }
    
    .project-image {
        height: 150px;
    }
    
    .project-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .project-overlay {
        opacity: 0.8;
    }
    
    .project-link {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 575px) {
    .social-projects .col-4 .project-card {
        min-height: 210px;
    }
    
    .social-projects .col-4 .project-content {
        padding: 8px;
    }
    
    .social-projects .col-4 .project-content h3 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .social-projects .col-4 .project-category {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .social-projects .col-4 .project-image {
        height: 120px;
    }
}

/* Çok küçük ekranlar için ek ayarlar - 480px */
@media (max-width: 480px) {
    .project-card {
        min-height: 190px;
    }
}

/* About Section güncellenmiş stiller */


.service-badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.service-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(227, 24, 55, 0.1);
}

.service-badges .badge:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.2);
}

.about-list li {
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list li i {
    color: var(--primary);
    font-size: 14px;
}

.section-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-items {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-items:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.about-images .main-img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-images .floating-img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.view-all-wrapper {
    margin-top: 30px;
    margin-bottom: 10px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.2);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.mt-4 {
    margin-top: 25px;
}

.text-center {
    text-align: center;
}

/* Responsive düzenleme */
@media (max-width: 767px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 0px;
    }
    
    .section-header .view-all-btn {
        align-self: flex-start;
    }
}

/* Container genişliği düzenlemesi */
.container {
    max-width: 1240px !important; /* 1140px'den 1240px'e çıkardık */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1199px) {
    .container {
        max-width: 1040px !important; /* 960px'den 1040px'e çıkardık */
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px !important;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px !important;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100% !important;
    }
}

/* Navigasyon okları */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: none;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 3;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Hover efekti */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: none;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .slider-section,
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .slider-section,
    .slider-image {
        height: 350px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* Event Detail Styles */
.event-detail-section {
    padding: 20px 0;
    background: #f8f9fa;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: #fff;
    padding: 15px 25px;
    
    
    margin-bottom: 15px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* Event Content Styles */
.event-detail-content {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.event-image {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



.event-date {
    background: var(--gradient);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    font-weight: 500;
}

.event-content {
    padding: 40px;
}

.event-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
}

.event-meta i {
    color: var(--primary);
    font-size: 18px;
}

.event-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* Social Share Styles */
.social-share {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-share span {
    font-weight: 600;
    color: var(--dark);
}

.social-share-buttons {
    display: flex;
    gap: 15px;
}

.social-share a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-share .facebook {
    background: #1877f2;
}

.social-share .twitter {
    background: #1da1f2;
}

.social-share .whatsapp {
    background: #25d366;
}

.social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    padding: 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid #eee;
}

.widget-content {
    padding: 25px;
}

.recent-event-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.recent-event-item:first-child {
    padding-top: 0;
}

.recent-event-item:last-child {
    padding-bottom: 0;
    border: none;
}

.event-info h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.event-info h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.event-info .date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.event-info .date i {
    color: var(--primary);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .event-image {
        height: 400px;
    }
    
    .event-title {
        font-size: 30px;
    }
    
    .event-meta {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .event-detail-section {
        padding: 40px 0;
    }
    
    .event-image {
        height: 300px;
    }
    
    .event-content {
        padding: 30px;
    }
    
    .event-title {
        font-size: 26px;
    }
    
    .event-date {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }
    
    .event-date .day {
        font-size: 28px;
    }
    
    .event-date {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }
    
    .event-date .day {
        font-size: 28px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-share-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

/* Announcements List Styles */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.announcement-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: none;
}

.announcement-date {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.15);
}

.announcement-date .day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.announcement-date .month {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

.announcement-content {
    flex: 1;
    min-width: 0;
}

.announcement-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--dark);
}

.announcement-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-content h3 a:hover {
    color: var(--primary);
}

.announcement-info {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.announcement-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.announcement-info i {
    color: var(--primary);
    font-size: 14px;
}

.announcement-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* View All Button */
.view-all-wrapper {
    margin-top: 20px;
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
    .social-share-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .social-share a {
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
}

/* Duyuru Detay Sayfası */
.announcement-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.announcement-detail {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.announcement-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.announcement-title h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 15px 0;
}

.announcement-meta {
    display: flex;
    gap: 20px;
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.announcement-meta i {
    color: var(--primary);
}

.announcement-content {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
}

.announcement-content h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-content h3 a:hover {
    color: var(--primary);
}

/* Events Grid Page */
.events-grid {
    padding: 40px 0;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 13px;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 18px;
    margin: 0 0 10px;
}

.event-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: var(--primary);
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.event-meta i {
    color: var(--primary);
}

.event-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    border: none;
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 5px;
}

.page-item.active .page-link {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-title {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #0e4194;
    padding: 0;
    display: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #0e4194;
    padding-bottom: 10px;
    z-index: 9999;
}

@media (max-width: 991px) {
    .mobile-menu-title {
        display: block;
    }
    .header-nav .social-links {
        display: none;
    }
}

.emergency-banner {
    background: #ff4d4d;
    color: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 9999;
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
}

.emergency-banner .alert-icon {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 1.5s infinite;
}

.emergency-banner .alert-text {
    color: #fff;
    margin: 0;
    font-size: 15px;
    flex: 1;
}

.emergency-banner .btn {
    background: #fff;
    color: #ff4d4d;
    padding: 6px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
    margin-right: 40px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.emergency-banner .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.emergency-banner .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.emergency-banner .close-btn:hover {
    opacity: 1;
}

.emergency-banner .alert-title {
    color: #fff;
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.weather-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.weather-data {
    display: flex;
    align-items: center;
    gap: 8px;
}

.temperature {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.weather-condition {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

/* Yeni Hakkımızda Bölümü Stilleri */
.about-new-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.about-new-section .container {
    position: relative;
}

.about-new-tag {
    color: #ff4d4d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.about-new-title {
    color: #0e2b5c;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-new-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.about-new-btn {
    display: inline-block;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-new-btn:hover {
    background-color: #0e2b5c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-values-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: 30px;
}

.values-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    gap: 5px; /* Sekmeler arası boşluğu azalttım */
}

.values-tab {
    padding: 8px 12px; /* Sekme boyutunu küçülttüm */
    font-size: 14px; /* Font boyutunu küçülttüm */
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
}

.values-tab.active {
    color: #ff4d4d;
}

.values-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF5722;
}

.values-content {
    padding: 5px; /* İç boşluğu azalttım */
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px; /* Öğeler arası boşluğu azalttım */
    gap: 8px; /* İkon ve metin arası boşluğu azalttım */
}

.values-list li i {
    color: var(--primary);
    font-size: 14px; /* İkon boyutunu küçülttüm */
    margin-top: 2px;
}

.values-list li p {
    margin: 0;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
}

.values-list li strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #0e2b5c;
}

.about-image-container {
    position: relative;
    height: 100%;
    margin-left: -30px; /* Görseli sola kaydırmak için negatif margin ekledim */
    padding: 20px; /* Görselin etrafına boşluk ekledim */
}

.about-main-image {
    width: 90%; /* Genişliği %100'den %90'a düşürdüm */
    height: 90%; /* Yüksekliği %100'den %90'a düşürdüm */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto; /* Görseli ortaladım */
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-main-image::before {
    content: "\f04b"; /* Font Awesome play ikonu */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%; /* Sol tarafa taşıdım */
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background-color: rgba(14, 65, 148, 0.85);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Her zaman görünür */
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.about-main-image:hover {
    transform: translateY(-10px);
}

.about-main-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1); /* Hover durumunda biraz büyüsün */
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.8); /* Her zaman biraz karartılmış */
}

.about-main-image:hover img {
    filter: brightness(0.6); /* Hover durumunda daha da karartılmış */
}

/* Deneyim kutusu stili */
.experience-badge {
    position: absolute;
    left: 2%; /* Sola olan mesafeyi yüzde olarak ayarladım */
    bottom: 7%; /* Alta olan mesafeyi yüzde olarak ayarladım */
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    width: 160px; /* Genişliği biraz azalttım */
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 38px; /* Font boyutunu biraz küçülttüm */
    font-weight: 700;
    color: #e30613;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px; /* Font boyutunu biraz küçülttüm */
    color: #666;
    font-weight: 500;
}

.video-btn {
    position: absolute;
    left: 3%; /* Sola olan mesafeyi yüzde olarak ayarladım */
    bottom: 27%; /* Alta olan mesafeyi yüzde olarak ayarladım */
    background-color: #0e4194;
    color: white;
    border-radius: 8px;
    padding: 10px 18px; /* Padding'i biraz azalttım */
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px; /* Font boyutunu biraz küçülttüm */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-btn:hover {
    background-color: #0a3275;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.video-btn i {
    font-size: 16px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Yeni eklenen overlay stili */
.about-values-overlay {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
}

/* Sağa hizalı değerler kartı */
.about-values-overlay.right-aligned {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px 0px;
}

.about-values-overlay .about-values-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    width: 85%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.about-values-overlay.right-aligned .about-values-card {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .about-new-section {
        padding: 60px 0;
    }
    
    .about-new-title {
        font-size: 32px;
    }
    
    .about-values-card {
        margin-top: 30px;
    }
    
    .values-tab {
        padding: 8px 10px;
    }
    
    .about-image-container {
        margin-top: 40px;
        margin-left: 0;
    }
    
    .about-main-image {
        width: 100% !important;
        height: 400px !important;
        display: block !important;
    }
    
    .about-values-overlay {
        position: relative;
        height: auto;
        padding: 0;
        margin-top: 20px;
    }
    
    .about-values-overlay .about-values-card {
        width: 100%;
        max-width: 100%;
    }
    
    .about-values-overlay.right-aligned {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        padding: 20px;
        justify-content: flex-end;
        align-items: flex-start;
    }
    
    .about-values-overlay.right-aligned .about-values-card {
        width: 100%;
    }
    
    .experience-badge {
        left: 15px;
        bottom: 15px;
        padding: 10px;
        width: 140px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
    
    .video-btn {
        left: 15px;
        bottom: 90px;
        padding: 8px 15px;
    }
}

@media (max-width: 767px) {
    .about-new-section {
        padding: 40px 0;
    }
    
    .about-new-title {
        font-size: 28px;
    }
    
    .values-tabs {
        flex-wrap: wrap;
    }
    
    .values-tab {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .about-values-card {
        padding: 15px;
    }
    
    .values-list li strong {
        font-size: 14px;
    }
    
    .values-list li p {
        font-size: 13px;
    }
    
    .about-image-container {
        margin-top: 30px;
    }
    
    .about-main-image {
        width: 100% !important;
        height: 300px !important;
        display: block !important;
    }
    
    .about-values-overlay {
        padding: 0;
    }
    
    .about-values-overlay.right-aligned {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        margin-top: 20px;
    }
    
    .experience-badge {
        left: 10px;
        bottom: -15px;
        padding: 8px;
        width: 120px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 11px;
    }
    
    .video-btn {
        left: 10px;
        bottom: 60px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .video-btn i {
        font-size: 12px;
    }
}

.about-values-overlay.right-aligned .values-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    gap: 2px;
}

.about-values-overlay.right-aligned .values-tab {
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-align: center;
    flex: 1;
}

.about-values-overlay.right-aligned .values-tab.active {
    color: #e30613;
    background-color: rgba(14, 65, 148, 0.05);
}

.about-values-overlay.right-aligned .values-tab.active::after {
    background-color: #0e4194;
    height: 2px;
}

.about-values-overlay.right-aligned .values-content {
    padding: 10px 5px 5px;
}

.about-values-overlay.right-aligned .values-list {
    margin: 0;
}

.about-values-overlay.right-aligned .values-list li {
    margin-bottom: 8px;
    gap: 6px;
}

.about-values-overlay.right-aligned .values-list li i {
    color: #0e4194;
    font-size: 12px;
    margin-top: 3px;
}

.about-values-overlay.right-aligned .values-list li p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-values-overlay.right-aligned .values-list li strong {
    font-size: 12px;
    margin-bottom: 2px;
    color: #0e4194;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: #e9ecef;
}

.cookie-consent-button {
    background-color: #fff;
    color: #212529;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-consent-button:hover {
    background-color: #e9ecef;
}

@media (max-width: 767px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 991px) {
    .emergency-banner {
        display: none !important;
    }
    
    /* Force single row layout */
    .top-bar {
        display: block !important;
        padding: 6px 0;
        background: #002855;
    }
    
    .top-bar .container {
        max-width: 100% !important;
        padding: 0 10px;
    }
    
    .top-bar .row {
        flex-direction: row !important;
        gap: 0 !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
    }
    
    .top-bar [class*="col-"] {
        flex: none !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .top-bar .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .top-bar-left {
        display: flex !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .top-bar-right {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: right !important;
        height: 100% !important;
    }
    
    .top-bar .social-links {
        display: flex !important;
        gap: 4px;
        flex-wrap: nowrap !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        width: auto !important;
        float: right !important;
    }
    
    .top-bar .social-links a {
        width: 24px;
        height: 24px;
        font-size: 10px;
        transition: transform 0.3s ease;
        flex-shrink: 0 !important;
    }
    
    .top-bar .social-links a:hover {
        transform: scale(1.1);
    }
    
    .weather-widget {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        width: 100%;
        max-width: 100%;
    }
    
    .weather-widget .gradient-icon {
        width: 18px;
        height: 18px;
        font-size: 8px;
        flex-shrink: 0;
    }
    
    .weather-info {
        text-align: left;
        overflow: hidden;
        flex: 1;
    }
    
    .weather-info span {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.8);
        display: block;
        line-height: 1.2;
    }
    
    .weather-data {
        display: flex;
        align-items: center;
        gap: 3px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .temperature {
        font-size: 10px;
        font-weight: 600;
        color: #ffffff;
        white-space: nowrap;
    }
    
    .weather-condition {
        font-size: 8px;
        color: rgba(255, 255, 255, 0.8);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 40px;
    }

    .about-values-overlay {
        display: none !important;
    }

    .language-switch {
        display: flex;
        align-items: center;
    }
} 

/* Language Switcher Styles */
.language-switch {
    position: relative;
    margin-right: 10px;
}

.language-btn-simple {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
    height: 28px;
}

.language-btn-simple:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.language-btn-simple svg {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-btn-simple span {
    color: white;
    font-weight: 500;
}

/* Mobile Language Switcher */
@media (max-width: 991px) {
    .language-switch {
        margin-right: 5px;
        order: -1;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .language-btn-simple {
        padding: 4px 8px;
        min-width: 70px;
        height: 26px;
        font-size: 11px;
        gap: 6px;
        margin: 0;
    }
    
    .language-btn-simple svg {
        width: 18px;
        height: 14px;
    }
}

@media (max-width: 767px) {
    .language-switch {
        margin-right: 40px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .language-btn-simple {
        padding: 3px 6px;
        min-width: 60px;
        height: 24px;
        font-size: 10px;
        gap: 5px;
        margin: 0;
        align-self: center;
    }
    
    .language-btn-simple svg {
        width: 16px;
        height: 12px;
    }
}

/* Resim Stilleri */
img.align-left { float: left; margin: 0 15px 15px 0; }
img.align-right { float: right; margin: 0 0 15px 15px; }
img.align-center { display: block; margin: 15px auto; }
img.img-fluid { max-width: 100%; height: auto; }
img.img-full { width: 100%; height: auto; }
img.img-rounded { border-radius: 8px; }
img.img-shadow { box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
img.img-bordered { border: 2px solid #ddd; padding: 4px; background: #fff; }

.image-wrap { margin: 20px 0; clear: both; }
figure.image { margin: 0; display: table; }
figure.image.align-left { float: left; margin-right: 15px; }
figure.image.align-right { float: right; margin-left: 15px; }
figure.image.align-center { margin-left: auto; margin-right: auto; }
figure.image figcaption { display: table-caption; caption-side: bottom; background: #f7f7f7; padding: 8px; font-size: 14px; }

/* Gelişmiş Görsel Konumlandırma Stilleri */
img.img-left-wrap { 
    float: left; 
    margin: 0 15px 15px 0; 
    max-width: 40%; 
}

img.img-right-wrap { 
    float: right; 
    margin: 0 0 15px 15px; 
    max-width: 40%; 
}

img.img-top-text { 
    display: block; 
    margin: 0 auto 15px auto; 
    clear: both; 
}

img.img-bottom-text { 
    display: block; 
    margin: 15px auto 0 auto; 
    clear: both; 
}

img.img-left-top-text {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 40%;
    clear: left;
}

img.img-right-top-text {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 40%;
    clear: right;
}

/* Görsel Wrapping Temizleme */
.image-wrap-clear {
    clear: both;
    display: block;
    width: 100%;
    height: 1px;
}

.image-wrap { margin: 20px 0; clear: both; }
figure.image { margin: 0; display: table; }
figure.image.align-left { float: left; margin-right: 15px; }
figure.image.align-right { float: right; margin-left: 15px; }
figure.image.align-center { margin-left: auto; margin-right: auto; }
figure.image figcaption { display: table-caption; caption-side: bottom; background: #f7f7f7; padding: 8px; font-size: 14px; }

@media (max-width: 576px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar .container {
        padding: 0 6px;
    }
    
    .top-bar .row {
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar [class*="col-"] {
        flex: none !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .top-bar .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    
    .top-bar-left {
        flex: 1;
        max-width: 100%;
    }
    
    .top-bar-right {
        flex-shrink: 0;
        width: 50%;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        text-align: right !important;
        height: 100% !important;
    }
    
    .weather-widget {
        padding: 2px 4px;
        border-radius: 8px;
        max-width: 100%;
        margin: 0;
        gap: 4px;
    }
    
    .weather-widget .gradient-icon {
        width: 23px;
        height: 23px;
        font-size: 10px;
    }
    
    .weather-info span {
        font-size: 8px;
    }
    
    .weather-data {
        gap: 2px;
    }
    
    .temperature {
        font-size: 9px;
    }
    
    .weather-condition {
        font-size: 7px;
        max-width: 35px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .social-links {
        gap: 3px;
        justify-content: flex-end !important;
        flex-wrap: nowrap;
        margin-left: auto !important;
        width: auto !important;
        float: right !important;
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .social-links a {
        width: 22px;
        height: 22px;
        font-size: 9px;
        flex-shrink: 0 !important;
    }
    
    /* Extra small screens adjustments */
    .social-share-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

/* İKÜ Hakkımızda Bölümü Styles */
.iku-about-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #d8e2e3 0%, #f4e1e1 100%);
    position: relative;
}

.iku-media-container {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
    width: 100%;
}

.iku-video-slider {
    border-radius: 20px;
    overflow: visible;
    box-shadow: none;
    height: 350px;
    width: 630px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    position: relative;
}

.video-slide {
    display: flex;
    height: 100%;
    position: relative;
    flex: 0 0 200px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-slide.playing {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(219, 52, 52, 0.3);
    border: 2px solid #db3434;
}



.video-slide.active {
    display: flex;
}

.video-thumbnail {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}



.video-thumbnail img {
    width: 200px;
    height: 350px;
    object-fit: cover;
}

.video-element {
    width: 200px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    z-index: 20;
}



.video-slide.playing .video-element {
    border: 3px solid #f00000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}



.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    color: var(--white);
    z-index: 10;
    text-align: center;
}

.video-info h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
}

.video-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.1;
}

.slider-nav {
    position: absolute;
    top: -40px;
    left: 5%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.slider-nav.hidden {
    display: none;
}

.slider-nav .prev-btn,
.slider-nav .next-btn {
    background: rgba(186, 189, 193, 0.8);
    color: white;
    
   
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.1s ease;
 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.slider-nav .prev-btn:hover,
.slider-nav .next-btn:hover {
    background: rgb(164, 164, 165);
    border-color: rgba(255, 255, 255, 0.5);

}

.slider-nav .prev-btn:active,
.slider-nav .next-btn:active {
    transform: scale(0.95) translateY(0px);
}

.nav-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #2c3e50;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.iku-content {
    position: relative;
    padding-left: 20px;
}

.profile-photos {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    gap: -15px;
    z-index: 10;
}

.photo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-left: -15px;
    transition: transform 0.3s ease;
}

.photo-circle:hover {
    transform: scale(1.1);
    z-index: 20;
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iku-main-content {
    margin-top: 60px;
}

.iku-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.iku-subtitle {
    font-size: 18px;
    color: #db3434;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iku-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.iku-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.iku-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #db3434;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.iku-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: var(--white);
}

.iku-btn i {
    transition: transform 0.3s ease;
}

.iku-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .iku-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .profile-photos {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .iku-main-content {
        margin-top: 0;
        text-align: center;
    }
    
    .iku-stats {
        justify-content: center;
      
    }
}

@media (max-width: 768px) {
    .iku-title {
        font-size: 32px;
    }
    
    .iku-media-container {
        height: 400px;
        margin-bottom: 20px;
    }
    
    .iku-video-slider {
        height: 380px;
        width: 100%;
        gap: 8px;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .iku-video-slider::-webkit-scrollbar {
        display: none;
    }
    
    .video-slide {
        flex: 0 0 180px;
        width: 180px;
        min-width: 180px;
    }
    
    .video-slide.playing {
        transform: none !important;
    }
    
    .video-thumbnail img,
    .video-element {
        width: 180px;
        height: 380px;
    }
    
    .video-info h4 {
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .video-info p {
        font-size: 10px;
    }
    
    .slider-nav {
        top: -40px;
        left: 50%;
    }
    
    .slider-nav .prev-btn,
    .slider-nav .next-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        padding: 10px;
    }
    
    .iku-stats {
        flex-direction: column;
        gap: 20px;
        display: none;
    }
    
    .profile-photos {
        gap: 10px;
    }
    
    .photo-circle {
        width: 50px;
        height: 50px;
        margin-left: -10px;
    }
}

/* İKÜ Bölümleri Styles */
.departments-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.department-tabs {
    margin: 0px 0;
}

.department-tabs .nav-tabs {
    border: none;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 10px;
}

.department-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.department-tabs .nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: #666;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.department-tabs .nav-tabs .nav-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.department-tabs .nav-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
}

.department-tabs .nav-tabs .nav-link i {
    font-size: 16px;
}

.department-content {
    margin-top: 40px;
}

.department-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.department-image {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.department-card:hover .department-image img {
    transform: scale(1.05);
}

.department-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 24, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.department-card:hover .department-overlay {
    opacity: 1;
}

.department-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.department-card:hover .department-link {
    transform: scale(1);
}

.department-info {
    padding: 25px 20px;
}

.department-info h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.department-faculty {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.department-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.department-meta span {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.department-meta .program-type {
    background: var(--green);
    color: var(--white);
}

.department-meta .language {
    background: var(--secondary);
    color: var(--white);
}

/* Responsive Design for Departments */
@media (max-width: 991px) {
    .departments-section {
        padding: 40px 0;
    }
    
    .department-tabs .nav-tabs {
        padding: 10px;
    }
    
    .department-tabs .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .department-image {
        height: 180px;
    }
    
    .department-info {
        padding: 20px 15px;
    }
    
    .department-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .departments-section {
        padding: 20px 0;
    }
    
    .department-tabs .nav-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .department-tabs .nav-tabs .nav-link {
        justify-content: center;
        text-align: center;
        padding: 12px 15px;
    }
    
    .department-image {
        height: 160px;
    }
    
    .department-info h4 {
        font-size: 15px;
    }
    
    .department-faculty {
        font-size: 13px;
    }
    
    .department-meta span {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 575px) {
    .iku-media-container {
        height: 350px;
        margin-bottom: 15px;
    }
    
    .iku-video-slider {
        height: 330px;
        gap: 6px;
        padding: 0 10px;
    }
    
    .video-slide {
        flex: 0 0 160px;
        width: 160px;
        min-width: 160px;
    }
    
    .video-slide.playing {
        transform: none !important;
    }
    
    .video-thumbnail img,
    .video-element {
        width: 160px;
        height: 330px;
    }
    
    .video-info h4 {
        font-size: 11px;
        margin-bottom: 1px;
    }
    
    .video-info p {
        font-size: 9px;
    }
    
    .slider-nav {
        top: -40px;
        left: 50%;
    }
    
    .slider-nav .prev-btn,
    .slider-nav .next-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
        padding: 8px;
    }
    
    .iku-title {
        font-size: 28px;
    }
    
    .iku-subtitle {
        font-size: 16px;
    }
    
    .iku-description {
        font-size: 15px;
    }
    
    .department-tabs .nav-tabs .nav-link {
        font-size: 13px;
        padding: 10px;
    }
    
    .department-tabs .nav-tabs .nav-link i {
        font-size: 14px;
    }
    
    .department-info {
        padding: 15px;
    }
    
    .department-info h4 {
        font-size: 14px;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 375px) {
    .iku-media-container {
        height: 300px;
        margin-bottom: 10px;
    }
    
    .iku-video-slider {
        height: 280px;
        gap: 4px;
        padding: 0 5px;
    }
    
    .video-slide {
        flex: 0 0 140px;
        width: 140px;
        min-width: 140px;
    }
    
    .video-slide.playing {
        transform: none !important;
    }
    
    .video-thumbnail img,
    .video-element {
        width: 140px;
        height: 280px;
    }
    
    .video-info h4 {
        font-size: 10px;
        margin-bottom: 0;
    }
    
    .video-info p {
        font-size: 8px;
    }
    
    .slider-nav {
        top: -40px;
        left: 50%;
    }
    
    .slider-nav .prev-btn,
    .slider-nav .next-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
        padding: 6px;
    }
    
    .iku-title {
        font-size: 24px;
    }
    
    .iku-subtitle {
        font-size: 14px;
    }
    
    .iku-description {
        font-size: 14px;
    }
    
    .iku-stats {
        gap: 15px;
        display: none;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* Campus Locations Section */
.campus-locations {
    padding: 80px 0;
    background: #f8fafc;
    margin-top: 40px;
}

.campus-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.campus-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.campus-card:hover .campus-image img {
    transform: scale(1.1);
}

.campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(227,24,55,0.3), rgba(227,24,55,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.campus-card:hover .campus-overlay {
    opacity: 0.8;
}

.campus-link {
    background: #E31837;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transform: scale(1);
    transition: all 0.3s ease;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.campus-card:hover .campus-link {
    transform: scale(0.8);
    background: white;
    color: #E31837;
}

.campus-link i {
    margin-right: 8px;
    font-size: 16px;
}

.campus-link span {
    white-space: nowrap;
}

.campus-content {
    padding: 25px 20px;
}

.campus-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.campus-address {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.campus-address i {
    color: #E31837;
    margin-right: 8px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .campus-locations {
        padding: 10px 0;
    }
    
    .campus-content h3 {
        font-size: 16px;
        min-height: 44px;
    }
    
    .campus-address {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .campus-locations {
        padding: 10px 0;
    }
    
    .campus-image {
        height: 180px;
    }
    
    .campus-content {
        padding: 20px 15px;
    }
    
    .campus-content h3 {
        font-size: 15px;
        min-height: 40px;
    }
    
    .campus-address {
        font-size: 12px;
    }
    
    .campus-link {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .campus-link i {
        font-size: 14px;
        margin-right: 6px;
    }
}

@media (max-width: 575px) {
    .campus-card {
        margin-bottom: 20px;
    }
    
    .campus-image {
        height: 160px;
    }
    
    .campus-content h3 {
        font-size: 14px;
        min-height: 36px;
    }
    
    .campus-link {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .campus-link i {
        font-size: 12px;
        margin-right: 4px;
    }
    
    .campus-link span {
        font-size: 11px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    max-width: 60px;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    max-width: 200px;
    padding: 15px 20px;
}

.whatsapp-float i {
    font-size: 24px;
    min-width: 24px;
}

.whatsapp-float .whatsapp-text {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Mobil cihazlarda WhatsApp butonu */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        padding: 12px;
        max-width: 50px;
    }
    
    .whatsapp-float:hover {
        max-width: 180px;
        padding: 12px 15px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
        min-width: 20px;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        left: 10px;
        padding: 10px;
        max-width: 45px;
    }
    
    .whatsapp-float:hover {
        max-width: 160px;
        padding: 10px 12px;
    }
    
    .whatsapp-float i {
        font-size: 18px;
        min-width: 18px;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 15px;
    max-width: 90%;
    width: 800px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: between;
    align-items: center;
    background: linear-gradient(135deg, #E31837, #ff4d6b);
    color: white;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    padding: 0;
     position: relative;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1;
}

.modal-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

/* Modern Form Design */
.modal-body .form-builder-section {
    padding: 0;
}

.modal-body .form-builder-section .container {
    max-width: 100%;
    padding: 0;
}

.modal-body .form-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body .form-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.modal-body .form-group {
    margin-bottom: 18px;
    position: relative;
}

.modal-body .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: inherit;
}

.modal-body .form-control:focus {
    border-color: #667eea;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.modal-body .form-control:hover {
    border-color: #adb5bd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.modal-body .form-control::placeholder {
    color: #adb5bd;
    font-style: normal;
}

.modal-body select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 40px;
}

.modal-body select.form-control:focus {
    border-color: #667eea;
}

.modal-body .btn-submit {
    background: linear-gradient(135deg, #6978a5 0%, #2a2375 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.modal-body .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.modal-body .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.modal-body .btn-submit:hover::before {
    left: 100%;
}

.modal-body .btn-submit:active {
    transform: translateY(-1px);
}

/* Checkbox Styles */
.modal-body .checkbox-wrapper {
    margin-bottom: 0;
}

.modal-body .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    position: relative;
    padding-left: 30px;
    font-size: 13px;
    line-height: 1.4;
}

.modal-body .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modal-body .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-body .checkbox-label:hover input ~ .checkmark {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.modal-body .checkbox-label input:checked ~ .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.modal-body .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-body .checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.modal-body .checkbox-text {
    color: #495057;
    flex: 1;
}

.modal-body .kvkk-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 500;
}

.modal-body .kvkk-link:hover {
    color: #5a67d8;
    text-decoration: none;
}



/* Radio Styles */
.modal-body input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: #667eea;
}

/* File Upload Styles */
.modal-body input[type="file"] {
    padding: 20px;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    background: #f8f9fa;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-body input[type="file"]:focus,
.modal-body input[type="file"]:hover {
    border-color: #667eea;
    background: #f0f4ff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

/* Textarea Styles */
.modal-body textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Required Field Indicator */
.modal-body .form-label.required::after {
    content: ' *';
    color: #e74c3c;
    font-weight: bold;
}

/* Alert Styles */
.modal-body .alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.modal-body .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.modal-body .alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 12px 18px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-content {
        padding: 18px;
    }
    
    .modal-body .form-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .modal-body .form-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .modal-body .form-group {
        margin-bottom: 14px;
    }
    
    .modal-body .form-label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .modal-body .form-control {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .modal-body .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 16px;
    }
    
    .modal-body .checkbox-label {
        font-size: 12px;
        padding-left: 26px;
    }
    
    .modal-body .checkmark {
        height: 16px;
        width: 16px;
        top: 1px;
    }
    

}

@media (max-width: 480px) {
    .modal-container {
        max-width: 98%;
        margin: 5px;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 10px 15px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .modal-body .form-title {
        font-size: 18px;
    }
    
    .modal-body .form-description {
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .modal-body .form-group {
        margin-bottom: 12px;
    }
    
    .modal-body .form-label {
        font-size: 11px;
    }
    
    .modal-body .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .modal-body .btn-submit {
        padding: 12px 25px;
        font-size: 13px;
        margin-top: 14px;
    }
    
    .modal-body .checkbox-label {
        font-size: 11px;
        padding-left: 24px;
    }
    
    .modal-body .checkmark {
        height: 14px;
        width: 14px;
    }
    
    .modal-body .checkmark:after {
        left: 4px;
        top: 1px;
        width: 3px;
        height: 6px;
    }
    

}

/* Mobile Header Actions için ek responsive ayarlar */
@media (max-width: 480px) {
    .header-logo img {
        max-height: 60px !important;
    }
    
    .mobile-header-actions {
        display: flex !important;
        gap: 12px;
        position: relative;
        z-index: 1000;
    }
    
    .mobile-form-btn {
        display: flex !important;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 500;
        border-radius: 4px;
        z-index: 1002;
    }
    
    .mobile-form-btn i {
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .mobile-form-btn span {
        font-size: 13px;
        font-weight: 500;
    }
    
    .mobile-menu-btn {
        width: 42px;
        height: 35px;
        font-size: 16px;
        z-index: 1002;
    }
}

/* Mobil cihazlar için header-wrap ayarları */
@media (max-width: 375px) {
    .header-wrap {
        position: relative;
        z-index: 999;
    }
    
    .header-logo img {
        max-height: 55px !important;
    }
    
    .mobile-header-actions {
        display: flex !important;
        gap: 10px;
        position: relative;
        z-index: 1000;
    }
    
    .mobile-form-btn {
        display: flex !important;
        align-items: center;
        gap: 4px;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 3px;
        z-index: 1002;
    }
    
    .mobile-form-btn i {
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .mobile-form-btn span {
        font-size: 12px;
        font-weight: 500;
    }
    
    .mobile-menu-btn {
        width: 38px;
        height: 32px;
        font-size: 14px;
        z-index: 1002;
    }
}

/* Mobil cihazlarda header üst kısmı düzeltme */
@media (max-width: 768px) {
    .header-area {
        position: sticky;
        top: 0;
        z-index: 998;
    }
    
    .main-header {
        position: relative;
        z-index: 999;
        padding: 5px 0;
    }
}