

body {
    font-family: "Roboto", sans-serif;
}

.text-muted,
small.text-muted {
    --bs-secondary-color: #4a5468;
    color: #4a5468 !important;
}

*:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not([class*=" fa-"]):not([class^="fa-"]):not(iconify-icon) {
    font-family: "Roboto", sans-serif;
}

a:hover {
    color: #114395;
}

.left-frame-inside {
    max-width: 260px;
    height: 100%;
    position: relative;
    padding-bottom: 160px;
    
}

.logo-box {
    padding-top: 20px;
}

.left-frame {
    background: #ffffff url('../img/left-background.webp') no-repeat center bottom;
    background-size: cover;
    height: 100vh;
    width: 240px;
    box-shadow: 10px 0 30px rgba(14, 65, 148, 0.05);
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    border-right: 1px solid rgba(14, 65, 148, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
}

.left-frame-inside {
    flex: 1;
    overflow-y: auto;
    padding: 30px 0;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
}

.left-frame-inside::-webkit-scrollbar {
    display: none;
}

.applications-column {
    width: 100%;
    padding: 0 20px;
}

.application-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f8faff;
    border: 1px solid rgba(14, 65, 148, 0.03);
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
}

.application-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(14, 65, 148, 0.08);
    border-color: #114395;
}

.application-button img {
    width: 52px;
    
    height: 52px;
    object-fit: contain;
    margin-bottom: 5px;
}

.application-button small {
    color: #333;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
    line-height: 1.1;
}

.launchpad-trigger {
    border: 1px dashed #114395 !important;
    background: #fff;
    padding: 5px !important;
    margin-bottom: 5px !important;
}

.launchpad-trigger img,
.launchpad-trigger .launchpad-icon-box {
    margin-bottom: 2px !important;
}

.launchpad-trigger small {
    font-size: 9px !important;
}

.launchpad-icon-box {
    font-size: 20px;
    color: #114395;
    margin-bottom: 5px;
}

.president-box {
    padding: 0;
    text-align: center;
    background: transparent;
    border-top: none;
    z-index: 10;
    flex-shrink: 0;
    width: 100%;
    position: relative;
}

.president-box a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    position: relative;
}

.president-box img {
    width: 100%;
    max-width: 150px; 
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
    border: none;
    transition: transform 0.3s ease;
    transform-origin: bottom center;
}

.president-title-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #114395;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(17, 67, 149, 0.3);
    z-index: 12;
    pointer-events: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.president-box:hover img {
    transform: scale(1.05);
}

.president-box:hover .president-title-badge {
    transform: translateX(-50%) scale(1.05);
    background-color: #1754b5;
}

