* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Naviqasiya */
.navbar {
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Logonu burada t&#601;nziml&#601; */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00bcd4;
}


/* Mobil Menyu (Hamburger) */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    body { overflow-x: hidden; }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links li {
        margin: 25px 0;
    }

    .burger {
        display: block;
    }
}

/* JS üçün klasslar */
.nav-active {
    transform: translateX(0%);
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }





 .footer {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7a 100%);
            color: white;
            padding: 70px 0 20px;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        @media (max-width: 992px) {
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

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

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #2d76d9;
            border-radius: 2px;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo i {
            color: #2d76d9;
            font-size: 2.5rem;
        }

        .footer-about p {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Quick Links */
        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .footer-links a i {
            color: #2d76d9;
            font-size: 0.9rem;
            width: 20px;
        }

        .footer-links a:hover {
            color: #2d76d9;
            transform: translateX(5px);
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            color: #2d76d9;
            font-size: 1.2rem;
            margin-top: 3px;
            width: 24px;
        }

        .contact-text {
            color: #d1d5db;
            line-height: 1.6;
        }

        .contact-text strong {
            display: block;
            color: white;
            margin-bottom: 3px;
        }

        /* Social Media */
        .social-media {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: #2d76d9;
            transform: translateY(-3px);
        }

        .newsletter-form {
            margin-top: 15px;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter-input::placeholder {
            color: #a0aec0;
        }

        .newsletter-btn {
            background: #2d76d9;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .newsletter-btn:hover {
            background: #1c5bb8;
            transform: translateY(-2px);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            text-align: center;
        }

        .copyright {
            color: #a0aec0;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .payment-icon {
            font-size: 1.8rem;
            color: #d1d5db;
            transition: color 0.3s ease;
        }

        .payment-icon:hover {
            color: #2d76d9;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #2d76d9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(45, 118, 217, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #1c5bb8;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(45, 118, 217, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeIn 0.6s ease-out;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 20px;
            }
            
            .footer-top {
                gap: 30px;
            }
            
            .footer-column h3 {
                font-size: 1.3rem;
            }
            
            .footer-logo {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .social-icons {
                justify-content: center;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
