/* ==========================================================================
   DIPLOMAT UNIVERSITY - MASTER STYLESHEET (FINAL PRODUCTION VERSION)
   O'z ichiga oladi:
   1. Premium 4 xil Slayder dizayni
   2. Fix: Matnlar va pastki karta ustma-ust tushishi to'g'irlangan (top: 40%)
   3. To'liq moslashuvchanlik (Responsive)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;900&display=swap');
/* --------------------------------------------------------------------------
   1. GLOBAL SOZLAMALAR (RESET & BASE)
   -------------------------------------------------------------------------- */


:root {
    --primary-color: #07006b;       /* Asosiy to'q ko'k */
    --secondary-color: #000b55;     /* Yanada to'qroq ko'k */
    --accent-color: #FFC107;        /* Oltin rang */
    --accent-hover: #FF9800;        /* Hover effekti */
    --text-dark: #212529;           /* Matn rangi */
    --text-light: #ffffff;          /* Oq matn */
    --bg-light: #f8faff;            /* Sayt foni */
    --font-unbounded: 'Unbounded', sans-serif;
}

body {
    font-family: 'Unbounded';
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body {
    background-color: #f8faff; /* Asosiy fon */
    position: relative;
    /* Scroll paytida oq joylar qolib ketmasligi uchun */
    min-height: 100vh;
}

.live-background {
    position: fixed; /* Ekranda qotib turadi */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Hamma narsaning orqasida */
    background: #f8faff;
}

/* Umumiy Shar Stilistikasi */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Juda kuchli xiralashtirish */
    opacity: 0.6; /* Shaffoflik */
    animation: floatBlob 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1-Shar: Asosiy Ko'k (Pastdan chiqadi) */
.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(7, 0, 107, 0.25); /* To'q ko'k */
    animation-duration: 25s;
}

/* 2-Shar: Oltin Rang (O'rtada suzadi) */
.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(255, 193, 7, 0.2); /* Sariq/Oltin */
    animation-duration: 30s;
    animation-delay: -5s;
}

/* 3-Shar: Yorqin Moviy/Binafsha (Tepada) */
.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: rgba(41, 98, 255, 0.15); /* Och ko'k */
    animation-duration: 22s;
    animation-delay: -10s;
}

/* Harakat Animatsiyasi */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(30px, 50px) scale(1.1) rotate(10deg);
    }
    100% {
        transform: translate(-20px, -30px) scale(0.9) rotate(-10deg);
    }
}

/* Tekstura (Noise Effect) - Professional ko'rinish beradi */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
a { text-decoration: none; transition: all 0.3s ease-in-out; }
ul { list-style: none; padding: 0; margin: 0; }

/* --------------------------------------------------------------------------
   2. HEADER & NAVIGATSIYA
   -------------------------------------------------------------------------- */
.header-custom-bg {
    background: linear-gradient(90deg, #09004b 0%, #07003f 100%) !important;
    box-shadow: 0 4px 20px rgba(7, 0, 107, 0.25);
    position: relative;
    z-index: 100;
}

.navbar-brand img { height: 70px; width: auto; transition: transform 0.3s ease; }
.navbar-brand:hover img { transform: scale(1.05); }

.navbar-nav { margin: 0 auto; gap: 15px; }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600; font-size: 15px; padding: 8px 16px;
    border-radius: 8px; transition: all 0.3s ease; display: flex; align-items: center;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #ffffff; background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px);
}

.nav-link i.fa-chevron-down { font-size: 10px; margin-left: 6px; opacity: 0.7; transition: transform 0.3s; }
.nav-link:hover i.fa-chevron-down { transform: rotate(180deg); }

.lang-switcher {
    display: flex; align-items: center; gap: 10px; color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50px;
    padding: 8px 16px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s ease;
}
.lang-switcher:hover {
    background-color: rgba(255, 255, 255, 0.2); border-color: #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.lang-switcher img { width: 22px; border-radius: 3px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

.nav-icon {
    color: rgba(255, 255, 255, 0.85); font-size: 18px; width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    transition: all 0.3s ease; margin-left: 5px;
}
.nav-icon:hover { background-color: rgba(255, 255, 255, 0.2); color: #ffffff; transform: rotate(15deg); }

.dropdown-menu {
    border: none; border-radius: 15px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 15px; margin-top: 15px; background-color: #ffffff; min-width: 240px; animation: fadeInUp 0.3s ease forwards;
}
.dropdown-item { padding: 10px 15px; font-weight: 500; color: #333; border-radius: 8px; transition: all 0.2s; font-size: 15px; }
.dropdown-item:hover { background-color: #f0f4ff; color: var(--primary-color); padding-left: 20px; }

/* --------------------------------------------------------------------------
   3. HERO SLIDER CORE (Slayder asosi)
   -------------------------------------------------------------------------- */
#heroCarousel {
    height: calc(100vh - 210px);
    min-height: 700px;
    background-color: #111;
    position: relative;
    overflow: hidden;
}

.carousel-inner, .carousel-item { height: 100%; width: 100%; position: relative; }

/* Gradient Overlay - Rasmlar ustidagi qora parda */
.carousel-item::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* YANGI YUMSHOQ GRADIENT: */
    background: linear-gradient(to top,
        rgba(7, 0, 107, 0.90) 0%,     /* 1 o'rniga 0.7 qildim */
        rgba(7, 0, 107, 0.7) 25%,    /* 0.85 o'rniga 0.5 qildim */
        rgba(7, 0, 107, 0.4) 55%,    /* 0.4 o'rniga 0.2 qildim */
        rgba(7, 0, 107, 0.2) 80%);     /* 0.1 o'rniga 0 (shaffof) qildim */
    z-index: 1; pointer-events: none;
}

.carousel-video-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; z-index: 0;
}

.kenburns-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0;
}
.carousel-item img { height: 100%; width: 100%; object-fit: cover; animation: kenburns 25s ease-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }

/* Slider Indikatorlari (Pastdagi dumaloqchalar) */
.carousel-indicators { bottom: 180px; z-index: 15; margin-bottom: 0; }
.carousel-indicators button {
    width: 14px !important; height: 14px !important; border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5); border: 2px solid transparent; margin: 0 8px !important; transition: all 0.3s ease; opacity: 0.6;
}
.carousel-indicators .active { background-color: var(--accent-color); transform: scale(1.4); opacity: 1; border-color: rgba(0,0,0,0.1); }

/* --------------------------------------------------------------------------
   4. SLAYDER WRAPPER (Matnlarni ushlab turuvchi blok)
   !!! MUHIM FIX: top: 40% (Matnni teparoqqa ko'taradi)
   -------------------------------------------------------------------------- */
.hero-wrapper-fixed {
    position: absolute;
    top: 40%; /* 50% EMAS! 40% - bu matnni pastdagi kartaga tegishidan saqlaydi */
    left: 0; right: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    padding: 0;
    /* text-align: left !important;  <-- O'CHIRILGAN */
}

/* --------------------------------------------------------------------------
   5. YANGI PREMIUM USLUBLAR (1, 2, 3, 4)
   -------------------------------------------------------------------------- */

/* === 1-USLUB: PREMIUM HERO (Video Slayd) === */
.hero-content-v1 { text-align: left; max-width: 850px; z-index: 10; padding-left: 5%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 20px;
    border-radius: 30px; color: #FFC107; font-weight: 700; font-size: 0.9rem;
    letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase;
}
.pulsing-dot {
    width: 10px; height: 10px; background-color: #e60707; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(230, 7, 7, 0.7); animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(230, 7, 7, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(230, 7, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 7, 7, 0); }
}

