* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* رەڭ ئۆزگەرگۈچى قىممەتلەر */
:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --light-green: #a8e6cf;
    --dark: #2c3e50;
    --darker: #1a252f;
    --light: #ecf0f1;
    /* ئالتۇن رەڭ قىممىتى */
    --gold: #FFD700;
    --gold-dark: #DAA520;
}

body {
    font-family: 'Noto Sans Arabic', 'Noto Nastaliq Urdu Draft', Arial, sans-serif;
    direction: rtl;
    background-color: var(--light);
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ecc71' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    box-shadow: none;
    color: white;
    padding: 3rem 0 2rem 0;
    text-align: center;
}

nav {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    box-shadow: none;
}

nav ul {
    list-style: none; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

nav ul li a {
    color: white;  /* خەت رەڭىنى ئاققا ئۆزگەرتىش */
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-family: 'UKIJ Ekran', Arial, sans-serif;
}

/* باش بەت ئۇلانمىسى */
nav ul li:nth-child(1) a {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

/* مۇلازىمەت تۈرلىرى ئۇلانمىسى */
nav ul li:nth-child(2) a {
    background: linear-gradient(45deg, #3498db, #2980b9);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* ئالاقە ئۇلانمىسى */
nav ul li:nth-child(3) a {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* چېكىلگەندىكى ئۈنۈم */
nav ul li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* چاقناش ئۈنۈمى */
nav ul li a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    pointer-events: none;
}

nav ul li a:hover::before {
    animation: shine 1s forwards;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* ئاكتىپ ھالەت */
nav ul li a.active {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-family: 'Noto Nastaliq Urdu Draft', 'Noto Sans Arabic', Arial, sans-serif;
    color: var(--dark);
}

h1 {
    margin-bottom: 1rem;
    font-family: 'Noto Nastaliq Urdu Draft', 'Noto Sans Arabic', Arial, sans-serif;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    letter-spacing: 1px;
    /* ئالتۇن رەڭلىك يالتىراش ئانىماتسىيەسى */
    animation: goldShine 2s infinite;
}

/* ئالتۇن رەڭلىك يالتىراش ئانىماتسىيەسى */
@keyframes goldShine {
    0% {
        color: var(--gold);
    }
    50% {
        color: var(--gold-dark);
    }
    100% {
        color: var(--gold);
    }
}

footer {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    backdrop-filter: blur(5px);
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    align-items: start;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.1);
    position: sticky;
    top: 2rem;
    height: calc(100vh - 4rem);
    overflow-y: auto;
}

.widget {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    /* سول تەرەپتىكى يېشىل سىزىقنى ئۆچۈرۈش */
    border-left: none;
}

#clock {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

#date {
    text-align: center;
    color: var(--dark);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.course-card {
    transition: all 0.3s ease;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--light-green);
}

.course-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.calendar {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    direction: rtl;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.calendar-header button:hover {
    background: #45a049;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    background: #f0f0f0;
    padding: 10px 0;
    border-radius: 5px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px 0;
}

.days div {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.days div:hover:not(:empty) {
    background: #f0f0f0;
}

.today {
    background: #4CAF50;
    color: white;
}

.today:hover {
    background: #45a049 !important;
}

body {
    font-family: 'UKIJ Ekran', 'Microsoft Uighur', sans-serif;
    background: #f5f5f5;
    margin: 0;
 
}

h2 {
    margin: 0;
    color: #333;
}

.course-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a:hover {
        background-color: var(--primary-green);
        color: white;
    }
}

main {
    margin-bottom: 100px;
}

/* كۇنۇپكا ئۈچۈن يېڭى ئۇسلۇب */
.btn {
    background-color: var(--primary-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-green);
}

/* ساقلىغۇچ */
.alert {
    background-color: var(--light-green);
    color: var(--dark);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* مۇزىكا قويغۇچ ئۇسلۇبى */
.music-player {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(145deg, var(--dark) 0%, var(--darker) 100%);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 300px;
}

.player-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn {
    background: var(--primary-green);
    font-size: 1.4rem;
}

.control-btn:hover {
    transform: scale(1.1);
    color: var(--primary-green);
}

.play-btn:hover {
    background: var(--dark-green);
    color: white;
}

.progress-area {
    padding: 0 10px;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--primary-green);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.time {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 5px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 0 10px;
}

#volume-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .music-player {
        bottom: 70px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 300px;
    }
}

/* مۇزىكا ئۇچۇرلىرىنىڭ ئۇسلۇبى */
.song-info {
    text-align: center;
    margin-bottom: 10px;
    color: white;
}

.song-title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.song-artist {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
}

/* دەرىسلەر بۆلىكى ئۇسلۇبى */
#courses {
    padding: 2rem;
}

.course-level {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-family: Alp Ekran;
    background-color: var(--light-green);
    color: var(--dark);
}

.course-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(49, 211, 117, 0.2);
}

.course-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.course-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* بىز ھەققىدە بۆلىكى ئۇسلۇبى */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro {
    font-size: 1.2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature ul li {
    margin: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.feature ul li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    right: 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    padding: 2rem 0;
    background: linear-gradient(145deg, var(--dark) 0%, var(--darker) 100%);
    border-radius: 10px;
    color: white;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ئالاقە بۆلىكى ئۇسلۇبى */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.contact-item .info h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item .info p {
    color: #666;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    direction: rtl;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-green);
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* تېلېفون نومۇرى ئۇسلۇبى */
.contact-item.phone-number {
    background: linear-gradient(145deg, var(--dark) 0%, var(--darker) 100%);
}

.contact-item.phone-number .info h3 {
    color: white;
}

.contact-item.phone-number .info p {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-item.phone-number i {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.contact-item.phone-number:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* ئېلخەت بۆلىكى ئۇسلۇبى */
.contact-item.email {
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
}

.contact-item.email .info h3 {
    color: white;
}

.contact-item.email .info p {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: bold;
}

.contact-item.email i {
    color: #ffd700;
    font-size: 2.5rem;
}

/* ئادرېس بۆلىكى ئۇسلۇبى */
.contact-item.address {
    background: linear-gradient(145deg, #3498db 0%, #2980b9 100%);
}

.contact-item.address .info h3 {
    color: white;
}

.contact-item.address .info p {
    color: #a8e6cf;
    font-size: 1.4rem;
    font-weight: bold;
}

.contact-item.address i {
    color: #a8e6cf;
    font-size: 2.5rem;
}

/* WeChat بۆلىكى ئۇسلۇبى */
.contact-item.wechat {
    background: linear-gradient(145deg, #27ae60 0%, #219a52 100%);
}

.contact-item.wechat .info h3 {
    color: white;
}

.contact-item.wechat .info p {
    color: #98fb98;
    font-size: 1.4rem;
    font-weight: bold;
}

.contact-item.wechat i {
    color: #98fb98;
    font-size: 2.5rem;
}

/* ھەممە بۆلەكلەرنىڭ ئورتاق ئانىماتسىيەسى */
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* توختىتىش كۇنۇپكىسى ئۇسلۇبى */
.play-btn.paused {
    background: var(--dark-green);
}

.play-btn.paused:hover {
    background: var(--primary-green);
}

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

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

/* p تېگىنىڭ خەت نۇسخىسىنى ئۆزگەرتىش */
p {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ئالاھىدە p تېگىلىرىنىڭ خەت نۇسخىسىنى ئۆزگەرتىش */
.intro p,
.feature p,
.course-card p,
.contact-item .info p {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
}

/* ئالاقە بۆلىكىدىكى تېلېفون نومۇرىنىڭ خەت نۇسخىسىنى ساقلاپ قېلىش */
.contact-item.phone-number .info p {
    font-family: Arial, sans-serif;
}

/* ul تېگىنىڭ خەت نۇسخىسىنى ئۆزگەرتىش */
ul {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
}

/* ئالاھىدە ul تېگىلىرىنىڭ خەت نۇسخىسىنى ئۆزگەرتىش */
.feature ul li,
nav ul li,
.sidebar ul li {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    font-size: 1.1rem;
}

/* ئۇلانمىلارنىڭ خەت نۇسخىسىنى ساقلاپ قېلىش */
nav ul li a {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
}

/* فورما تېكىستلىرىنىڭ خەت نۇسخىسىنى ئۆزگەرتىش */
.contact-form h3,
.form-group input,
.form-group textarea,
.submit-btn {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
}

/* فورما كىرگۈزۈش رامكىلىرىنىڭ خەت نۇسخىسى */
.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    opacity: 0.8;
}

/* يوللاش كۇنۇپكىسىنىڭ خەت نۇسخىسى */
.submit-btn {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

/* ئانىماتسىيە ئۈچۈن ئاساسىي ئۇسلۇبلار */
@keyframes flyIn {
    0% {
        opacity: 0;
        transform: translate(var(--fly-x), var(--fly-y));
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ھەر خىل يۆنىلىشتىن ئۇچۇپ كىرىش ئانىماتسىيەسى */
.fly-in {
    opacity: 0;
    animation: flyIn 1s ease forwards;
}

/* ئوڭدىن كىرىش */
.from-right {
    --fly-x: 100px;
    --fly-y: 0;
    animation-delay: calc(var(--delay) * 0.1s);
}

/* سولدىن كىرىش */
.from-left {
    --fly-x: -100px;
    --fly-y: 0;
    animation-delay: calc(var(--delay) * 0.1s);
}

/* ئۈستىدىن كىرىش */
.from-top {
    --fly-x: 0;
    --fly-y: -100px;
    animation-delay: calc(var(--delay) * 0.1s);
}

/* ئاستىدىن كىرىش */
.from-bottom {
    --fly-x: 0;
    --fly-y: 100px;
    animation-delay: calc(var(--delay) * 0.1s);
}

/* نىشانىمىز بۆلىكىنىڭ ئۇسلۇبى */
.feature:nth-child(1) {
    background: linear-gradient(145deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.feature:nth-child(1) h3 {
    color: #a8e6cf;
    font-size: 1.5rem;
}

.feature:nth-child(1) p {
    color: #fff;
    font-size: 1.1rem;
}

/* ئالاھىدىلىكىمىز بۆلىكىنىڭ ئۇسلۇبى */
.feature:nth-child(2) {
    background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.feature:nth-child(2) h3 {
    color: #ffd700;
    font-size: 1.5rem;
}

.feature:nth-child(2) ul li {
    color: #fff;
}

.feature:nth-child(2) ul li::before {
    color: #ffd700;
}

/* مۇلازىمىتىمىز بۆلىكىنىڭ ئۇسلۇبى */
.feature:nth-child(3) {
    background: linear-gradient(145deg, #27ae60 0%, #219a52 100%);
    color: white;
}

.feature:nth-child(3) h3 {
    color: #98fb98;
    font-size: 1.5rem;
}

.feature:nth-child(3) ul li {
    color: #fff;
}

.feature:nth-child(3) ul li::before {
    color: #98fb98;
}

/* ئورتاق ئانىماتسىيە ئۇسلۇبى */
.feature {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ھاۋارايى بۆلىكىنىڭ ئۇسلۇبى */
.weather {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.9) 0%,    /* كۆك رەڭ */
        rgba(231, 76, 60, 0.9) 50%,    /* قىزىل رەڭ */
        rgba(46, 204, 113, 0.9) 100%   /* يېشىل رەڭ */
    );
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    animation: weatherGlow 6s infinite;
}

/* ھاۋارايى بۆلىكىنىڭ يالتىراش ئانىماتسىيەسى */
@keyframes weatherGlow {
    0% {
        box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    }
    33% {
        box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
    }
    66% {
        box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    }
}

.weather h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.weather-info {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.weather-details {
    text-align: center;
    margin: 1rem 0;
}

.temperature {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.location {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.weather-extra {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.humidity, .wind {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-icon {
    text-align: center;
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: weatherIconFloat 3s ease-in-out infinite;
}

@keyframes weatherIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .weather {
        margin-top: 1rem;
    }
    
    .weather-extra {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* ھاۋارايى بۆلىكىنىڭ خەت نۇسخىسى */
.weather-info,
.temperature,
.location,
.description,
.humidity,
.wind {
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
}

/* ھاۋارايى ماۋزۇسىنىڭ خەت نۇسخىسىنى ساقلاپ قېلىش */
.weather h3 {
    font-family: 'UKIJ Nasq', 'Noto Nastaliq Urdu Draft', Arial, sans-serif;
}

/* ھاۋارايى ئۇچۇرلىرىنىڭ خەت چوڭلۇقى */
.temperature {
    font-size: 2.5rem;
    font-weight: bold;
}

.location {
    font-size: 1.3rem;
}

.description {
    font-size: 1.2rem;
}

.humidity,
.wind {
    font-size: 1.1rem;
}

/* تور بەت سېتاتىستىكىسى ئۇسلۇبى */
.website-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.stat-info {
    flex-grow: 1;
}

.stat-count {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.stats-charts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.chart-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
}

.chart-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .stats-charts {
        grid-template-columns: 1fr;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
}

/* يۇمىلاق سائەت ئۇسلۇبى */
.analog-clock {
    width: 250px;
    height: 250px;
    margin: 0 auto 1rem;
    position: relative;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border: 10px solid #f8f9fa;
}

.clock-face {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    background: white;
}

/* سائەت سانلىرى */
.numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.number {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark);
}

/* بارلىق سانلارنىڭ ئورنى */
.n1 { top: 10%; right: 26%; }
.n2 { top: 26%; right: 10%; }
.n3 { top: 50%; right: 5%; transform: translateY(-50%); }
.n4 { bottom: 26%; right: 10%; }
.n5 { bottom: 10%; right: 26%; }
.n6 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.n7 { bottom: 10%; left: 26%; }
.n8 { bottom: 26%; left: 10%; }
.n9 { top: 50%; left: 5%; transform: translateY(-50%); }
.n10 { top: 26%; left: 10%; }
.n11 { top: 10%; left: 26%; }
.n12 { top: 5%; left: 50%; transform: translateX(-50%); }

/* سائەت تىللىرى */
.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 20px;
}

.hour-hand {
    width: 4px;
    height: 25%;
    background: var(--dark);
    transform: translateX(-50%);
    z-index: 2;
}

.minute-hand {
    width: 3px;
    height: 35%;
    background: var(--primary-green);
    transform: translateX(-50%);
    z-index: 3;
}

.second-hand {
    width: 2px;
    height: 40%;
    background: #e74c3c;
    transform: translateX(-50%);
    z-index: 4;
}

/* سائەتنىڭ ئوتتۇرىسىدىكى چېكىت */
.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border: 2px solid var(--dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* مىنۇت بەلگىلىرى */
.minute-marks div {
    position: absolute;
    width: 2px;
    height: 8px;
    background: #ddd;
    left: 50%;
    transform-origin: 50% 110px;
}

.minute-marks div:nth-child(5n) {
    height: 12px;
    width: 2px;
    background: #aaa;
}

/* رەقەملىك سائەت */
#digital-clock {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 1rem 0;
    font-family: 'UKIJ Ekran', Arial, sans-serif;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* چېسلا */
#date {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 0.5rem;
    font-family: 'UKIJ Ekran', Arial, sans-serif;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* رەقەملىك سائەت قاچىسى */
.digital-clock-container {
    background: linear-gradient(145deg, var(--dark) 0%, var(--darker) 100%);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* رەقەملىك سائەت */
.digital-time {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    font-family: 'UKIJ Ekran', Arial, sans-serif;
    margin-bottom: 0.5rem;
}

/* سائەت ئايرىغۇچ نۇقتىسى */
.time-separator {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* چېسلا */
.digital-date {
    font-size: 1.2rem;
    color: var(--light);
    font-family: 'UKIJ Ekran', Arial, sans-serif;
    opacity: 0.9;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* مۇلازىمەت تۈرلىرى ئۇسلۇبى */
.main-services {
    margin: 0 0; 
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px; 
}

.main-services h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-card ul li:last-child {
    border-bottom: none;
}

/* مۇلازىمەت كارتىلىرىنىڭ رەڭلىرى */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

/* رەڭلىك كارتىلارنىڭ ئىچىدىكى تېكىستلەرنىڭ رەڭگى */
.service-card:nth-child(1) h4,
.service-card:nth-child(2) h4,
.service-card:nth-child(3) h4,
.service-card:nth-child(1) p,
.service-card:nth-child(2) p,
.service-card:nth-child(3) p,
.service-card:nth-child(1) ul li,
.service-card:nth-child(2) ul li,
.service-card:nth-child(3) ul li {
    color: white;
}

/* رەڭلىك كارتىلارنىڭ ئىچىدىكى ئىكونلارنىڭ رەڭگى */
.service-card:nth-child(1) i,
.service-card:nth-child(2) i,
.service-card:nth-child(3) i {
    color: rgba(255, 255, 255, 0.9);
}

/* رەڭلىك كارتىلارنىڭ ئىچىدىكى تىزىملىك سىزىقلىرىنىڭ رەڭگى */
.service-card:nth-child(1) ul li,
.service-card:nth-child(2) ul li,
.service-card:nth-child(3) ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* رەڭلىك كارتىلارنىڭ سايە ئۈنۈمى */
.service-card:nth-child(1) {
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.service-card:nth-child(2) {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.service-card:nth-child(3) {
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ئۇقتۇرۇش قاچىسى */
.announcement-container {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
    display: flex;
}

/* مۇقىم خەت بۆلىكى */
.announcement-label {
    background: var(--primary-green);
    color: white;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* ئۈچبۇلۇڭ شەكلى */
.announcement-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid var(--primary-green);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* ئۇقتۇرۇش مەزمۇنى */
.announcement {
    position: absolute;
    white-space: nowrap;
    animation: scrollAnnouncement 20s linear infinite;
    color: var(--dark);
    font-size: 1.1rem;
    padding: 8px 15px;
    font-family: 'Alp Ekran', 'Noto Sans Arabic', Arial, sans-serif;
    display: flex;
    align-items: center;
    left: 0;
    padding-left: 150px;
}

/* ئۇقتۇرۇش ئىكونى */
.announcement::before {
    content: '\f0a1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    color: var(--primary-green);
}

/* ئۇقتۇرۇش ھەرىكەت ئانىماتسىيەسى */
@keyframes scrollAnnouncement {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .announcement, .announcement-label {
        font-size: 1rem;
    }
    
    .announcement-container {
        height: 35px;
    }
    
    .announcement-label {
        padding: 0 15px;
    }
}

/* رەڭلىك ماۋزۇ ئۇسلۇبى */
.gradient-text {
    background: linear-gradient(
        to right,
        #2ecc71,    /* يېشىل */
        #3498db,    /* كۆك */
        #e74c3c,    /* قىزىل */
        #f1c40f,    /* سېرىق */
        #9b59b6,    /* بىنەپشە */
        #2ecc71     /* قايتا يېشىل */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 20px 0;
    position: relative;
    animation: rainbowText 8s linear infinite;
    background-size: 600% 100%;
}

/* رەڭ ئۆزگىرىش ئانىماتسىيەسى */
@keyframes rainbowText {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 600% 50%;
    }
}

/* كىچىك ئېكران ئۈچۈن */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 1.5rem;
        padding: 15px 0;
    }
} 