@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');

.tfyd-style .main-navigation .navbar {
    border-radius: 0;
    box-shadow: var(--box-shadow);
}

.tfyd-style .navbar-nav .nav-link {
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.tfyd-style .navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

.tfyd-style .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--theme-color);
    transition: width 0.3s ease;
}

.tfyd-style .navbar-nav .nav-link:hover::after {
    width: 80%;
}

.tfyd-style .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tfyd-style .dropdown-item {
    font-weight: 400;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.tfyd-style .dropdown-item:hover {
    transform: translateX(5px);
}

.tfyd-style .logo-date-area {
    padding: 8px 15px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tfyd-style .logo-date-area i {
    margin-right: 5px;
}

.tfyd-style .page-header {
    padding: 80px 0 60px;
    position: relative;
}

.tfyd-style .page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 0;
}

.tfyd-style .page-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.tfyd-style .card {
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.tfyd-style .card-header {
    font-weight: 600;
    border: none;
    padding: 20px;
}

.tfyd-style .btn-primary {
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tfyd-style .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tfyd-style .btn-outline-primary {
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tfyd-style .btn-outline-primary:hover {
    transform: translateY(-3px);
}

.tfyd-style .content-wrapper {
    min-height: 100vh;
    padding: 40px 0;
}

.tfyd-style .section {
    padding: 80px 0;
    position: relative;
}

.tfyd-style .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--theme-color) 50%, transparent 100%);
}

.tfyd-style .form-control {
    border: 2px solid #E2E8F0;
    border-radius: 0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.tfyd-style .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tfyd-style .pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tfyd-style .pagination .page-link:hover,
.tfyd-style .pagination .page-item.active .page-link {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tfyd-style .table {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tfyd-style .table thead th {
    font-weight: 600;
    border: none;
    padding: 20px;
}

.tfyd-style .table tbody tr {
    transition: all 0.3s ease;
}

.tfyd-style .table tbody tr:hover {
    transform: scale(1.01);
}

.tfyd-style .alert {
    border: none;
    border-radius: 0;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}



.tfyd-style .breadcrumb-item a {
    font-weight: 500;
    text-decoration: none;
}

.tfyd-style .breadcrumb-item.active {
    font-weight: 600;
}

.tfyd-style .badge {
    border-radius: 0;
    font-weight: 500;
    padding: 8px 15px;
}


@keyframes tfydFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tfyd-style .fade-in-up {
    animation: tfydFadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .tfyd-style .page-title {
        font-size: 2rem;
    }

    .tfyd-style .logo-date-area {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .tfyd-style .navbar-nav .nav-link {
        text-align: center;
        padding: 15px;
    }
}

.tfyd-style .company-card,
.tfyd-style .product-card {
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tfyd-style .company-card:hover,
.tfyd-style .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-color);
}

.tfyd-style .company-card h3,
.tfyd-style .product-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.tfyd-style footer.footer-area {
    position: relative;
}

.tfyd-style footer.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 0;
    transform: translateY(-29px);
}

.tfyd-style #scroll-top {
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tfyd-style #scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.tfyd-style *,
.tfyd-style *::before,
.tfyd-style *::after {
    border-radius: 0 !important;
}

.tfyd-style h1,
.tfyd-style h2,
.tfyd-style h3,
.tfyd-style h4,
.tfyd-style h5,
.tfyd-style h6,
.tfyd-style p,
.tfyd-style div,
.tfyd-style span,
.tfyd-style .text-center,
.tfyd-style .page-title,
.tfyd-style .section-title,
.tfyd-style .card-title,
.tfyd-style .card-text,
.tfyd-style .page-header {
    text-align: left !important;
}

.tfyd-style,
.tfyd-style *:not(i):not(.fa):not(.fab):not(.far):not(.fas):not(.fal):not(.fad):not(.fat):not(.fass) {
    font-family: "Archivo Narrow", sans-serif !important;
}


.online-bilet-fixed {
    display: none !important;
}

body .footer-description{
    text-align: center !important;
}

body .footer-widget-box{
    text-align: center !important;
}

.hero-single .hero-content {
    background-color: #ffffffc9 !important;
}

.hero-single .hero-content .hero-title, .hero-single .hero-content p{
    color: black !important;
}

@media (min-width: 992px) {
    .mytuyap-slider .hero-content .hero-title {
        font-size: 46px !important;
    }
}
.hero-content .marker {
    background-color: #8daf36;
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.1rem;
}
.marker.red {
    background-color: #e6301d !important;
}
.hero-content .color-text {
    color: #8daf36;
}
.hero-content .hastag p {
    text-align: right;
    font-weight: 700;
    font-size: 1.5rem;
    font-style: italic;
}
.hero-content .desc {
    font-size: 1.5rem !important;
    font-weight: 600;
}

.features-wrap .feature-item {
    padding: 25px 25px;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.features-wrap .feature-item:hover {
    transform: translateY(-10px);
}
.features-wrap .feature-item .count {
    font-size: 120px;
    font-weight: 800;
    -webkit-text-stroke: 2px #e6301d;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: -1;
}
.features-wrap .feature-icon {
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}
.features-wrap .feature-icon img {
    width: 80px;
}
.features-wrap .feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    height: 50px;
}

/* Modern Slider Styles */
.tfyd-style .hero-section {
    position: relative;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 50%, #e6301d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tfyd-style .hero-single {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent !important;
}

.tfyd-style .tfyd-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none !important;
    z-index: 0;
}

.tfyd-style .tfyd-bg-1 {
    background: linear-gradient(135deg, #e6301d 0%, #ff4b2b 50%, #ff6b6b 100%) !important;
}

.tfyd-style .tfyd-bg-2 {
    background: linear-gradient(135deg, #c53030 0%, #e6301d 50%, #ff416c 100%) !important;
}

.tfyd-style .tfyd-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.tfyd-style .tfyd-shape {
    position: absolute;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.tfyd-style .tfyd-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: -2s;
}

.tfyd-style .tfyd-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

.tfyd-style .tfyd-shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.tfyd-style .tfyd-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: dotsMove 15s linear infinite;
}

@keyframes dotsMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.tfyd-style .hero-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.6s ease;
}

.tfyd-style .hero-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.tfyd-style .hero-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    color: #2d3748 !important;
    text-shadow: none !important;
}

.tfyd-style .marker {
    background: linear-gradient(45deg, #e6301d, #ff6b6b) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 0px !important;
    display: inline-block !important;
    margin: 0 5px !important;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.tfyd-style .marker:hover {
    transform: rotate(0deg) scale(1.05);
}

.tfyd-style .marker.red {
    background: linear-gradient(45deg, #e6301d, #c53030) !important;
}

.tfyd-style .hero-date {
    margin-bottom: 30px;
}

.tfyd-style .hero-date .date-content p {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    margin: 0 !important;
}

.tfyd-style .hero-content .desc {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #2d3748 !important;
    margin-bottom: 20px !important;
}

.tfyd-style .color-text {
    color: #8daf36 !important;
    font-weight: 800 !important;
}

.tfyd-style .hastag p {
    font-size: 2rem !important;
    font-weight: 800 !important;
    text-align: right !important;
    margin: 0 !important;
    color: #4a5568 !important;
}

.tfyd-style .hero-btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tfyd-style .hero-btn .theme-btn {
    background: linear-gradient(45deg, #e6301d, #ff4b2b) !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.4s ease !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(230, 48, 29, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.tfyd-style .hero-btn .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.tfyd-style .hero-btn .theme-btn:hover::before {
    left: 100%;
}

.tfyd-style .hero-btn .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 48, 29, 0.4) !important;
}

.tfyd-style .hero-btn .theme-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.tfyd-style .hero-btn .theme-btn:hover i {
    transform: translateX(5px);
}

.tfyd-style .hero-scroll-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.tfyd-style .hero-scroll {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
    position: relative;
}

.tfyd-style .scroller {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

.tfyd-style .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 15;
}

.tfyd-style .owl-carousel .owl-nav button {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #2d3748 !important;
    border-radius: 0 !important;
    border: none !important;
    font-size: 20px !important;
    position: absolute !important;
    top: 0 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.tfyd-style .owl-carousel .owl-nav button:hover {
    background: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.tfyd-style .owl-carousel .owl-nav .owl-prev {
    left: 30px !important;
}

.tfyd-style .owl-carousel .owl-nav .owl-next {
    right: 30px !important;
}

.tfyd-style .owl-carousel .owl-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.tfyd-style .owl-carousel .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 0 8px !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.tfyd-style .owl-carousel .owl-dots .owl-dot.active,
.tfyd-style .owl-carousel .owl-dots .owl-dot:hover {
    background: white !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tfyd-style .hero-content {
        padding: 40px 30px;
        border-radius: 0;
    }

    .tfyd-style .hero-title {
        font-size: 2.5rem !important;
    }

    .tfyd-style .hero-content .desc {
        font-size: 1.4rem !important;
    }

    .tfyd-style .hero-btn {
        flex-direction: column;
        align-items: center;
    }

    .tfyd-style .hero-btn .theme-btn {
        width: 100%;
        text-align: center;
    }

    .tfyd-style .tfyd-shape-1,
    .tfyd-style .tfyd-shape-2,
    .tfyd-style .tfyd-shape-3 {
        opacity: 0.5;
    }
}

.nav-right-link,
.logo-date-area {
    display: none;
}
.online-bilet-fixed {
    display: none;
}
.nav-right {
    padding: 0;
}