.president-nameplate {
    margin-top: -25px;
    background: #114395;
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(17, 67, 149, 0.2);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.president-nameplate small {
    display: block;
    font-size: 9px;
    opacity: 0.8;
    margin-bottom: 1px;
}

.service-launchpad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-launchpad.active {
    display: flex;
    opacity: 1;
}

.launchpad-container {
    width: 1320px;
    max-width: 98%;
    margin: auto;
    background: white;
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.launchpad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.launchpad-close {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.launchpad-close:hover {
    background: #ff4d4d;
    color: white;
    transform: rotate(90deg);
}

.launchpad-grid-wrapper {
    overflow-y: auto;
    padding-right: 10px;
}

.launchpad-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    background: #f8faff;
    border: 1px solid transparent;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}

.launchpad-item:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(17, 67, 149, 0.1);
    border-color: #114395;
}

.lp-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.lp-icon img {
    max-width: 70px;
    max-height: 70px;
}

.lp-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

section.main-frame {
    flex: 1;
    margin-left: 240px;
    width: calc(100% - 240px);
    transition: all 0.5s ease;
    position: relative;
}

.president-box {
    cursor: pointer;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    position: fixed;
    left: 240px;
    right: 0;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: left 0.5s ease;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

button.open-menu {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

button.open-menu img {
    width: 24px;
    filter: brightness(0);
    
}

.atatuk-yenisehir {
    max-height: clamp(40px, 3.5vw, 60px);
    margin-left: clamp(10px, 1.5vw, 20px);
    object-fit: contain;
}

.menu-category-title {
    font-size: 20px;
    font-weight: 800;
    color: #114395;
    
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-list li a i.fa-chevron-right {
    font-size: 9px;
    color: #114395;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.menu-item-list li a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    
    transition: all 0.3s;
    line-height: 1.2;
    padding: 5px 0;
}

.menu-item-list li a:hover {
    color: #114395;
    padding-left: 10px;
}

.contact-list li a {
    font-weight: 500;
    color: #222;
    padding-left: 0;
}

.contact-list li a i {
    width: 40px;
    
    color: #114395;
    margin-right: 20px;
    
    font-size: 18px;
}

.menu-footer-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header nav {
    min-height: 90px;
    height: auto;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 100px;
    box-shadow: 0px 0px 30px #0e419414;
    margin-right: 15px;
    background: white;
}

header nav img {
    max-height: 55px;
    width: auto;
}

header nav a {
    display: block;
    padding: 10px clamp(6px, 0.8vw, 12px);
    font-size: clamp(11px, 0.8vw, 14px);
    text-decoration: none;
    color: black;
    font-weight: 900;
    white-space: nowrap;
}

a.nav-blue-btn {
    background: #114395;
    color: white;
    border-radius: 150px;
}

a.nav-red-btn {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    color: #fff !important;
    border-radius: 150px;
    margin-left: 10px;
    padding: 8px 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
    position: relative;
    z-index: 2; 
    overflow: visible;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: clamp(11px, 0.8vw, 14px);
    text-decoration: none !important;
    cursor: pointer;
}
a.nav-red-btn > * {
    position: relative;
    z-index: 3;
    pointer-events: none; 
}
a.nav-red-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(185, 28, 28, 0.55);
    color: #fff !important;
}

a.nav-red-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.6);
    animation: nav-red-pulse 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none;
}
@keyframes nav-red-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(185, 28, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

a.nav-red-btn:hover::before {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    a.nav-red-btn::before { animation: none; }
}

@media (max-width: 991px) {
    a.nav-red-btn { display: none; }
}

.main-frame-overflow {
    padding-top: 200px;
    padding-bottom: 40px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav button {
    font-size: 90px !important;
}

.home-actions-box {
    height: 100%;
    border-radius: 50px;
    background: #0e419426;
    padding: 25px 50px;
}

.input-actions input {
    width: 100%;
    margin-left: 10px;
    background: none;
    border: none;
    border-bottom: 1px solid #0000004f;
}

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

.home-actions-buttons-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.home-actions-buttons-box a {
    display: block;
    width: 50%;
    padding: 20px 0px;
    text-decoration: none;
}

.home-actions-buttons-box a span {
    margin-left: 10px;
    font-weight: 600;
    color: black;
    text-decoration: none;
}

.home-actions-box {
    border-top-right-radius: 0;
    position: relative;
}

.home-actions-box::after {
    content: "";
    width: 16px;
    height: 16px;
    background: #114395;
    border-radius: 150px;
    position: absolute;
    top: 25px;
    right: 25px;
}

a.fullwidth-btn {
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 20px;
    text-decoration: none;
    color: black;
    font-weight: 900;
}

header {
    z-index: 9;
}

.home-twitter-box {
    background: white;
    box-shadow: 0px 0px 30px #0e419414;
    border-radius: 50px;
    padding: 50px;
    border-bottom-left-radius: 0;
    position: relative;
    margin-top: 50px;
}

img.home-twitter-icon {
    position: absolute;
    top: -25px;
    left: 50px;
}

.home-twitter-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home-twitter-info img {
    margin-right: 20px;
}

.home-twitter-info span img {
    margin-right: 0;
    margin-left: 10px;
}

.home-twitter-bio {
    font-size: 14px;
    margin-top: 20px;
}

.home-twitter-arrows {
    display: flex;
}

.home-twitter-arrows button {
    width: 50%;
    background: none;
    border: none;
    position: relative;
}

.home-twitter-arrows {
    margin-top: 20px;
    padding-top: 20px;
}

button.down-scroll-arrow span {
    display: block;
    position: absolute;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    top: -10px;
    left: 30px;
}

button.down-scroll-arrow {
    text-align: left;
}

button.right-scroll-arrow img {
    transform: rotate(270deg);
}

button.right-scroll-arrow {
    text-align: right;
}

button.right-scroll-arrow span {
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    right: 18px;
    top: 13px;
    display: block;
}

.home-twitter-arrows button:hover {
    transform: scale(1.05);
}

.hidden-nav-menu {
    background: white;
    width: calc(100% - 100px);
    max-width: 1400px;
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    border-radius: 40px;
    box-shadow: 0px 50px 100px rgba(14, 65, 148, 0.2);
    padding: 30px 40px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    visibility: hidden;
}

.hidden-nav-menu::-webkit-scrollbar {
    width: 6px;
}

.hidden-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(17, 67, 149, 0.2);
    border-radius: 10px;
}

.hidden-nav-menu.active {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

button.hidden-nav-menu-close-btn {
    border: none;
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40px;
    right: 40px;
    transition: all 0.3s;
}

button.hidden-nav-menu-close-btn:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.menu-category-title {
    font-size: 18px;
    font-weight: 800;
    color: #114395;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.menu-item-list li {
    margin-bottom: 8px;
}

.menu-item-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.menu-item-list li a i.fa-chevron-right {
    font-size: 10px;
    color: #114395;
    margin-right: 12px;
    opacity: 0.7;
}

.menu-item-list li a:hover {
    color: #114395;
    padding-left: 8px;
}

.contact-list li a i {
    width: 25px;
    color: #114395;
    margin-right: 10px;
}

.tax-card {
    background: #114395;
    color: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(17, 67, 149, 0.3);
}

.tax-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.menu-footer-item {
    padding: 20px;
    transition: all 0.3s;
}

.menu-footer-item h5 {
    font-weight: 800;
    font-size: 18px;
    color: #333;
}

.menu-footer-item a {
    display: block;
    margin-top: 10px;
    color: #114395;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.menu-footer-item img {
    height: 45px;
    width: auto;
}

.menu-footer-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

.menu-footer-item.dropdown .dropdown-menu {
    margin-top: 0;
    transition: all 0.3s ease;
}

.menu-footer-item.dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.cursor-pointer {
    cursor: pointer;
}

h2.menu-col-head {
    margin-bottom: 40px;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-size: cover;
    background-position: center;
}

.background {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

header.out {
    top: -100%;
}

section.left-frame.out {
    left: -100%;
}

section.main-frame.out {
    opacity: 0;
}

.owl-dots {
    display: none;
}

.news-section {
    margin-top: 30px;
}

.news-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #0d2d6e;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.news-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #114395, #0081be);
    border-radius: 2px;
}

.justify-content-space-between {
    justify-content: space-between;
}

.news-section a {
    text-decoration: none;
    color: #114395;
}

.premium-card {
    background: linear-gradient(145deg, #ffffff, #f0f5ff);
    border: 1px solid rgba(17, 67, 149, 0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(14, 65, 148, 0.08), 0 1px 4px rgba(0,0,0,0.05);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.premium-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #114395, #0081be);
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.premium-card:hover::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(14, 65, 148, 0.16), 0 4px 10px rgba(0,0,0,0.06);
    border-color: rgba(17, 67, 149, 0.2);
}

.premium-card-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
}

.premium-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .premium-card-img img {
    transform: scale(1.07);
}

.premium-card-content {
    padding: 20px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-card-date {
    font-size: 11px;
    font-weight: 700;
    color: #0081be;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e5e;
    line-height: 1.3;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    
}

.premium-card:hover .premium-card-title {
    color: #114395;
}

.premium-card-text {
    font-size: 15px;
    color: #4a5468;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 67, 149, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-card-btn {
    color: #114395;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.premium-card-btn.stretched-link::after {
    z-index: 10;
}

.premium-card:hover .premium-card-btn {
    color: #0081be;
}

.homepage-section {
    padding: 40px 30px;
    border-radius: 24px;
    margin-bottom: 10px;
}
.section-light {
    background: linear-gradient(135deg, #f8faff 0%, #eef3fc 100%);
    border: 1px solid rgba(17, 67, 149, 0.06);
}
.section-blue-soft {
    background: linear-gradient(135deg, #e8f0fd 0%, #dceafc 100%);
    border: 1px solid rgba(17, 67, 149, 0.1);
}
.section-dark-accent {
    background: linear-gradient(135deg, #0d2d6e 0%, #114395 60%, #0081be 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(13, 45, 110, 0.25);
}
.section-dark-accent .news-section h2::after {
    background: rgba(255, 255, 255, 0.4);
}
.section-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #114395;
    border: 1.5px solid rgba(17, 67, 149, 0.25);
    border-radius: 50px;
    padding: 6px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
.section-more-btn:hover {
    background: #114395;
    color: white;
    border-color: #114395;
    gap: 10px;
}

.blog-box-wrapper {
    padding: 10px;
}

.row.blog-news-boxes {
    padding: 0px 1.5rem;
}

.ilan-action-flex {
    display: flex;
    align-items: center;
}

.blog-box.ilan-action {
    background: #114395;
    color: white;
    cursor: pointer;
}

.ilan-action-flex img {
    margin-right: 10px;
}

.ilan-action-flex h5 {
    margin: 0;
}

span.ilan-action-arrow {
    display: block;
    text-align: right;
}

.blog-box.ilan-action:hover {
    padding-left: 40px;
}

.blog-box.ilan-action:hover span {
    padding-right: 30px;
}

span.more-applications-open {
    font-size: 14px;
    opacity: .5;
    line-height: 1.2;
    right: -10px;
    position: relative;
}

a.pay-tax {
    display: block;
    height: 100%;
    width: 100%;
    background: #114395;
    border-radius: 25px;
    padding: 25px;
    color: white;
    position: relative;
}

a.pay-tax img {
    margin-right: 20px;
}

a.pay-tax b {
    font-size: 1.2rem;
}

a.pay-tax p {
    margin-top: 20px;
}

span.bottom-right-absolute {
    position: absolute;
    bottom: 0;
    right: 25px;
}

nav.mobile-header {
    display: none;
    z-index: 2;
}

.blog-img {
    background-size: cover !important;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #114395;
    margin-bottom: 15px
}

button.list-box-header-button img {
    max-height: 16px;
}

button.list-box-header-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: none;
    padding: 15px 20px;
    border-right: 1px solid gainsboro;
}

.list-box {
    margin-top: 50px;
    background: white;
    box-shadow: 0px 0px 30px #0e419414;
    border-radius: 10px;
}

.list-box-content {
    padding: 15px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
}

.list-box-rows {
    border-top: 1px solid gainsboro;
}

.icon-input input,
.icon-input select {
    min-width: 250px;
    border: none;
    background: none;
    border-bottom: 1px solid gainsboro;
    margin-left: 15px;
}

.icon-input {
    margin: 15px;
}

.reverse_sort img {
    transform: rotate(180deg);
}

button.transparent-btn {
    background: none;
    border: none;
    margin: 5px;
}

img.blog-image {
    border-radius: 25px;
    border: 15px solid white;
    margin-top: 20px;
    box-shadow: 0px 0px 30px #0e419414;
    max-width: 100%;
}

img.blog-small-image {
    border-radius: 25px;
    border: 15px solid white;
    margin-top: 20px;
    box-shadow: 0px 0px 30px #0e419414;
    position: absolute;
    bottom: 0;
    right: 0;
}

a.service-btn {
    display: block;
    width: 100%;
    background: white;
    box-shadow: 0px 0px 30px #0e419414;
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    font-weight: 700;
    color: black;
    font-size: 20px;
    margin-bottom: 30px;
}

a.service-btn img {
    margin-right: 20px;
}

a.service-btn span {
    text-decoration: none;
}

.google-map-circle {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    border: 10px solid white;
    box-shadow: 0px 0px 30px #0e419414;
    margin-bottom: 20px;
}

.contact-page a.service-btn {
    line-height: 1;
}

.contact-page a.service-btn small {
    color: #00000075;
}

.contact-page a.service-btn b small {
    color: black;
}

.row.president-title-flexbox {
    align-items: center;
}

.president-title-section h1 {
    font-size: 96px;
    margin-bottom: 0;
    color: black;
}

.president-title-section h4 {
    font-size: 32px;
}

.president-tab-content {
    display: none;
}

.president-tab-content.active {
    display: block;
}

.president-tab-contents-wrapper {
    box-shadow: 0px 0px 30px #0e419414;
    background: white;
    padding: 25px;
    border-radius: 25px;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

button.tab-btns {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 30px #0e419414;
    border-radius: 15px;
    border: none;
    background: white;
    text-align: right;
    padding-right: 60px;
    position: relative;
    right: -25px;
    z-index: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: white;
    opacity: .5;
    font-size: 18px;
}

button.tab-btns.active {
    opacity: 1;
    font-weight: 500;
}

.blurred-background {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-theme * {
    color: white;
}

.principles-card {
    padding: 30px;
    border-radius: 18px;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.principles-card * { color: #fff !important; }
.principles-card h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}
.principles-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 1.25rem !important;
    opacity: 0.95;
}

.principles-card img {
    margin-right: 18px;
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.principles-card:hover {
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

@media (max-width: 575px) {
    .principles-card { padding: 22px; border-radius: 14px; }
    .principles-card img { margin-right: 14px; width: 44px; height: 44px; }
    .principles-card p { margin-top: 0.85rem !important; font-size: 0.88rem; }
}

.principles-card.green {
    background: #0fb769a3;
}

.principles-card.light-blue {
    background: #0facb7ad;
}

.principles-card.red {
    background: #b70f3fbf;
}

.principles-page a {
    text-decoration: none;
}

.principles-card.yellow {
    background: #b77c0fa6;
}

.principles-card.pink {
    background: #b70f7fa6;
}

.principles-card.dark-blue {
    background: #0f71b7ab;
}

.principles-page .transparent-btn {
    margin: 0px 50px;
}

.dark-theme a.service-btn span {
    color: black !important;
}

.principles-page a.service-btn {
    height: 100%;
    background: #ffffff69;
    color: white !important;
}

.mobile-quick-menu {
    display: none;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
}

.lightbox-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000c7;
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    color: white;
    font-size: 24px;
    background: #ff4d4d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 4100;
    border: 2px solid white;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5001;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lightbox-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5005;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #e60000;
}

.lightbox-inner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-inner-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.application-button img {
    max-width: 110px;
    width: 10z0px;
}

img.atatuk-yenisehir {
    max-height: 150px;
    border-radius: 300px;
}

.president-title-section {
    text-align: center;
}

.applications-column img {
    max-height: 230px;
}

.applications-column.hidden .application-button {
    display: none;
}

.applications-column {
    max-height: fit-content;
    margin: auto;
}

.blog-details {
    min-height: 170px;
}

.site-footer {
    background: #0d2e63;
    color: #ffffff;
    padding: 40px 0 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    transition: none !important;
}

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

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #c8102e;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 8px;
    transform: none;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact li i {
    color: #c8102e;
    font-size: 18px;
    margin-top: 5px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.footer-contact li div small {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-contact li div a,
.footer-contact li div span {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.footer-contact li div a:hover {
    color: #c8102e;
    transform: none;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.footer-socials a:hover {
    background: #c8102e;
    transform: translateY(-5px);
}

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

.footer-bottom {
    font-size: 14px;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-socials {
        justify-content: center;
    }
}

.premium-ilan-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(14, 65, 148, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-top: 4px solid #114395;
}

.premium-ilan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 65, 148, 0.15);
}

.premium-ilan-icon {
    width: 50px;
    height: 50px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #114395;
    font-size: 24px;
    transition: all 0.3s ease;
}

.premium-ilan-card:hover .premium-ilan-icon {
    background: #114395;
    color: white;
}

.premium-ilan-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-ilan-date {
    font-size: 12px;
    color: #4a5468;
    font-weight: 600;
    margin-top: auto;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-ilan-btn {
    color: #114395;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.premium-ilan-btn:hover {
    color: #0056b3;
}

.premium-ilan-action-card {
    background: #114395;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.premium-ilan-action-card:hover {
    transform: translateY(-8px);
    background: #0d3578;
}

.premium-ilan-action-card h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.premium-ilan-action-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.premium-ilan-action-card i.action-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.1;
    color: white;
    transform: rotate(-15deg);
}

.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-flex;
    width: auto;
    margin: 0 auto 1.5rem auto !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.custom-breadcrumb li {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.custom-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-breadcrumb li a:hover {
    color: #fff !important;
    opacity: 1;
}

.custom-breadcrumb li.active {
    color: #fff;
}

.custom-breadcrumb.dark-mode {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.05);
}

.custom-breadcrumb.dark-mode li a {
    color: rgba(0, 0, 0, 0.5) !important;
}

.custom-breadcrumb.dark-mode li a:hover {
    color: #114395 !important;
}

.custom-breadcrumb.dark-mode li.active {
    color: #114395;
}

.custom-breadcrumb.dark-mode li+li::before {
    color: rgba(0, 0, 0, 0.2);
}

.custom-breadcrumb li+li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

.news-hero .breadcrumb-item+.breadcrumb-item::before,
.ann-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer {
    background: #114395;
    color: #fff;
    padding: 60px 0 30px;
    margin-left: 240px;
    position: relative;
    z-index: 10;
}

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

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

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

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

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

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

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

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

.footer-contact li {
    margin-bottom: 15px;
}

.footer-contact li small {
    display: block;
    font-size: 10px;
    opacity: 0.5;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #fff;
    color: #114395;
    transform: translateY(-3px);
}

.footer-socials i {
    font-size: 16px;
}

.footer-hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    font-size: 13px;
}

.page-header-premium {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #edf2f7;
    text-align: center;
}

.page-header-premium {
    background: linear-gradient(135deg, #114395 0%, #002d72 100%);
    padding: 65px 0 40px 0;
    margin-top: -60px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../uploads/mersin-yenisehir-yatay-logo.png') no-repeat;
    background-size: 350px auto;
    background-position: 20px center;
    opacity: 0.85;
    pointer-events: none;
}

.page-header-premium h1,
.page-header-premium .text-primary {
    color: #ffffff !important;
}

.page-header-premium p,
.page-header-premium .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-header-premium::after {
    display: none;
}

.text-primary {
    color: #114395 !important;
}

.text-brand {
    color: #114395;
}

@media (max-width: 991px) {
    .site-footer {
        margin-left: 0;
        padding-bottom: 100px;
    }
}

.yt-lite { position: relative; cursor: pointer; background: #000; }
.yt-lite img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease; }
.yt-lite:hover img { opacity: .92; }
.yt-lite .yt-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 0; padding: 0; background: transparent;
    cursor: pointer; transition: transform .15s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.yt-lite .yt-play-btn:hover,
.yt-lite:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.yt-lite iframe { width: 100%; height: 100%; border: 0; }
.yt-lite.activated img,
.yt-lite.activated .yt-play-btn { display: none; }

.menu-item-list li.has-mega-sub {
    position: relative;
}
.menu-item-list li.has-mega-sub > a {
    display: flex;
    align-items: center;
}
.mega-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -8px;
    min-width: 230px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(17, 67, 149, 0.18);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    z-index: 99999;
    border: 1px solid rgba(17, 67, 149, 0.08);
    animation: mega-sub-fade 0.18s ease;
}
@keyframes mega-sub-fade {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
.menu-item-list li.has-mega-sub:hover > .mega-submenu,
.menu-item-list li.has-mega-sub:focus-within > .mega-submenu {
    display: block;
}
.mega-submenu li {
    list-style: none;
}
.mega-submenu li a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 16px !important;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
    border-radius: 0 !important;
}
.mega-submenu li a:hover,
.mega-submenu li a:focus {
    background: #f4f7fb;
    color: #114395 !important;
}
.mega-submenu li a i {
    font-size: 10px;
    color: #114395;
    opacity: 0.6;
}
.mega-sub-arrow {
    transition: transform 0.15s;
}
.menu-item-list li.has-mega-sub:hover > a .mega-sub-arrow {
    transform: translateX(3px);
    opacity: 1 !important;
}

@media (max-width: 991px) {
    .mega-submenu {
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 20px;
        animation: none;
    }
}

.slider-wrapper { position: relative; }
.slider-wrapper .slider-link {
    display: block;
    position: relative;
    z-index: 1;
}
.slider-wrapper .slider-link img,
.slider-wrapper .slider-link .slider-caption {
    pointer-events: none; 
}
.slider-wrapper .slider-link:hover { cursor: pointer; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    z-index: 10;
    background: rgba(0,0,0,0.4) !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1 !important;
}
.owl-carousel .owl-nav button.owl-prev { left: 14px; }
.owl-carousel .owl-nav button.owl-next { right: 14px; }
.owl-carousel .owl-nav button:hover { background: rgba(0,0,0,0.7) !important; }

.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    opacity: 1;
    transition: all 0.25s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    width: 64px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(17, 67, 149, 0.85);
    border-radius: 50%;
    background-size: 22px 22px;
    background-position: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.85);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #0d2d6e;
    transform: scale(1.08);
}
@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next { width: 44px; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 38px; height: 38px;
        background-size: 18px 18px;
    }
}
