/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Modern Navbar Styles */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    min-height: 80px;
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-height: 70px;
}


    width: 81px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.modern-navbar .navbar-logo:hover {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.modern-navbar .nav-link {
    position: relative;
    font-weight: 500;
    color: #2d3748 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.25rem;
    overflow: hidden;
}

.modern-navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #44deef;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
}

.modern-navbar .nav-link:hover::before,
.modern-navbar .nav-link.active::before {
    left: 0;
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link.active {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68, 222, 239, 0.3);
}

.modern-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #44deef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.modern-navbar .nav-link:hover::after,
.modern-navbar .nav-link.active::after {
    width: 80%;
}

/* Modern Notification Button */
.modern-notification-btn {
    background: #44deef;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(68, 222, 239, 0.3);
}

.modern-notification-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #22b6c7;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-notification-btn:hover::before {
    left: 0;
}

.modern-notification-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(68, 222, 239, 0.4);
}

.modern-notification-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-notification-btn:hover i {
    transform: scale(1.2);
}

.modern-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

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

/* Modern User Button */
.modern-user-btn {
    background: #44deef;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(68, 222, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-user-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #22b6c7;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-user-btn:hover::before {
    left: 0;
}

.modern-user-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 222, 239, 0.4);
}

.modern-user-btn span {
    position: relative;
    z-index: 1;
}

/* Modern Login Button */
.modern-login-btn {
    background: #44deef;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(68, 222, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #22b6c7;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-login-btn:hover::before {
    left: 0;
}

.modern-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(68, 222, 239, 0.4);
}

.modern-login-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-login-btn:hover i {
    transform: translateX(3px);
}

/* Modern Dropdown Menu */
.modern-dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-dropdown-menu {
    min-width: 350px;
    max-width: 400px;
}

.notification-list-container {
    max-height: 350px;
    overflow-y: auto;
}

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

.modern-dropdown-item {
    color: #2d3748;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.modern-dropdown-item:hover {
    background: #44deef;
    color: #fff;
    transform: translateX(5px);
}

.modern-dropdown-item i {
    transition: all 0.3s ease;
}

.modern-dropdown-item:hover i {
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .modern-navbar {
        min-height: 70px;
    }
    
    .modern-navbar .navbar-logo {
        height: 48px;
    }
    
    .modern-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .modern-navbar .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .modern-navbar .navbar-toggler {
        border: none;
        padding: 0.5rem;
        border-radius: 12px;
        background: #44deef;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .modern-navbar .navbar-toggler:hover {
        transform: scale(1.1);
    }
    
    .modern-navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(68, 222, 239, 0.25);
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 80px;
}

body.scrolled {
    padding-top: 70px;
}


/* Services Section */
.services-section .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.services-section .card-body {
    padding: 2rem;
}

/* Testimonials Section */
.testimonials-section .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.testimonials-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #44deef !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}

.testimonials-section .owl-nav button.owl-prev {
    left: -20px;
}

.testimonials-section .owl-nav button.owl-next {
    right: -20px;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #44deef !important;
}