.hero-title {
    font-family: 'Unbounded'; font-size: 4.5rem;
    font-weight: 800; line-height: 1.1; color: #ffffff; margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.highlight-text { color: transparent; -webkit-text-stroke: 2px #FFC107; position: relative; display: inline-block; }
.highlight-text::before {
    content: 'BILIM'; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    color: #FFC107; background-color: transparent; overflow: hidden;
    transition: width 1s ease; border-right: 4px solid #FFC107; animation: fillText 3s ease-out forwards 1s;
}
@keyframes fillText { to { width: 100%; border-right-color: transparent; } }

.hero-divider { height: 4px; background: linear-gradient(90deg, #FFC107, transparent); margin-bottom: 30px; border-radius: 2px; }

.hero-description {
    font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); font-weight: 400; line-height: 1.6;
    max-width: 600px; margin-bottom: 30px; border-left: 3px solid rgba(255,255,255,0.3); padding-left: 20px;
}

.hero-btns { display: flex; gap: 20px; align-items: center; }

.btn-ariza {
    display: inline-block; background-color: #e60707; color: #ffffff;
    font-weight: 800; text-transform: uppercase; padding: 14px 40px;
    border-radius: 50px; font-size: 1rem; transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(7, 0, 107, 0.5);
}
.btn-ariza:hover { background-color: var(--accent-color); color: #000; transform: translateY(-5px); }
.btn-video-play {
    color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px;
    transition: all 0.3s; font-size: 1rem; text-decoration: none;
}
.btn-video-play i {
    width: 45px; height: 45px; background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s;
}
.btn-video-play:hover { color: #FFC107; }
.btn-video-play:hover i { background: #FFC107; color: #000; transform: scale(1.1); }
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.5s;
}
.btn-glow:hover::after { left: 100%; }


/* === 2-USLUB: NEON TECH PANEL (Chap tomon) === */
.tech-panel {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0 30px 30px 0; padding: 0; display: flex; overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5); max-width: 650px;
    border-left: 5px solid #00d2ff; text-align: left;
    margin-bottom: 20px;
}
.panel-content { padding: 35px; }
.tech-subtitle { color: #00d2ff; font-size: 0.85rem; letter-spacing: 3px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.tech-title { color: #fff; font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px; text-transform: uppercase; }
.cyan-text { color: #00d2ff; text-shadow: 0 0 15px rgba(0, 210, 255, 0.6); }
.tech-desc { color: #ccc; font-size: 1.05rem; margin-bottom: 25px; line-height: 1.5; }
.btn-tech {
    background: transparent; border: 2px solid #00d2ff; color: #00d2ff; padding: 10px 25px;
    font-weight: 700; text-transform: uppercase; transition: 0.3s; display: inline-block; text-decoration: none;
}
.btn-tech:hover { background: #00d2ff; color: #000; box-shadow: 0 0 20px rgba(0, 210, 255, 0.5); }


/* === 3-USLUB: ELEGANT WHITE CARD (O'ng tomon) === */
.biz-card {
    background: #ffffff;
    padding: 35px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    text-align: left;
    border-bottom: 6px solid #FFC107;
    margin-bottom: 40px; /* Overlapdan saqlash uchun */
}
.biz-icon {
    width: 50px; height: 50px; background: #f0f4ff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #07006b;
    font-size: 20px; margin-bottom: 20px;
}
.biz-subtitle { color: #888; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; text-transform: uppercase; }
.biz-title { color: #07006b; font-size: 2.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 15px; }
.biz-desc { color: #555; font-size: 1rem; margin-bottom: 25px; line-height: 1.5; }
.btn-biz {
    background: #07006b; color: #fff; padding: 12px 35px; border-radius: 10px;
    font-weight: 700; text-transform: uppercase; box-shadow: 0 10px 20px rgba(7, 0, 107, 0.2);
    display: inline-block; transition: 0.3s;
}
.btn-biz:hover { background: #FFC107; color: #07006b; transform: translateY(-5px); }


/* === 4-USLUB: MARKER STYLE (Chap-Markaz) === */
.hero-content-v4 { text-align: left; max-width: 800px; padding-left: 5%; }
.hero-title-v4 { font-size: 4rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; transform: rotate(-2deg); }
.bg-yellow { background-color: #FFC107; color: #07006b; padding: 0 15px; box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }
.bg-white-text { background-color: #fff; color: #07006b; padding: 0 15px; margin-left: 30px; box-shadow: 5px 5px 0 rgba(0,0,0,0.2); }
.hero-desc-v4 {
    color: #fff; background: rgba(0,0,0,0.6); display: inline-block;
    padding: 10px 20px; font-size: 1.1rem; font-weight: 600; margin-top: 20px; border-radius: 5px;
}
.btn-join {
    background: #fff; color: #07006b; padding: 14px 35px; font-weight: 800; font-size: 1rem;
    border-radius: 0; border: 3px solid #07006b; box-shadow: 5px 5px 0 #FFC107; transition: 0.3s; text-transform: uppercase;
}
.btn-join:hover { box-shadow: 0 0 0 #FFC107; transform: translate(5px, 5px); background: #FFC107; }


/* --------------------------------------------------------------------------
   6. CONTENT CARD (Slayder ostidagi "Xush kelibsiz" qismi)
   -------------------------------------------------------------------------- */
.programs-section-bg {
    background: transparent; position: relative; padding-top: 0;
    margin-top: 45px; /* Slayder ichiga kirish masofasi */
    z-index: 20;
}
.hero-overlap-card {
    margin-top: -160px; position: relative; z-index: 20;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.content-card {
    background: #ffffff; border-radius: 24px; box-shadow: 0 20px 60px rgba(7, 0, 107, 0.08);
    padding: 60px 50px; margin-bottom: 50px; position: relative; border: 1px solid rgba(255,255,255,0.5);
}

/* =======================================================
   Sarlavhalar uchun Premium Gradient (YANGILANGAN)
   ======================================================= */
.section-title {
    /* Asosiy shrift sozlamalari */
    font-family: 'Unbounded', sans-serif; /* Premium shrift */
    font-weight: 900; /* Juda qalin */
    text-transform: uppercase;
    font-size: 2.5rem; /* Biroz kattalashtirdik */
    margin-bottom: 20px;
    letter-spacing: -0.5px;

    /* GRADIENT FON (Xush kelibsiz qismi bilan bir xil) */
    background: linear-gradient(90deg, #07006b 0%, #2962ff 100%);

    /* Agar Oltin rang xohlasangiz, yuqoridagi qatorni o'chirib, bunisini yoqing: */
    /* background: linear-gradient(90deg, #07006b 0%, #FFC107 100%); */

    /* Matn ichini qirqib olish (Clip) */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Markazda turishi va gradient ishlashi uchun muhim */
    display: inline-block;
    position: relative;
}

/* Sarlavha tagidagi chiziqni ham sarlavhaga moslash */
.section-divider {
    height: 4px;
    width: 100px;
    /* Sarlavha bilan bir xil gradient */
    background: linear-gradient(90deg, #07006b 0%, #2962ff 100%);
    margin: 0 auto 50px auto;
    border-radius: 10px;
    opacity: 0.8;
}
.section-divider-mini { height: 6px; width: 60px; background: linear-gradient(90deg, var(--accent-color), var(--accent-hover)); margin: 0 0 30px 0; border-radius: 10px; }
.content-card p { font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 30px; }

.welcome-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; height: 100%; min-height: 400px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.welcome-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.welcome-image-wrapper:hover img { transform: scale(1.1); }

.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: #ffffff; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-size: 30px; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); transition: all 0.3s ease; animation: pulse 2s infinite; z-index: 2; }
.play-btn:hover { color: var(--accent-color); background: #fff; transform: translate(-50%, -50%) scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); } 70% { box-shadow: 0 0 0 25px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

/* --------------------------------------------------------------------------
   7. PROGRAMMALAR, FAKTORLAR VA BOSHQALAR
   -------------------------------------------------------------------------- */
.program-card-wrapper { position: relative; padding-top: 20px; margin-bottom: 30px; transition: transform 0.4s ease; }
.program-card-wrapper:hover { transform: translateY(-15px); }
.program-card-blur-bg { position: absolute; top: 25px; left: 20%; right: 20%; height: 140px; background: rgba(233, 30, 99, 0.5); filter: blur(35px); border-radius: 30px; opacity: 0.6; z-index: 0; transition: all 0.3s ease; }
.program-card-wrapper:hover .program-card-blur-bg { opacity: 0.8; filter: blur(40px); transform: scale(1.05); }
.program-card { position: relative; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 24px; padding: 40px 25px; z-index: 1; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.program-card-icon { font-size: 55px; color: var(--primary-color); margin-bottom: 25px; transition: transform 0.3s; }
.program-card-wrapper:hover .program-card-icon { transform: scale(1.1) rotate(5deg); }
.program-card-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 25px; line-height: 1.4; flex-grow: 1; }
.btn-primary-custom { background: linear-gradient(90deg, var(--accent-color), var(--accent-hover)); color: var(--text-dark); font-weight: 700; padding: 12px 35px; border-radius: 50px; border: none; box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3); transition: all 0.3s ease; text-transform: uppercase; font-size: 0.9rem; }
.btn-primary-custom:hover { background: linear-gradient(90deg, var(--accent-hover), var(--accent-color)); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5); color: #000; }

.factor-item-new { background: #fff; border-radius: 16px; overflow: hidden; display: flex; align-items: stretch; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; min-height: 90px; border: 1px solid #eee; }
.factor-item-new:hover { transform: translateX(10px); box-shadow: 0 15px 35px rgba(7, 0, 107, 0.1); border-color: transparent; }
.factor-icon-wrapper { width: 90px; background-color: var(--primary-color); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; transition: background 0.3s; }
.factor-item-new:hover .factor-icon-wrapper { background-color: var(--secondary-color); }
.factor-text { padding: 0 25px; display: flex; align-items: center; font-weight: 700; font-size: 1.05rem; color: #333; }
.building-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; height: 100%; min-height: 450px; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.building-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.building-image-wrapper:hover img { transform: scale(1.05); }

/* Hamkorlar */
.partners-section { padding: 80px 0; background: #ffffff; border-top: 1px solid #eee; }
.logo-scroller { overflow: hidden; position: relative; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.logo-scroller-inner { display: flex; width: max-content; gap: 50px; animation: scrollLogos 40s linear infinite; }
.logo-scroller-inner:hover { animation-play-state: paused; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partner-logo-card { background: #fff; border-radius: 16px; padding: 15px 40px; height: 120px; display: flex; align-items: center; justify-content: center; border: 1px solid #f0f0f0; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: all 0.3s; }
.partner-logo-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(7,0,107,0.1); }
.partner-logo-card img { max-height: 70px; max-width: 180px; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s; }
.partner-logo-card:hover img { filter: grayscale(0%); opacity: 1; }

/* Yangiliklar */
.news-section { background: var(--bg-light); padding: 40px 0; }
.news-item { background: #ffffff; border-radius: 20px; overflow: hidden; margin-bottom: 30px; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.news-item:hover { box-shadow: 0 20px 50px rgba(7,0,107,0.15); transform: translateY(-8px); }
.news-image-wrapper { height: 100%; min-height: 280px; overflow: hidden; position: relative; }
.news-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.news-item:hover .news-image { transform: scale(1.1); }
.news-content { padding: 35px; }
.news-title a { color: var(--text-dark); font-weight: 800; font-size: 1.4rem; line-height: 1.4; transition: color 0.3s; }
.news-title a:hover { color: var(--primary-color); }
.news-meta { font-size: 0.95rem; color: #888; margin: 15px 0; display: flex; gap: 20px; }
.news-meta i { color: var(--accent-color); margin-right: 6px; }
.news-excerpt { color: #666; line-height: 1.6; }

/* Instagram */
.instagram-section { padding: 50px 0; background: #ffffff; }
.instagram-title-wrapper { display: flex; align-items: center; gap: 20px; margin-bottom: 50px; }
.instagram-title-wrapper img { height: 70px; }
.instagram-title-wrapper h3 { margin: 0; color: var(--primary-color); }
.instagram-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.instagram-item img { width: 100%; height: 100%;  transition: transform 0.5s ease; }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay { position: absolute; inset: 0; background: rgba(7, 0, 107, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay i { color: #fff; font-size: 45px; transform: scale(0.8); transition: transform 0.3s; }
.instagram-item:hover .instagram-overlay i { transform: scale(1); }

/* Footer */
/* =======================================================
   PREMIUM FOOTER STYLES (FINAL VERSION)
   ======================================================= */

.premium-footers {
    position: relative;
    background: #05004e; /* Juda to'q ko'k */
    color: #fff;
    padding: 80px 0 30px 0;
    overflow: hidden;
    font-family: 'Unbounded', sans-serif;
    border-top: 5px solid var(--accent-color); /* Oltin chiziq */
}

/* Orqa fon effektlari */
.footer-bg-overlay {

    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Dunyo xaritasi patterni (shaffof) */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    filter: invert(1); /* Oq rangga aylantirish */
}

.footer-glow-point {
    position: absolute;
    top: -50%; left: -20%;
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(7, 0, 107, 0.8) 0%, rgba(0,0,0,0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.relative-z { position: relative; z-index: 2; }

/* 1. Logo va Brending */
.footer-premium-logo {
    max-width: 150px;

    /* O'ZGARTIRILDI: Rasmni blok element qilib, yonlarini avtomatik ochamiz */
    display: block;
    margin: 0 auto 25px auto; /* Tepa: 0, Yonlar: auto (markaz), Past: 25px */

    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 35px;
    max-width: 300px;
}

/* 2. DOIMIY YONIB TURUVCHI SOCIAL TUGMALAR (ASOSIY TALAB) */
.social-pulse-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center; /* BU QATORNI QO'SHING */
}

.social-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Pulsatsiya Animatsiyasi */
@keyframes neonPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.2); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); transform: scale(1); }
}

/* Har bir tarmoq uchun alohida rangli "Nafas" */
.pulse-gold { animation: neonPulseGold 2s infinite; color: #fff; background: linear-gradient(45deg, #0088cc, #00aff0); border:none;}
.pulse-pink { animation: neonPulsePink 2.2s infinite; color: #fff; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9); border:none;}
.pulse-blue { animation: neonPulseBlue 2.4s infinite; color: #fff; background: linear-gradient(45deg, #1877f2, #3b5998); border:none;}
.pulse-red  { animation: neonPulseRed 2.6s infinite; color: #fff; background: linear-gradient(45deg, #ff0000, #c4302b); border:none;}

/* Keyframes Ranglar uchun */
@keyframes neonPulseGold {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}
@keyframes neonPulsePink {
    0% { box-shadow: 0 0 0 0 rgba(214, 41, 118, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(214, 41, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(214, 41, 118, 0); }
}
@keyframes neonPulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(24, 119, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}
@keyframes neonPulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.social-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* 3. Footer Sarlavha va Linklar */
.footer-title {
    color: var(--accent-color); /* Oltin rang */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

/* Link Hover Effekti (Oltin chiziq chiqishi) */
.footer-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -2px; left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-links a:hover::after { width: 100%; }

/* 4. Kontakt Kartochkasi (Glassmorphism) */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-row:last-child { margin-bottom: 0; }

.c-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-row span, .contact-row a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}
.contact-row a:hover { color: var(--accent-color); }

/* 5. Footer Bottom */
.footer-line {
    border-color: rgba(255,255,255,0.1);
    margin: 50px 0 30px;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.policy-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}
.policy-link:hover { color: var(--accent-color); }
.separator { margin: 0 10px; color: rgba(255,255,255,0.2); }

/* Mobil uchun moslashuv */
@media (max-width: 991px) {
    .premium-footer { text-align: center; }
    .social-pulse-wrapper { justify-content: center; margin-bottom: 30px; }
    .contact-glass-card { text-align: left; margin-top: 20px; }
    .footer-desc { margin: 0 auto 25px auto; }
}

/* --------------------------------------------------------------------------
   8. ANIMATSIYALAR
   -------------------------------------------------------------------------- */
.animate-slide-down { animation: slideDown 1s ease-out forwards; opacity: 0; transform: translateY(-30px); }
.animate-text-reveal { animation: fadeInUp 1s ease-out 0.3s forwards; opacity: 0; transform: translateY(30px); }
.animate-width { width: 0; animation: expandWidth 1s ease-out 0.8s forwards; }
.animate-fade-up { animation: fadeInUp 1s ease-out 1s forwards; opacity: 0; transform: translateY(20px); }
.animate-fade-up-delay { animation: fadeInUp 1s ease-out 1.2s forwards; opacity: 0; transform: translateY(20px); }
.animate-fade-right { animation: fadeRight 1s ease-out forwards; opacity: 0; transform: translateX(-50px); }
.animate-fade-up-card { animation: fadeUpCard 1s ease-out forwards; opacity: 0; transform: translateY(40px); }
.animate-skew { animation: skewReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; opacity: 0; transform: translateY(50px); }

@keyframes slideDown { to { opacity: 1; transform: translateY(0); } }
@keyframes expandWidth { to { width: 150px; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }
@keyframes fadeUpCard { to { opacity: 1; transform: translateY(0); } }
@keyframes skewReveal { to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   9. MEDIA QUERIES (RESPONSIVE)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .navbar-collapse { background: #ffffff; padding: 25px; border-radius: 20px; margin-top: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
    .navbar-dark .navbar-nav .nav-link { color: #333; margin-bottom: 5px; }

    /* Mobil: Wrapper markazga va teparoqqa */
    .hero-wrapper-fixed { text-align: center; top: 35%; }

    /* 1-Slayd Mobil */
    .hero-content-v1 { text-align: center; margin: 0 auto; padding-left: 0; }
    .hero-description { border-left: none; border-top: 2px solid rgba(255,255,255,0.3); padding-top: 15px; padding-left: 0; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-title { font-size: 2.8rem; }

    /* 2-Slayd Mobil */
    .tech-panel { border-radius: 20px; border-left: none; border-top: 5px solid #00d2ff; max-width: 95%; margin: 0 auto 30px auto; text-align: center; }
    .tech-title { font-size: 2.2rem; }

    /* 3-Slayd Mobil */
    .row.justify-content-end { justify-content: center !important; }
    .biz-card { text-align: center; padding: 30px 20px; margin-bottom: 30px; }
    .biz-icon { margin: 0 auto 20px auto; }
    .biz-title { font-size: 2rem; }

    /* 4-Slayd Mobil */
    .hero-title-v4 { font-size: 2.2rem; transform: rotate(0); }
    .bg-white-text { margin-left: 0; }
    .hero-content-v4 { text-align: center; margin: 0 auto 30px auto; }

    /* Overlap Card Mobil */
    .hero-overlap-card { margin-top: -80px; padding: 40px 25px; }
    .section-title { font-size: 1.8rem; }

    .carousel-indicators { bottom: 100px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-badge { font-size: 0.75rem; padding: 5px 15px; }
    .hero-wrapper-fixed { top: 30%; } /* Mobilda yanada teparoq */
}

/* =======================================================
   2-SLAYD: CYBER FUTURE (Neon & Tech)
   ======================================================= */
.overlay-cyber {
    position: absolute;
    inset: 0;
    /* Chap tomon (yozuv bor joy) to'qroq, o'ng tomon shaffofroq */
    background: linear-gradient(90deg, rgb(0 0 0 / 31%) 0%, rgb(7 0 107 / 0%) 50%, rgba(0, 242, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.cyber-content {
    position: relative; z-index: 10;
    text-align: left;
    border-left: 4px solid #00f2ff; /* Neon moviy chiziq */
    padding-left: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cyber-badge {
    color: #00f2ff; font-family: 'Unbounded', monospace;
    font-weight: 700; letter-spacing: 2px; margin-bottom: 10px;
    background: rgba(0, 242, 255, 0.1); display: inline-block;
    padding: 5px 15px; border-radius: 4px;
}

.blinking-cursor { animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.cyber-title {
    font-size: 5rem; font-weight: 900; color: white;
    line-height: 1; margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Glitch effekti (qimirlab turadigan matn) */
.glitch-text {
    color: #00f2ff; position: relative;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text); position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; background: #111;
}
.glitch-text::before {
    left: 2px; text-shadow: -1px 0 #ff00c1; clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -2px; text-shadow: -1px 0 #00fff9; clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(60px, 9999px, 80px, 0); }
    100% { clip: rect(10px, 9999px, 90px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(80px, 9999px, 10px, 0); }
    100% { clip: rect(20px, 9999px, 50px, 0); }
}

.cyber-desc { color: #ccc; font-size: 1.2rem; margin-bottom: 30px; max-width: 500px; }

.btn-cyber {
    background: linear-gradient(45deg, #00f2ff, #0051ff);
    color: white; padding: 15px 40px; font-weight: 800;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    display: inline-block; transition: 0.3s;
}
.btn-cyber:hover { transform: translateX(10px); box-shadow: 0 0 30px rgba(0, 242, 255, 0.6); color: #fff; }


/* =======================================================
   3-SLAYD: PRESTIGE MOTION (YANGI ZAMONAVIY DIZAYN)
   ======================================================= */

/* 1. Orqa Fon va Overlay */
.overlay-prestige {
    position: absolute; inset: 0;
    /* To'q ko'kdan shaffofga o'tuvchi gradient */
    background: linear-gradient(135deg, rgba(7, 0, 107, 0.80) 0%, rgba(10, 10, 20, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 2. Marquee Effect (Orqada oqib turuvchi yozuv) */
.marquee-container {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0.07; /* Juda xira, fon sifatida */
    transform: rotate(-3deg) scale(1.1); /* Biroz qiyshiq */
    pointer-events: none;
}

.marquee-content {
    font-family: 'Unbounded', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    color: #fff;
    text-transform: uppercase;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3. Asosiy Content */
.prestige-content {
    position: relative;
    z-index: 10;
    padding-left: 20px;
}

/* Animated Badge (Tepadagi kichik yozuv) */
.badge-animated {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    animation: slideDownFade 1s ease-out forwards;
}

.badge-icon {
    color: #FFC107;
    margin-right: 10px;
    animation: spinSlow 5s linear infinite;
}

.badge-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Sarlavha (Katta matn) */
.prestige-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.reveal-text {
    display: block;
    animation: textReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.reveal-text-gold {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px #FFC107; /* Faqat cheti sariq */
    position: relative;
    animation: textReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(50px);
}

/* "Chegarasiz" so'zini to'lib borishi */
.reveal-text-gold::before {
    content: 'CHEGARASIZ';
    position: absolute; left: 0; top: 0; width: 0; height: 100%;
    color: #FFC107;
    overflow: hidden;
    border-right: 4px solid #FFC107;
    animation: fillGold 2s ease-out 1.5s forwards;
}

/* Description */
.prestige-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    border-left: 3px solid #FFC107;
    padding-left: 20px;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.8s forwards;
}

/* Buttons */
.prestige-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn-prestige-primary {
    background: #FFC107;
    color: #07006b;
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-prestige-primary:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-prestige-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-prestige-outline:hover {
    border-color: #FFC107;
    color: #FFC107;
    background: rgba(7, 0, 107, 0.5);
}

/* 4. Floating Glass Cards (O'ng tarafdagi kartalar) */
.floating-card {
    position: relative;
    z-index: 10;
    perspective: 1000px;
}

.glass-stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px); /* Shisha effekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid #FFC107;
    padding: 25px;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: floatCard 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-stat-box h3 {
    color: #FFC107;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.glass-stat-box p {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animatsiyalar Keyframelari */
@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fillGold {
    to { width: 100%; border-right-color: transparent; }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes spinSlow {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
    .prestige-title { font-size: 3rem; text-align: center; }
    .prestige-desc { text-align: center; border: none; padding: 0; }
    .prestige-btns { justify-content: center; }
    .col-lg-7 { text-align: center !important; }
    .marquee-content { font-size: 5rem; top: 10%; }
}


/* =======================================================
   4-SLAYD: VIBRANT MOTION (SOCHNIY RANGLAR VA HARAKAT)
   ======================================================= */

/* 1. Orqa Fon (Jonli Gradient) */
.overlay-animated-gradient {
    position: absolute; inset: 0;

    /* O'ZGARTIRILDI: Ranglar shaffofligi (opacity) kamaytirildi */
    background: linear-gradient(-45deg,
        rgba(7, 0, 107, 0.6),    /* Asosiy ko'k (60% ko'rinadi) */
        rgba(26, 11, 46, 0.7),   /* To'q binafsha (70% ko'rinadi) */
        rgba(15, 32, 39, 0.7)    /* To'q yashil-qora (70% ko'rinadi) */
    );

    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Matn Effektlari */
.badge-glow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #fff; padding: 8px 20px; border-radius: 30px;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 193, 7, 0.6); border-color: #FFC107; }
    100% { box-shadow: 0 0 10px rgba(255, 193, 7, 0.2); }
}

.vibrant-title-large {
    font-family: 'Unbounded', sans-serif;
    font-size: 4.5rem; font-weight: 900; line-height: 1.1; color: #fff;
    margin-bottom: 30px;
}

/* "MAKTABI" so'zi uchun Tillarang Oqish effekti */
.text-gradient-gold {
    background: linear-gradient(to right, #FFC107, #ff8c00, #FFC107);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
    font-size: 5rem; /* Biroz kattaroq */
}

@keyframes shineText {
    to { background-position: 200% center; }
}

/* 3. "Sochniy" Tugma */
.btn-juicy-gradient {
    background: linear-gradient(45deg, #FFC107, #ff6b00);
    color: #fff; padding: 15px 50px; font-weight: 800; border-radius: 50px;
    text-transform: uppercase; border: none;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    transition: all 0.3s;
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center;
}

.btn-juicy-gradient:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.6);
    color: #fff;
}

/* 4. O'ng Tomon Kartalar (Sochniy Ranglar) */
.pillars-container {
    display: flex; flex-direction: column; gap: 20px;
    position: relative; left: 40px;
}

.pillar-card {
    padding: 20px 25px; border-radius: 15px;
    display: flex; align-items: center; gap: 20px;
    color: #fff; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    width: 360px;
}

/* Har bir karta uchun alohida gradient fon */
.gradient-card-blue {
    background: linear-gradient(90deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
    border-left: 5px solid #00c6ff;
}
.gradient-card-blue:hover {
    background: linear-gradient(90deg, rgba(0, 198, 255, 0.8), rgba(0, 114, 255, 0.8));
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.4);
}

.gradient-card-gold {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.2), rgba(255, 107, 0, 0.2));
    border-left: 5px solid #FFC107;
}
.gradient-card-gold:hover {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.8), rgba(255, 107, 0, 0.8));
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.gradient-card-purple {
    background: linear-gradient(90deg, rgba(131, 58, 180, 0.2), rgba(253, 29, 29, 0.2));
    border-left: 5px solid #833ab4;
}
.gradient-card-purple:hover {
    background: linear-gradient(90deg, rgba(131, 58, 180, 0.8), rgba(253, 29, 29, 0.8));
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

/* 5. Harakat Animatsiyalari (Suzish) */
.float-1 { animation: floatY 4s ease-in-out infinite; }
.float-2 { animation: floatY 5s ease-in-out infinite 0.5s; } /* Biroz kechikib */
.float-3 { animation: floatY 4.5s ease-in-out infinite 1s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Kartalar ichidagi ikonka */
.pillar-icon {
    font-size: 1.8rem;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Mobil moslashuv */
@media (max-width: 991px) {
    .vibrant-title-large { font-size: 3rem; text-align: center; }
    .executive-btns { text-align: center; }
    .text-gradient-gold { font-size: 3.5rem; }
    .col-lg-7 { text-align: center; }
}


/* =========================================
   SLAYDER TUGMALARI (NAVIGATSIYA FIX)
   ========================================= */
.carousel-control-prev,
.carousel-control-next {
    z-index: 1000 !important; /* Barcha elementlardan ustun */
    width: 60px; /* Tugma kengligi */
    height: 60px; /* Tugma balandligi */
    top: 50%; /* O'rtada turishi uchun */
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1); /* Yengil fon */
    border-radius: 50%; /* Dumaloq shakl */
    margin: 0 20px; /* Chetidan joy tashlash */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #FFC107; /* Hover bo'lganda sariq */
    opacity: 1;
    transform: translateY(-50%) scale(1.1); /* Biroz kattalashish */
}

/* Strelka ikonkasining rangi */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100%) brightness(200%); /* Oq rang */
}

/* Hover bo'lganda strelka qora bo'lsin */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) grayscale(100%) brightness(0%); /* Qora rang */
}

/* Mobil telefonda tugmalarni kichraytirish */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
}

/* =======================================================
   FIX: 2, 3, 4 - SLAYDLARNI VERTIKAL MARKAZLASH (50%)
   Video slayddan tashqari barcha slaydlarni o'rtaga oladi.
   ======================================================= */
.carousel-item:not(.video-slide) .hero-wrapper-fixed {
    top: 45% !important;
}

/* Mobilda ham o'rtada turishi uchun (ixtiyoriy) */
@media (max-width: 991px) {
    .carousel-item:not(.video-slide) .hero-wrapper-fixed {
        top: 42% !important;
    }
}

/* === MODERN NEON SLIDER 3 === */
.overlay-neon {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(0,0,0,0.85),
        rgba(0,242,255,0.15),
        rgba(255,0,150,0.15));
    animation: bgMove 8s infinite alternate;
    z-index: 1;
}

@keyframes bgMove {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(40deg); }
}

.neon-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    text-align: left;
    animation: slideInLeft 1.2s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Badge */
.neon-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #00f2ff;
    color: #00f2ff;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,242,255,0.6);
}

/* Title */
.neon-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.glow-text {
    color: #00f2ff;
    text-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff;
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.move-text {
    display: inline-block;
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Typewriter */
.type-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ddd;
    border-right: 2px solid #00f2ff;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(40) forwards, blink 1s infinite;
}

@keyframes typing {
    to { width: 100%; }
}
@keyframes blink {
    50% { border-color: transparent; }
}

/* Button */
.btn-neon {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 40px;
    color: #000;
    background: #00f2ff;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0,242,255,0.8);
    transition: 0.3s;
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 15px rgba(0,242,255,0.5); }
    50% { box-shadow: 0 0 35px rgba(0,242,255,1); }
    100% { box-shadow: 0 0 15px rgba(0,242,255,0.5); }
}

.btn-neon:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* 2. STIL O'ZGARISHLARI (Bularni CSS fayl oxiriga qo'shing) */

/* Sarlavha va Orqa fon yozuvi uchun yangi shriftni qo'llash */
.prestige-title,
.marquee-content {
    font-family: 'Unbounded', sans-serif !important; /* Yangi premium shrift */
    text-transform: uppercase;
    letter-spacing: 2px; /* Harflar orasini biroz ochamiz - zamonaviy ko'rinish */
}

.prestige-title {
    font-size: 5.5rem; /* Sarlavhani yanada kattalashtiramiz */
    font-weight: 900; /* Eng qalin vazn */
    line-height: 1;
}

/* "G'OYALAR" so'zi uchun moviy aksent */
.reveal-text-accent {
    display: block;
    color: #00f2ff; /* Yorqin neon moviy */
    animation: textReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(50px);
}

/* "AKSELERATORI" so'zining tillarang to'lish effekti */
.dynamic-fill {
    -webkit-text-stroke: 2px #FFC107; /* Faqat cheti sariq */
    color: transparent;
}

.dynamic-fill::before {
    content: 'AKSELERATORI'; /* Matn shu yerda aniq ko'rsatilgan */
    position: absolute; left: 0; top: 0; width: 0; height: 100%;
    color: #FFC107; /* Ichi to'ladigan rang */
    overflow: hidden;
    border-right: 4px solid #FFC107;
    animation: fillGold 2.5s ease-out 1s forwards; /* Sekinroq va silliq to'lish */
}

/* Tugma stili */
.apply-btn-style {
    background: linear-gradient(45deg, #FFC107, #ffdb58);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}
.apply-btn-style:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(45deg, #ffdb58, #FFC107);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

/* O'ngdagi karta o'zgarishi */
.single-card-adjust {
    display: flex;
    justify-content: center;
}
.center-box {
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
}

/* Mobil qurilmalar uchun moslashuv */
@media (max-width: 991px) {
    .prestige-title {
        font-size: 3.5rem; /* Mobilda kichikroq */
        letter-spacing: 1px;
    }
}

/* ========================================
   LIVE CHAT WIDGET STYLES
   ======================================== */
#dip-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Unbounded', sans-serif;
}

/* 1. Launcher Button (Dumaloq tugma) */
.chat-launcher {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff9800);
    border: none;
    border-radius: 50%;
    color: #07006b;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chat-launcher:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.chat-launcher .close-icon { display: none; }
.chat-launcher.active .open-icon { display: none; }
.chat-launcher.active .close-icon { display: block; font-size: 24px; }
.chat-launcher.active { background: #fff; color: #333; }

/* Bildirishnoma nuqtasi */
.chat-notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: bounceDot 2s infinite;
}

@keyframes bounceDot {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* 2. Chat Window (Oyna) */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
}

.chat-window.open {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

/* Header */
.chat-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }
.operator-avatar { position: relative; width: 40px; height: 40px; }
.operator-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.status-dot {
    position: absolute; bottom: 0; right: 0;
    width: 10px; height: 10px; background: #4cd964;
    border-radius: 50%; border: 2px solid #fff;
}
.operator-name { margin: 0; font-size: 16px; font-weight: 700; }
.operator-status { font-size: 12px; opacity: 0.8; }
.chat-close-btn { background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; opacity: 0.7; }
.chat-close-btn:hover { opacity: 1; }

/* Messages Area */
.chat-messages {
    flex: 1;
    padding: 20px;
    background-color: #f5f7fb;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}

.message-bubble.received {
    background: #fff;
    color: #333;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    align-self: flex-start;
}

.message-bubble.sent {
    background: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.msg-time {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.7;
    text-align: right;
}

/* Input Area */
.chat-input-area {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

#chat-input {
    flex: 1;
    border: none;
    background: #f0f2f5;
    padding: 10px 15px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

#chat-send-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}
#chat-send-btn:hover { background: var(--secondary-color); transform: scale(1.05); }

.chat-footer-brand {
    text-align: center;
    font-size: 10px;
    color: #ccc;
    padding-bottom: 5px;
    background: #fff;
}

/* Mobil uchun */
@media (max-width: 480px) {
    .chat-window {
        width: 300px;
        bottom: 70px;
        right: -10px;
    }
}

/* EKRANLAR ALMASHINUVI UCHUN */
.chat-screen {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

#chat-screen-main {
    display: none;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

#chat-screen-main .chat-messages {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 1-EKRAN: FORMA DIZAYNI */
#chat-screen-form {
    padding: 20px;
    background: #fff;
    overflow-y: auto; /* Kichik ekranlarda sig'may qolsa scroll bo'ladi */
}

.form-intro {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    font-family: 'Unbounded';
    font-size: 14px;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box; /* Input chetga chiqib ketmasligi uchun */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(7, 0, 107, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-start-chat {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(7, 0, 107, 0.2);
}

.btn-start-chat:hover {
    background: var(--accent-color);
    color: #07006b;
    transform: translateY(-2px);
}

/* =======================================================
   VAW CARD DESIGN (PREMIUM GOLD EDITION)
   ======================================================= */

/* 1. Karta Asosi */
.vaw-card-design {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(7, 0, 107, 0.12); /* Juda yumshoq soya */
    padding: 20px 50px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

/* Dekorativ orqa fon nuri (Sariq) */
.vaw-card-design::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

/* 2. Matn Elementlari */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8e1; /* Och sariq fon */
    color: #ff8f00; /* To'q sariq yozuv */
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vaw-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    color: #07006b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(45deg, #07006b, #2962ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #FFC107, #ff6f00);
    border-radius: 10px;
    margin-bottom: 30px;
}

.vaw-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.highlight-gold {
    color: #07006b;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255,193,7,0.3) 0%, rgba(255,193,7,0) 100%);
    padding: 0 5px;
}

/* Check-list (Afzalliklar) */
.vaw-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.vaw-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}
.vaw-features i {
    color: #28a745; /* Yashil check */
    font-size: 1.2rem;
}

/* 3. Tugmalar */
.vaw-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-vaw-primary {
    background: linear-gradient(45deg, #07006b, #0a0a9a);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(7, 0, 107, 0.3);
    transition: all 0.3s ease;
    border: none;
}
.btn-vaw-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 0, 107, 0.5);
    background: linear-gradient(45deg, #FFC107, #ff8f00); /* Hoverda sariq */
    color: #07006b;
}

.btn-vaw-play-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 700;
    transition: 0.3s;
}
.play-icon-small {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f0f2f5;
    display: flex; align-items: center; justify-content: center;
    color: #07006b;
    transition: 0.3s;
}
.btn-vaw-play-text:hover {
    color: #07006b;
}
.btn-vaw-play-text:hover .play-icon-small {
    background: #FFC107;
    color: #fff;
    transform: rotate(360deg);
}

/* 4. Rasm va Media Effekti (O'ng tomon) */
.vaw-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    z-index: 1;
    /* Rasm markazlash uchun */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaw-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}
.vaw-image-wrapper:hover .vaw-main-img {
    transform: scale(1.02);
}

/* Oltin Ramka (Image orqasida siljigan) */
.gold-border-effect {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 3px solid #FFC107;
    border-radius: 30px;
    z-index: 1; /* Rasm orqasida */
    transition: all 0.5s ease;
}
.vaw-image-wrapper:hover .gold-border-effect {
    top: 10px; right: -10px; bottom: -10px; left: 10px; /* Hoverda rasmga yaqinlashadi */
}

/* Katta Play Tugmasi (Rasm ustida) */
.vaw-play-btn {
    position: absolute;
    z-index: 3;
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #07006b;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.vaw-play-btn:hover {
    background: #FFC107;
    color: #fff;
    transform: scale(1.1);
}

/* Ripple (To'lqin) Effekti */
.ripple-effect {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: rippleAnim 2s infinite;
    z-index: -1;
}
@keyframes rippleAnim {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Suzib yuruvchi statistika kartochkasi */
.float-stat-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(7,0,107,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    border-left: 5px solid #FFC107;
    animation: floatUpDown 4s ease-in-out infinite;
}
.float-stat-card .icon-box {
    width: 45px; height: 45px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #07006b;
    font-size: 20px;
}
.float-stat-card .text-box strong {
    display: block; font-size: 1rem; color: #333;
}
.float-stat-card .text-box span {
    font-size: 0.85rem; color: #777;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobil uchun moslashuv */
@media (max-width: 991px) {
    .vaw-card-design {
        padding: 40px 25px;
        text-align: center;
    }
    .title-underline { margin: 0 auto 30px auto; }
    .vaw-features { justify-content: center; }
    .vaw-buttons { justify-content: center; }

    .vaw-image-wrapper { margin-top: 40px; height: 300px; }
    .gold-border-effect { display: none; /* Mobilda joy kamligi uchun o'chiramiz */ }
    .float-stat-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 80%;
        justify-content: center;
        animation: none; /* Mobilda qimirlamasin */
    }
}
/* =======================================================
   PREMIUM GLASS CARD (ZAMONAVIY & NUFUZLI)
   ======================================================= */

.premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); /* Juda yumshoq soya */
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03); /* Ko'zga tashlanmas chegara */
}

/* Orqa fondagi bezak (Hover paytida ko'rinadi) */
.premium-overlay {
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(7, 0, 107, 0.05));
    border-radius: 0 0 0 100%;
    transition: transform 0.5s ease;
    transform: translate(50%, -50%); /* Yashirinib turadi */
    z-index: -1;
}

/* Header: Icon va Tag */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.p-icon-box {
    width: 60px; height: 60px;
    background: #f8faff; /* Juda och ko'k fon */
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 0 1px rgba(7, 0, 107, 0.05); /* Ichki chiziq */
}

.p-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff8e1; /* Och sariq */
    color: #f57f17; /* To'q sariq */
    text-transform: uppercase;
}

/* Sarlavha va Matn */
.premium-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Unbounded', sans-serif;
    transition: color 0.3s;
}

.premium-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Footer: Yil va Tugma */
.premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.p-info {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

.p-arrow-btn {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f0f0f0;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
    font-size: 16px;
}

/* === HOVER ANIMATSIYALARI (Eng muhim qismi) === */

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(7, 0, 107, 0.12);
    border-color: transparent;
}

/* Hoverda tepadan oltin chiziq paydo bo'lishi */
.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0); /* Yashirin */
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.premium-card:hover::before {
    transform: scaleX(1); /* To'liq chiziq */
}

.premium-card:hover .premium-overlay {
    transform: translate(0, 0); /* Orqa fon bezagi chiqib keladi */
}

/* Icon o'zgarishi */
.premium-card:hover .p-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(-10deg);
    box-shadow: 0 10px 20px rgba(7, 0, 107, 0.3);
}

/* Sarlavha o'zgarishi */
.premium-card:hover .premium-title {
    color: var(--primary-color);
}

/* Tugma o'zgarishi */
.premium-card:hover .p-arrow-btn {
    background: var(--accent-color); /* Sariq fon */
    border-color: var(--accent-color);
    color: #000;
    transform: rotate(-45deg); /* Strelka tepaga qarab qoladi */
}

/* =======================================================
   MUVAFFAQIYAT OMILLARI (PREMIUM GRID)
   ======================================================= */

/* 1. Karta Dizayni */
.success-box {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Icon (Chap tarafdagi yumaloq) */
.sb-icon {
    width: 55px; height: 55px;
    background: #f4f7fc; /* Juda och ko'k */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Matnlar */
.sb-content { text-align: left; }

.sb-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
    font-family: 'Unbounded', sans-serif;
}

.sb-content p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* === HOVER EFFEKTLARI === */
.success-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 0, 107, 0.08);
    border-color: transparent;
}

/* Hoverda chap tarafdan oltin chiziq paydo bo'ladi */
.success-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-color); /* Oltin rang */
    transform: scaleY(0);
    transition: transform 0.3s ease;
}
.success-box:hover::before { transform: scaleY(1); }

/* Hoverda Icon o'zgarishi */
.success-box:hover .sb-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

/* 2. O'ng Tomon Rasmi */
.success-image-container {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* Statistika tashqariga chiqib turishi uchun */
}

.success-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}
.success-image-container:hover .success-main-img {
    transform: scale(1.02);
}

/* Suzib yuruvchi Statistika (Floating Stat) */
.floating-stat {
    position: absolute;
    bottom: 30px; left: -20px; /* Rasmdan biroz chapga chiqib turadi */
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(7, 0, 107, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #28a745; /* Yashil (Muvaffaqiyat rangi) */
    animation: floatStat 3s ease-in-out infinite;
    z-index: 2;
}

.fs-icon {
    width: 40px; height: 40px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.fs-text strong { display: block; font-size: 1.2rem; color: #333; line-height: 1; }
.fs-text span { font-size: 0.8rem; color: #666; font-weight: 600; }

@keyframes floatStat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Mobil Moslashuv */
@media (max-width: 991px) {
    .success-image-container { margin-top: 30px; }
    .floating-stat { left: 50%; transform: translateX(-50%); bottom: -20px; width: 80%; justify-content: center; animation: none; }
    .sb-content { text-align: center; }
    .success-box { flex-direction: column; text-align: center; }
}
/* =======================================================
   ELITE DUAL-SCROLL PARTNERS (BOY DIZAYN)
   ======================================================= */

.partners-elite-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: -30px auto 50px; /* Sarlavha tagiga yaqinlashtirish */
}

/* Konteyner */
.elite-wrapper {
    position: relative;
    width: 100%;
    /* Chetlarni chiroyli xiralashtirish */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 10px 0; /* Kartalar soyasi kesilmasligi uchun */
}

.marquee-content {
    display: flex;
    gap: 30px;
    /* Animatsiya qo'shish */
    width: max-content;
}

/* 1. Chapga yuradigan qator */
.scroll-left .marquee-content {
    animation: scrollLeft 35s linear infinite;
}

/* 2. O'ngga yuradigan qator */
.scroll-right .marquee-content {
    animation: scrollRight 35s linear infinite;
}

/* To'xtatish (Hover) */
.elite-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* ============================
   PREMIUM KARTA STILI
   ============================ */
.elite-card {
    width: 260px;
    height: 140px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden; /* Shine effekti uchun */

    /* Oddiy holat */
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* =======================================================
   LOGOTIPLAR RANGINI TO'G'RILASH (COLOR FIX)
   ======================================================= */

.elite-card img {
    max-width: 100%;
    max-height: 95px;
    object-fit: contain;

    /* MUHIM O'ZGARISH: Oq-qora filtr olib tashlandi */
    filter: none;

    /* Biroz shaffoflik beramiz, shunda hover bo'lganda "yonadi" */
    opacity: 0.85;

    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effektini kuchaytiramiz */
.elite-card:hover img {
    opacity: 1; /* To'liq ko'rinadi */
    transform: scale(1.15); /* Biroz kattalashadi */

    /* Logotipning o'ziga yengil soya beramiz (3D effekt uchun) */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.elite-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* === SHINE EFFECT (YALTIRASH) === */
/* Bu juda muhim qism: Kartaning ustidan yorug'lik o'tadi */
.elite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Boshlanish joyi */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 193, 7, 0.2), /* Oltin nur */
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
}

.elite-card:hover::before {
    left: 150%; /* Tugash joyi */
    transition: left 0.7s ease-in-out; /* Tezlik */
}

/* Animatsiya Keyframes */
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Mobil */
@media (max-width: 768px) {
    .elite-card {
        width: 160px;
        height: 90px;
    }
    .marquee-content { gap: 15px; }
}

/* Asosiy sarlavhalar uchun */
/* Tech uslubdagi sarlavhalar */
/* Trend uslub */
.vaw-title,              /* Xush kelibsiz qismi */
.hero-title,             /* 1-Slayder */
.cyber-title,            /* 2-Slayder */
.prestige-title,         /* 3-Slayder */
.vibrant-title-large,    /* 4-Slayder */
.section-title,          /* Bo'lim nomlari (Masalan: Yangiliklar) */
.hero-title-v4,          /* Qo'shimcha slayder */
.premium-title,          /* Kichik kartalar sarlavhasi */
.glass-stat-box h3 {
    font-family: 'Unbounded', sans-serif !important;
    font-weight: 800; /* Qalin */
    letter-spacing: 0.5px; /* Harflar orasini biroz ochamiz */
    text-transform: uppercase;
}

/* =========================================
   NESTED DROPDOWN (ICHMA-ICH MENYU) FIX
   ========================================= */

/* Asosiy menyu elementi */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

/* Ichki menyuni o'ng tarafga chiqarish */
.dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%; /* O'ng tarafga surish */
    margin-top: -5px; /* Biroz teparoqqa */
    margin-left: 0;
    display: none; /* Standart holatda yashirin */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover bo'lganda ko'rsatish */
.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    animation: fadeInRight 0.3s ease;
}

/* O'ngdan chiqish animatsiyasi */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ikonka hover bo'lganda burilishi */
.dropdown-submenu:hover > a i {
    transform: rotate(90deg);
    transition: transform 0.3s;
}

/* --- MOBIL VERSIYA UCHUN --- */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: static; /* Mobilda pastga tushadi */
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: block; /* Mobilda doim ochiq turishi mumkin yoki JS kerak */
    }

    .dropdown-submenu > a i {
        display: none; /* Mobilda strelka kerak emas */
    }
}
/* =========================================
   PREMIUM MINI STATISTIKA (KARTA ICHIDA)
   ========================================= */

.premium-mini-stats-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08); /* Tepasidan ingichka chiziq */
}

.mini-stat-item {
    text-align: left;
}

/* Raqamlar stili */
.mini-counter {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #07006b; /* To'q ko'k */
    margin: 0;
    line-height: 1;
    background: linear-gradient(45deg, #07006b, #2962ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Plyus belgisi */
.mini-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFC107; /* Oltin rang */
    margin-left: 2px;
}

/* Yozuv stili */
.mini-stat-item p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 0 0;
}

/* Oradagi chiziqcha (Divider) */
.mini-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    transform: skewX(-15deg); /* Zamonaviy qiyshiq chiziq */
}

/* Mobilga moslashuv */
@media (max-width: 991px) {
    .premium-mini-stats-row {
        justify-content: center; /* O'rtaga olish */
        flex-wrap: wrap;
        gap: 20px;
    }

    .mini-stat-divider {
        display: none; /* Mobilda chiziqchalar kerak emas */
    }

    .mini-stat-item {
        text-align: center;
        flex: 1 1 30%; /* Yonma-yon sig'dirish */
    }

    .mini-stat-item .d-flex {
        justify-content: center;
    }

    .mini-counter {
        font-size: 1.8rem;
    }
}

/* =========================================
   YANGILANGAN "SOCHNIY" TOP BAR STYLES
   ========================================= */

/* Top bar foni - chuqur gradient va yorqinroq ko'rinish */
.top-bar-area {
    /* Oddiy rang o'rniga boy gradient */
    background: linear-gradient(90deg, #070033 0%, #040033 50%, #05002d 100% 100%);

    padding: 9px 0; /* Biroz kattaroq padding */
    font-size: 13px;
    /* Pastki chiziqni yorqinroq qilamiz */
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    font-family: 'Unbounded', sans-serif;
    color: #fff; /* Matn rangi to'liq oq */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Yengil soya */
    position: relative;
    z-index: 1001;
}

/* Aloqa linklari (Telefon va Email) */
.top-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-contact a:hover {
    color: #FFC107; /* Hoverda tilla rang */
}

.top-contact i {
    color: #FFC107;
    margin-right: 8px;
    /* Oldingi "filter: drop-shadow(...)" ni olib tashladik */
    filter: none;
}

.top-contact .divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Ijtimoiy tarmoqlar (Sokin va Nafis) --- */

.top-socials {
    display: flex;
    gap: 20px; /* Ikonkalar orasini biroz ochamiz */
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 25px;
}

.top-socials a {
    /* Asosiy rang - biroz shaffof oq */
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px; /* Ikonkani biroz kattalashtiramiz */
    text-decoration: none;
    transition: all 0.3s ease; /* Silliq o'tish effekti */
    display: inline-block;
}

/* Sichqoncha borgandagi (Hover) effekt */
.top-socials a:hover {
    color: #FFC107; /* Tilla rangga o'tadi */
    transform: translateY(-3px); /* Biroz yuqoriga ko'tariladi */
}

/* Eski animatsiya kodlari ishlamsligi uchun ularni bekor qilamiz */
.top-socials a i {
    animation: none !important;
    filter: none !important;
    text-shadow: none !important;
}


/* --- Til o'zgartirish tugmasi --- */
.top-lang-dropdown .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1); /* Yengil fon beramiz */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px; /* Dumaloq shakl */
    transition: 0.3s;
}

.top-lang-dropdown .dropdown-toggle:hover {
    background: rgba(255, 193, 7, 0.2); /* Hoverda tilla fon */
    border-color: #FFC107;
}

.top-lang-dropdown .dropdown-menu {
    min-width: 150px;
    padding: 10px;
    background: #fff;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-radius: 12px;
    margin-top: 10px !important;
    animation: fadeInUp 0.3s ease; /* Dropdown ochilish animatsiyasi */
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-lang-dropdown .dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: 0.2s;
}

.top-lang-dropdown .dropdown-item:hover {
    background: #fff4d4; /* Tilla rangli och fon */
    color: #d39e00;
}

/* Mobil moslashuv */
@media (max-width: 768px) {
    .top-bar-area { padding: 8px 0; }
    .top-contact .divider,
    .top-contact a:nth-child(3) { display: none; }

    .top-socials {
        gap: 12px;
        padding-right: 15px;
        margin-right: 15px;
        border-right-color: rgba(255, 255, 255, 0.15);
    }
    .top-socials a i { font-size: 14px; }

    .top-lang-dropdown .dropdown-toggle {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Bootstrapning standart strelkasini o'chirish */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* =========================================
   PREMIUM MODAL STYLES (GLASSMORPHISM)
   ========================================= */

/* Asosiy Parda (Orqa fon) */
.premium-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 0, 40, 0.7); /* To'q ko'k xira fon */
    backdrop-filter: blur(15px); /* Kuchli xiralashtirish */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.premium-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Oyna (Modal) korpusi */
.premium-modal-glass {
    width: 90%;
    max-width: 1200px;
    height: 85vh; /* Ekranning 85% qismini egallaydi */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.premium-modal-overlay.active .premium-modal-glass {
    transform: scale(1) translateY(0);
}

/* Yopish tugmasi */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #ff0000;
    color: white;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transition: 0.3s;
}
.modal-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: darkred;
}

/* Modal Sarlavhasi */
.modal-header-content {
    padding: 40px 50px 20px 50px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    z-index: 2;
}

.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #07006b;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

/* Scroll qilinadigan tana qismi */
.modal-scroll-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 50px 50px 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    /* Chiroyli scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #FFC107 #f0f0f0;
}

.modal-scroll-body::-webkit-scrollbar { width: 8px; }
.modal-scroll-body::-webkit-scrollbar-track { background: #f0f0f0; }
.modal-scroll-body::-webkit-scrollbar-thumb { background-color: #FFC107; border-radius: 10px; }

/* Grid Sistema (Kartalar joylashuvi) */
.modal-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Yonma-yon 2 tadan */
    gap: 25px;
}

/* --- GLASSCARD (Yagona karta dizayni) --- */
.glass-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    border-left: 5px solid #07006b; /* Standart ko'k chiziq */
}

/* Kartalar animatsiyasi */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.glass-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 0, 107, 0.15);
}

.glass-info-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.glass-info-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Ikonkalar */
.card-icon {
    width: 50px; height: 50px;
    background: rgba(7, 0, 107, 0.1);
    color: #07006b;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.glass-info-card:hover .card-icon {
    background: #07006b; color: #fff; transform: rotate(360deg);
}

/* --- RANGLAR VARIANTS --- */

/* Gold (Sariq) */
.text-gold { color: #FFC107; }
.border-gold { border-left-color: #FFC107; }
.gold-icon { background: rgba(255, 193, 7, 0.1); color: #e6a700; }
.glass-info-card:hover .gold-icon { background: #FFC107; color: #000; }

/* Cyan (Neon Moviy) */
.text-cyan { color: #00d2ff; }
.border-cyan { border-left-color: #00d2ff; }
.cyan-icon { background: rgba(0, 210, 255, 0.1); color: #00a8cc; }
.glass-info-card:hover .cyan-icon { background: #00d2ff; color: #fff; }

/* Purple (Binafsha) */
.text-gradient { background: linear-gradient(45deg, #833ab4, #fd1d1d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.border-purple { border-left-color: #833ab4; }
.purple-icon { background: rgba(131, 58, 180, 0.1); color: #833ab4; }
.glass-info-card:hover .purple-icon { background: linear-gradient(45deg, #833ab4, #fd1d1d); color: #fff; }

/* MOBIL MOSLASHUV */
@media (max-width: 991px) {
    .premium-modal-glass { width: 95%; height: 80vh; border-radius: 20px; }
    .modal-header-content { padding: 30px 20px 15px 20px; }
    .modal-title { font-size: 1.5rem; }
    .modal-scroll-body { padding: 20px; }
    .modal-cards-grid { grid-template-columns: 1fr; } /* Bir qator */
    .glass-info-card { padding: 20px; }
}