.nav-link {
    color: #44deef !important;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #000;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

footer p {
    color: #44deef;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #44deef !important;
} 
/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.login-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.login-image-side {
    background: linear-gradient(135deg, #44deef 0%, #fff 100%);
}

.login-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.login-logo {
    filter: brightness(0) invert(1);
}

.login-form-floating > .form-control {
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.login-form-floating > label {
    padding: 1rem 0.75rem;
}

.login-form-floating > .form-control:focus ~ label,
.login-form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.login-btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form elemanları için özel stiller */
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Responsive düzenlemeler */
@media (max-width: 767.98px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-card {
        margin: 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-danger {
    background-color: #fff5f5;
    color: #dc3545;
}

.alert-success {
    background-color: #f0fff4;
    color: #28a745;
}

.alert-warning {
    background-color: #fffaf0;
    color: #ffc107;
}

.alert-info {
    background-color: #f0f9ff;
    color: #17a2b8;
}

.alert i {
    font-size: 1.25rem;
}

.alert ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.alert ul li {
    margin-bottom: 0.25rem;
}

.alert .btn-close {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.alert .btn-close:hover {
    opacity: 1;
}

/* Register sayfası için stiller */
.register-image-side {
    background: none;
    padding: 0;
    overflow: hidden;
}

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

/* Form hata mesajları için stiller */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Profil Sayfası Stilleri */
.profile-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid white;
}

.profile-photo-edit {
    width: 40px;
    height: 40px;
}

.bg-gradient-primary {
    background: linear-gradient(45deg, #4e73df, #000000);
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box {
    transition: all 0.3s ease;
}

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

.document-box {
    transition: all 0.3s ease;
}

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

.card {
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .container-fluid {
        padding: 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .info-box, .document-box {
        margin-bottom: 1rem;
    }
}

.kurumsal-navbar {
    background: linear-gradient(90deg, #fff 80%, #44deef 100%);
    min-height: 72px;
    box-shadow: 0 2px 16px rgba(68,222,239,0.08);
    border-bottom: 1.5px solid #eafafd;
    z-index: 100;
}

.nav-link-custom {
    font-weight: 500;
    font-size: 1.08rem;
    color: #222;
    padding: 0.7rem 1.1rem;
    border-radius: 8px;
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.nav-link-custom.active, .nav-link-custom:hover {
    color: #44deef !important;
    background: rgba(68,222,239,0.08);
    box-shadow: 0 2px 8px rgba(68,222,239,0.08);
    text-shadow: 0 1px 0 #fff;
}
.notification-btn {
    background: #fff;
    color: #44deef;
    border: 1.5px solid #eafafd;
    box-shadow: 0 2px 8px rgba(68,222,239,0.10);
    transition: all 0.18s;
}
.notification-btn:hover {
    background: #44deef;
    color: #fff;
}
.notification-badge {
    font-size: 0.85rem;
    z-index: 2;
    top: 2px !important;
    right: 2px !important;
}
.user-btn {
    background: #fff;
    color: #222;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.18s;
}
.user-btn:hover, .user-btn:focus {
    background: #44deef;
    color: #fff;
}
.login-btn {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.18s;
    border: 2px solid #44deef;
    color: #44deef;
    background: #fff;
}
.login-btn:hover {
    background: #44deef;
    color: #fff;
    box-shadow: 0 2px 8px rgba(68,222,239,0.12);
}
@media (max-width: 991.98px) {

    .navbar-logo {
        width: 86px;
    }
}


.sade-navbar {
    background: #fff;
    min-height: 64px;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: none;
    z-index: 100;
}



.notification-btn-sade {
    background: none;
    color: #222;
    border: none;
    box-shadow: none;
    transition: color 0.18s;
}
.notification-btn-sade:hover {
    color: #44deef;
    background: none;
}
.notification-badge-sade {
    font-size: 0.85rem;
    z-index: 2;
    top: 2px !important;
    right: 2px !important;
}
.user-btn-sade {
    background: none;
    color: #222;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.18s;
}
.user-btn-sade:hover, .user-btn-sade:focus {
    color: #44deef;
    background: none;
}
.nav-btn-sade {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #44deef;
    color: #44deef;
    background: #fff;
    box-shadow: none;
    transition: all 0.18s;
}
.nav-btn-sade:hover {
    background: #44deef;
    color: #fff;
}



/* Ana renk override (Bootstrap mavi yerine #44deef) */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    background-color: #44deef !important;
    border-color: #44deef !important;
    color: #fff !important;
}
.btn-primary:hover {
    background-color: #22b6c7 !important;
    border-color: #22b6c7 !important;
    color: #fff !important;
}
.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    border-color: #44deef !important;
    color: #44deef !important;
    background: #fff !important;
}
.btn-outline-primary:hover {
    background: #44deef !important;
    color: #fff !important;
    border-color: #44deef !important;
}
.bg-primary {
    background-color: #44deef !important;
    color: #fff !important;
}
.text-primary {
    color: #06262a !important
}
.badge.bg-primary {
    background-color: #44deef !important;
    color: #fff !important;
}
.border-primary {
    border-color: #44deef !important;
}
.nav-link.active, .nav-link:focus {
    color: #44deef !important;
}