/* *, *::before, *::after {
 box-sizing: border-box;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fcfcff;
}


/* ...existing code... */

/* SITE TEST BADGE */
.site-test-badge {
    position: fixed;
    top: 12px;                 /* badge sits near top and overlays navbar */
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 9999;             /* above navbar */
    pointer-events: auto;
    width: min(920px, calc(100% - 32px));
    max-width: 92%;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15,23,42,0.25);
    overflow: hidden;
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.3s;
    opacity: 1;
    will-change: transform, opacity;
}

/* inner styling: animated gradient + small bounce */
.site-test-badge-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:10px 16px;
    background: linear-gradient(90deg, rgba(124,58,237,0.12), rgba(26,79,163,0.08));
    position: relative;
    overflow: hidden;
}

/* moving highlight */
.site-test-badge-inner::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(120deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 100%);
    mix-blend-mode: overlay;
    pointer-events:none;
    animation: badgeShine 3.6s linear infinite;
    opacity:0.9;
}

/* subtle vertical bob */
@keyframes badgeFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* shine animation */
@keyframes badgeShine {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(120%); }
}

.site-test-badge:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.01);
}

.site-test-badge-inner {
    animation: badgeFloat 6s ease-in-out infinite;
}

/* text */
.site-test-text{
    color: blue;
    font-weight:600;
    font-size:1rem;
    letter-spacing:0.2px;
}
.site-test-text strong { font-weight:800; color:#ff4b4b; }

/* close button */
.site-test-close {
    background: rgba(0,0,0,0.18);
    color: #fff;
    border: none;
    width:36px;
    height:36px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    line-height:1;
    transition: transform .12s, background .12s;
}
.site-test-close:hover { transform: translateY(-2px); background: rgba(243, 233, 233, 0.28); }

/* hide state */
.site-test-badge.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
}

/* responsive tweaks */
@media (max-width: 700px) {
    .site-test-text { font-size:0.95rem; }
    .site-test-badge { top: 8px; width: calc(100% - 20px); max-width: 96vw; }
    .site-test-close { width:32px; height:32px; font-size:16px; }
}

/* ensure navbar does not hide badge interactions */
.topnav { z-index: 1000; } /* keep below badge */

/* ...existing code... */


/* Add a black background color to the top navigation */
.topnav {
  background-color: #2c444c;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
    height: 78px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

section {
  scroll-margin-top: 80px; /* Navbar balandligiga teng qiymat */
}

.nav-contact{
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
}

.nav-contact-btn{
    margin-left: auto;
    background: #3898f7;
    color: #fff !important;
    padding: 10px 18px;
    width: max-content;
    border-radius: 32px;
    font-weight: 600;
    box-shadow: 0 2px 8px #29076d, 0 2px 8px #36ddd7;
    transition: background 0.2s, color 0.2s;
}

.topnav a.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 25px;
}

.logo-grid {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.blue {
    color: #1129b4;
    text-shadow: #00ffae 0px 0px 3px;
}

.red {
    color:rgb(247, 26, 26);
    text-shadow: #ff00bf 0px 0px 3px;
}

img.logo-image {
    width: 50px;
    height: 50px;
}

.nav-logo{
    display: none;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    color: #3898f7;

    letter-spacing: 1px;
    align-items: center;
    width: 16px;
    height: auto;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;        
  color: #f2f2f2;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  font-family:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 14px 16px;
  margin: 0;
  text-decoration: none;
  font-size: 17px;
}

.mid-nav:hover {
  content: '';
  display: flex;
  background: #acc4d6;
  color: #000;
  border-radius: 1px;
  left: 0;
  bottom: 0;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    z-index: 120;
}

.logo-image{
    width: 32px;
    height: 32px;
    vertical-align: middle;
    border-radius: 30px;
    margin-right: 8px;
}
.topnav .icon {
    display: none;
    position: absolute;
    right: 18px;
    top: 22px;
    font-size: 22px;
    cursor: pointer;
    z-index: 120;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 900px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
    position: absolute;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: fixed; 
    height: 100%;
    width: 60%;
    left: 40%;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .topnav.responsive a.icon {
    position: absolute;
  }
  .topnav {
        align-items: center;
        justify-content: space-between;
    }
  .topnav.responsive a.logo{
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .logo-grid{
        display: grid;
    }
}


@media (max-width: 500px) {
    .topnav a {
        font-size: 14px;
        padding: 10px 12px;
    }
    .logo-image {
        width: 14px;
        height: 14px;
    }
    .topnav:nth-first-child {
        display: flex;
        width: 50%;
    }
    .topnav {
        align-items: center;
        justify-content: space-between;
    }
    .topnav.responsive a.icon{
        display: absolute;
    }
    .topnav.responsive {
        left:30%;
        width: 70%;
        flex-direction: column;
        align-items: flex-start;

    }
}


.hero-section {
    position: relative;
    width: 100%;
    height: 1080px; /* To‘liq ekran balandligi */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

main {
    padding-top: 78px; /* fixed navbar balandligiga teng yuqori bo'shliq */
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; /* to‘liq ekran egallaydi */
    object-fit: cover; /* SURATNI IDEAL MOS QILADI */
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 40, 0.55);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    width: 60%;
    max-width: 600px;
    background: rgba(76, 76, 108, 0.72);
    border-radius: 22px;
    padding: 38px 38px 32px 38px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    backdrop-filter: blur(2px);
}

.hero-content h1 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 28px;
}

.hero-btn {
    background: linear-gradient(90deg, #931e8b 0%, #4b5cca 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 13px 38px;
    border-radius: 32px;
    box-shadow: 0 2px 8px #6d0766, 0 2px 8px #36ddd7;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover,
.hero-btn:focus {
    background: linear-gradient(90deg, #36ddd7 0%, #6d0766 100%);
    box-shadow: 0 0 48px #36ddd7, 0 0 48px #6d0766;
}

/* Tablet (max 900px) */
@media (max-width: 900px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);  /* markazga olib keladi */
        max-width: 350px;
        background: rgba(76, 76, 108, 0.75);
        border-radius: 18px;
        padding: 18px 16px;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btn {
        font-size: 0.9rem;
        padding: 10px 28px;
    }
}

/* Mobile (max 500px) */
@media (max-width: 500px) {

    .hero-section {
        height: 250px;             /* to‘liq ekran balandligi */
        min-height: 200px;
        position: relative;
    }

    .hero-slider,
    .hero-slide {
        width: 100%;
        height: 100%;              /* rasm ekranni to‘liq qoplaydi */
        object-fit: cover;         /* fon sifatida ideal joylashadi */
    }

    .hero-overlay {
        height: 100%;
        width: 100%;
        background: rgba(24, 24, 40, 0.60); /* biroz qoraytirish */
    }

    .hero-content {
        position: absolute;
        top: 60%;
        width: 80vw;
        left: 50%;
        transform: translate(-50%, -50%);  /* markazga olib keladi */
        background: rgba(76, 76, 108, 0.75);
        border-radius: 18px;
        padding: 18px 16px;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .hero-btn {
        width: 70%;
        font-size: 1.2rem;
        padding: 10px 10px;
    }
}




/* ...existing code... */

/* About (Biz haqimizda) */
.about-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 0 48px 0;
    margin: 0 auto 36px auto;
    max-width: 1200px;
    box-shadow: 0 4px 30px rgba(7,12,25,0.25);
    color: #000000;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #000;
}

.about-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

/* Card */
.about-card {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Caption above video */
.about-caption {
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    align-self: center;
    min-width: 60%;
}

/* Video */
.about-video {
    width: 400px;
    height: 700px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: #000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* Small caption / note (optional) */
.about-card .note {
    color: #cfc6ff;
    font-size: 0.95rem;
    margin-top: 6px;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .about-videos {
        grid-template-columns: 1fr;
    }
    .about-caption {
        min-width: 100%;
    }
    .about-section {
        padding: 20px 16px;
    }
    .about-title {
        font-size: 1.5rem;
    }
}

/* ...existing code... */
/* ...existing code... */

.emu-stats-section {
    background: #faf7fb;
    padding: 48px 0 48px 0;
    margin: 0 auto 36px auto;
    border-radius: 10px 10px;
    box-shadow: none;
    min-height: 340px;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.emu-stats-section .emu-blur-overlay {
    display: none;
    position: absolute;
    z-index: 3;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px) brightness(0.8);
    background: rgba(255,255,255,0.15);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

/* Show overlay when any card is hovered */
.emu-stats-section.card-hovered .emu-blur-overlay {
    display: block;
    opacity: 1;
}

.emu-stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    gap: 32px;
    position: relative;
}

.emu-stats-left {
    flex: 1 1 420px;
    min-width: 320px;
    padding-left: 48px;
}

.emu-stats-label {
    color: #7c3aed;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.emu-stats-title {
    color: #232328;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.emu-stats-title-accent {
    color: #7c2176;
    font-weight: 800;
    display: block;
}

.emu-stats-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
    min-width: 200px;

}

.emu-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
    width: 600px;
}

.emu-stat-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(124,50,237,0.08);
    padding: 28px 24px 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 220px;
    min-height: 100px;
    box-shadow: 0 2px 10px #29076d, 0 2px 8px #36ddd7;
    /* border-left: 5px solid #7c3aed;
    border-bottom: 5px solid #7c3aed; */
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s, filter 0.3s, z-index 0s;
    z-index: 4;
    filter: blur(0) brightness(1);
    position: relative;
}

.emu-stats-section.card-hovered .emu-stat-card {
    filter: blur(2px) brightness(0.7);
    opacity: 0.7;
    z-index: 4;
}

.emu-stat-card:hover,
.emu-stat-card:focus-within {
    filter: blur(0) brightness(1.05);
    opacity: 1;
    box-shadow: 0 8px 32px 0 #7c3aed, 0 2px 8px #36ddd7;
    z-index: 10;
    position: relative;
}


.emu-stat-icon {
    width: 48px;
    height: 48px;
    /* background: #f4eefb; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.emu-stat-icon img {
    width: 32px;
    height: 32px;
}

.emu-stat-number {
    color: #7c2176;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.emu-stat-desc {
    color: #7c2176;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .emu-stats-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 12px;
    }
    .emu-stats-left {
        padding: 0 8px;
        margin-bottom: 50px;
        min-width: unset;
        max-height: 60px;
    }
    .emu-stats-right{
        padding-right: 0;
    }
    .emu-stats-grid {
        align-items: center;
        width: 100%;
        gap: 18px 12px;
    }
}

@media (max-width: 700px) {
    .emu-stats-section {
        padding: 18px 0 18px 0;
        border-radius: 0 0 18px 18px;
    }
    .emu-stats-container {
        flex-direction: column;
        gap: 0px;
    }
    .emu-stats-left {
        padding: 0 8px;
        margin-bottom: 50px;
        min-width: unset;
        max-height: 60px;
    }
    .emu-stats-right {
        padding: 0 8px;
    }
    .emu-stats-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 12px;
    }
    .emu-stat-card {
        min-width: unset;
        padding: 18px 12px 14px 12px;
    }
    .emu-stats-title, .emu-stats-title-accent {
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .emu-stats-container{
        gap: 30px;  
        height: auto;
    }
    .emu-stats-left {
        height: 20%;
        text-align: center;
    }
    .emu-stats-title, .emu-stats-title-accent {
        font-size: 1rem;
    }
    .emu-stats-right{
        padding: 0;
    }
    .emu-stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .emu-stat-card {
        padding: 8px 20px;
        width: 120px;
    }
    .emu-stat-icon img {
        width: 32px;
        height: 32px;
    }
    .emu-stat-number {
        font-size: 1.2rem;
    }
    .emu-stat-desc {
        font-size: 0.6rem;
    }
    
}


.why-section {
    background: #ffffff;
    padding: 56px 0 48px 0;
    margin: 0 auto 36px auto;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(26,79,163,0.10);  
    max-width: 1200px;
}

.why-title {
    color: #3d485c;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: 2px;
}

.why-grid {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: repeat(2, 1fr); */
    /* grid-auto-rows: 200px; */
    gap: 48px 36px;
    max-width: 1000px;
    margin: 0 auto;
}

.kg-grid {
    display: flex;
    gap: 20px;
}

.kg-grid .why-card{
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 24px 28px 24px;
    display: flex;
    gap: 0px;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-around;
    box-shadow: 2px 5px 12px rgba(127, 137, 152, 0.08);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, transform 0.3s, filter 0.3s, z-index 0s;
    box-shadow: 0 2px 10px #29076d, 0 2px 8px #36ddd7;
    position: relative;
    z-index: 4;
    filter: blur(0) brightness(1);
    position: relative;
}


.kg-grid .why-card .why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #62627d;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #7c3aed;
    box-shadow: 0 0 0 4px #232328;
}

.kg-grid .why-card .why-text { 
    width: 80%;
}


.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 24px 28px 24px;
    display: flex;
    gap: 20px;
    /* flex-direction: column; */
    align-items: center;
    justify-content: left;
    box-shadow: 2px 5px 12px rgba(127, 137, 152, 0.08);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1), box-shadow 0.3s, transform 0.3s, filter 0.3s, z-index 0s;
    box-shadow: 0 2px 10px #29076d, 0 2px 8px #36ddd7;
    position: relative;
    z-index: 4;
    filter: blur(0) brightness(1);
    position: relative;
}

why.why-card.card-hovered .why-card {
    filter: blur(2px) brightness(0.7);
    opacity: 0.7;
    z-index: 4;
}

.why-card:hover,
.why-card:focus-within {
    filter: blur(0) brightness(1.05);
    opacity: 1;
    box-shadow: 0 8px 32px 0 #7c3aed, 0 2px 8px #36ddd7;
    z-index: 10;
    position: relative;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #62627d;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #7c3aed;
    box-shadow: 0 0 0 4px #232328;
}

.why-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.why-text {
    color: #3d485c;
    text-align: center;
    font-size: 1.18rem;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 500px) {
    /* .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .why-section {
        padding: 32px 0 24px 0;
    }
    .why-card {
        width: 90%;
    } */
}

@media (max-width: 700px) {
    /* .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    } */
}
/* ...existing code... */

/* ...existing code... */


.services-title {
    text-align: center;
    color: #fff;
    margin-bottom: 32px;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px; 
    padding-right: 32px; 
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    transition: transform 0.5s;
}

.testimonial-video {
    min-width: 260px;
    max-width: 260px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    background: #181828;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}   

.slider-btn {
    background: #1a4fa3;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: #003366;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonial-track {
        width: calc(100vw - 100px);
        gap: 16px;
    }
    .testimonial-slider {
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (max-width: 900px) {
    .testimonial-track {
        width: 98vw;
        gap: 10px;
    }
    .testimonial-video {
        min-width: 200px;
        max-width: 200px;
        height: 340px;
    }
}
@media (max-width: 600px) {
    .testimonial-slider {
        gap: 6px;
    }
    .testimonial-track {
        width: 98vw;
        gap: 6px;
    }
    .testimonial-video {
        min-width: 140px;
        max-width: 140px;
        height: 220px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

}
/* ...existing code... */


/* Enhanced futuristic styling */
:root {
	--glow-primary: rgba(56, 189, 248, 0.7);
	--glow-secondary: rgba(94, 234, 212, 0.6);
	--neon-pink: rgba(236, 72, 153, 0.8);
	--neon-blue: rgba(59, 130, 246, 0.8);
	--neon-green: rgba(16, 185, 129, 0.8);
}



.slide {
    height: 30vw;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    	min-width: 360px;
	max-width: 500px;
	margin: 0 25px;
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.85),
		rgba(15, 23, 42, 0.9)
	);
	border-radius: 1.2rem;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: 5px 15px 25px rgba(43, 64, 90, 0.5), 0 0 30px rgba(56, 189, 248, 0.2);
	transition: all 0.6s cubic-bezier(0.21, 0.61, 0.35, 1);
	transform-origin: center center;
	position: relative;
	border: 1px solid rgba(94, 234, 212, 0.2);
}

.slide-content {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    border-radius: 0, 12px;
    text-align: center;
    display: grid;    
    position: absolute;
}
.owl-nav{
    font-size: 3rem;
}
.slide-title {
    padding-top: 10px;
    font-size: x-large;
}

.slide_link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 600;
    box-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-blue);
    transition: background 0.3s, box-shadow 0.3s;
    justify-self: center;
}


@media (max-width: 1800px) {
    .slide {
        min-width: 340px;
	    max-width: 380px;
        height: 30vw;
        gap: 12px;
        margin: 0 16px;
    }
}

@media (max-width: 1200px) {
    .slide {
        min-width: 300px;
        max-width: 340px;
        height: 30vw;
        gap: 10px;
        margin: 0 14px;
    }
    .video {
        width: 100%;
        height: 100%;
    }

    .slide-title {
        max-width: 100%;
        max-height: 20%;
    }

}

@media (max-width: 600px) {
    .slide {
        min-width: 240px;
        max-width: 300px;
        height: 25vw;
        gap: 8px;
        margin: 0 14px;
    }
    .video {
        width: 100%;
        height: 100%;
    }
    
    .slide-content slide-title {
        font-size: 1rem;
        max-width: 100%;
        max-height: 20%;

    }}

@media (max-width: 500px) {
    .owl-stage {
        gap: 5px;
        justify-content: space-between;
        align-items: center;

    }
    .owl-item {
        margin-right: 0px;
    }
    .owl-nav {
        display: none;
    }

    .slide {
        border-radius: 5px;
        max-width: 100%;
        height: 500px;
        /* gap: 6px; */
        /* margin: 0 12px; */
    }
    .video {
        width: 100%;
        height: 100%;
    }
    .slide-content {
        font-size: 7px;
        max-width: 100%;
        max-height: 40%;
        border-radius: 0%;
        padding-top: 10px;
    }
    slide-title {
        font-size: 50px;
    }
    .slide_link{
        border-radius: 5px;
        padding: 5px;
        width: 100%;
        font-size: large;
    }
}





/* ...existing code... */
.tarif-section {
    background: #ffffff;
    margin: 64px auto 0 auto;
    padding: 48px 0 186px 0;
    max-width: 1200px;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(26,79,163,0.10);    
}

.tarif-title {
    color: #000000; 
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 44px;
    letter-spacing: 2px;
}

.tarif-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    height: auto;
    padding-bottom: 0;
    margin: auto;
    max-width: 1100px;

}


.tarif-card {
    background: #181828;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(124,50,237,0.10);
    height: 650px;
    min-width: 320px;
    max-width: 500px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #232328;
    transition: border 0.2s, box-shadow 0.2s;
    position: relative;
}

.tarif-card:hover,
.tarif-card:focus-within {
    /* z-index: 10; */
    opacity: none;
    filter: none;
    box-shadow: 0 8px 32px 0 #7c3aed, 0 2px 8px #36ddd7;
    transform: scale(1.04) translateY(-18px);
}

.tarif-card:hover,
.tarif-card:focus-within {
    opacity: 1;
    filter: none;
    z-index: 10;
  
}

/* Hover bo'lsa, boshqa kartalar xiralashadi */
.tarif-cards:hover .tarif-card,
.tarif-cards:focus-within .tarif-card {
    opacity: 1.1;
    filter: blur(0) brightness(0.85);
    z-index: 1;
    transform: scale(0.98);
}

.tarif-card:hover,
.tarif-card:focus-within {
    opacity: 1;
    filter: blur(0) brightness(0.5);
    z-index: 10;
    transform: scale(1.04) translateY(-18px);
}


.tarif-card.popular::after {
    content: "OMMABOP";
    position: absolute;
    top: 18px;
    right: 24px;
    background: #7c3aed;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.tarif-name {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 8px;
    letter-spacing: 1px;
    max-width: 60%;
}

.tarif-price {
    color: #00ffae;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    ;
}

.tarif-price span {
    font-size: 1.1rem;
    color: #b3b3b3;
    font-weight: 500;
}

.tarif-desc {
    color: #b3b3b3;
    font-size: 1.08rem;
    margin-bottom: 18px;
    font-weight: 500;
    width: 80%;
}

.tarif-list {
    margin-bottom: 18px;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    width: 80%;
    justify-items: flex-start;
}

.tarif-list li {
    color: #fff;
    font-size: 1.08rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tarif-list li::before {
    content: "✔";
    color: #00ffae;
    font-size: 1.1rem;
    margin-right: 6px;
}

.tarif-for {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    width: 80%;
}

.tarif-note {
    color: #ff4e4e;
    font-size: 1rem;
    margin-top: 8px;
    text-align: center;
    width: 80%;
}

.tarif-btn {
    background: linear-gradient(90deg, #7c3aed 0%, #1a4fa3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 0 24px 0 #7c3aed44;
    letter-spacing: 1px;
    border: none;
    width: 100%;
    text-align: center;
    margin-top: 18px;
    transition: background 0.2s, box-shadow 0.2s;
    display: block;
}

.tarif-btn:hover,
.tarif-btn:focus {  
    background: linear-gradient(90deg, #1a4fa3 0%, #7c3aed 100%);
    box-shadow: 0 0 32px 0 #1a4fa3, 0 0 32px 0 #7c3aed;
    color: #fff;
}

@media (max-width: 100%) {
    .tarif-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .tarif-card,
    .tarif-card:nth-child(1),
    .tarif-card:nth-child(2),
    .tarif-card:nth-child(3) {
        position: static;
        width: 98vw;
        max-width: 500px;
        min-width: 0;
        margin-bottom: 24px;
        opacity: 1;
        filter: none;
        z-index: 1;
        transform: none;
    }
    .tarif-card:hover,
    .tarif-card:focus-within {
        transform: scale(1.03);
    }
}
@media (max-width: 900px) {

    .tarif-card {
        max-width: 80vw;
    }

    .tarif-name{
        font-size: 30px;
    }
    .tarif-price{
        font-size: 30px;
    }
    .tarif-cards{
        height: 100%;
    }
    .tarif-card.popular{
        justify-content: end;
    }
}



/* ...existing code... */
.contact-section {
    background: #ffffff;
    border-radius: 20px;
    max-width: 1200px;
    margin: 50px auto 40px auto;
    padding: 40px 30px 35px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.contact-title {
    color: #1a1a1a;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1.2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    color: #222222;
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1 1 280px;
    min-width: 220px;
}

.contact-info a {
    color: #7c3aed;
    text-decoration: none;
    position: relative;
    transition: color 0.3s, transform 0.2s;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #1a4fa3;
    transition: width 0.3s;
}

.contact-info a:hover {
    color: #1a4fa3;
    transform: translateX(2px);
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-map {
    flex: 1 1 360px;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.contact-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 12px;
    transition: transform 0.3s;
}

.contact-map iframe:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .contact-map iframe {
        height: 200px;
    }
    .contact-section {
        padding: 25px 15px 25px 15px;
    }
}

@media (max-width: 500px) {
    .contact-title {
        font-size: 1.8rem;
    }
    .contact-map iframe {
        height: 180px;
    }
}

/* ...existing code... */
.consult-btn {
    margin-top: 18px;
    background: linear-gradient(90deg, #1a4fa3 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 12px 28px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px #1a4fa3;
    transition: background 0.2s;
}
.consult-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #1a4fa3 100%);
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(24,24,40,0.82);
    align-items: center;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #232328;
    border-radius: 18px;
    padding: 36px 28px 28px 28px;
    box-shadow: 0 8px 32px rgba(26,79,163,0.18);
    max-width: 380px;
    width: 95vw;
    position: relative;
    color: #fff;
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 12px; right: 18px; 
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.consult-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}
.consult-form input,
.consult-form textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #181828;
    color: #fff;
    font-size: 1rem;
    outline: none;
    resize: none;
}
.consult-form input:focus,
.consult-form textarea:focus {
    border-color: #7c3aed;
}
.consult-submit {
    background: linear-gradient(90deg, #ff2a51 0%, #1a4fa3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 10px 0;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.consult-submit:hover {
    background: linear-gradient(90deg, #1a4fa3 0%, #ff2a51 100%);
}
.consult-success {
    color: #00ffae;
    margin-top: 18px;
    font-size: 1.1rem;
}
/* ...existing code... */

/* FAQ SECTION */
.faq-section {
    background: #fff;
    border-radius: 18px;
    max-width: 1200px;
    margin: 48px auto 36px auto;
    padding: 44px 24px 38px 24px;
    box-shadow: 0 2px 12px rgba(26,79,163,0.08);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.faq-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.faq-title-gradient {
    display: block;
    background: linear-gradient(90deg, #ff9800 0%, #e91e63 60%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6rem;
    font-weight: 700;
}

.faq-subtitle {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 32px;
}

.faq-list {
    background: #faf7fb;
    border-radius: 14px;
    margin-bottom: 32px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(122, 57, 163, 0.04);
    box-shadow: 0 8px 16px 0 #7c3aed, 0 2px 8px #36ddd7;
}

.faq-item {
    border-bottom: 1px solid #ececec;
    text-align: left;
    padding: 0 18px;
    
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    font-size: 1.13rem;
    font-weight: 600;
    padding: 18px 0;
    cursor: pointer;
    color: #232328;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
    
}

.faq-question:hover,
.faq-question:focus {
    color: #7c3aed;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #7c3aed;
    margin-left: 12px;
    transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    border-radius: 8px;
    padding-bottom: 18px;
    color: #444;
    font-size: 1.05rem;
    animation: fadeInFaq 0.3s;

}

.faq-item.open .faq-answer {
    display: block;
}

@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-8px);}
    to { opacity: 1; transform: translateY(0);}
}

.faq-contact {
    margin-top: 18px;
    background: #f4eefb;
    border-radius: 12px;
    padding: 18px 12px;
    font-size: 1.13rem;
    color: #232328;
}

.faq-contact-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.faq-contact-desc a {
    color: #7c3aed;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .faq-section {
        padding: 18px 4px 18px 4px;
    }
    .faq-title, .faq-title-gradient {
        font-size: 1.3rem;
    }
}
/* ...existing code... */
/* ...existing code... */

.site-footer {
    background: #181828;
    color: #fff;
    padding: 38px 0 18px 0;
    border-radius: 18px 18px 0 0;
    margin-top: 48px;
    box-shadow: 0 -2px 24px rgba(26,79,163,0.10);
    font-size: 1.08rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #7c3aed;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.3) brightness(0.95);
    transition: filter 0.2s, transform 0.2s;
}

.footer-social a:hover img,
.footer-social a:focus img {
    filter: none;
    transform: scale(1.13);
}

.footer-bottom {
    text-align: center;
    color: #b3b3b3;
    font-size: 0.98rem;
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid #232328;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        gap: 18px;
        padding: 0 8px;
    }
    .footer-links {
        gap: 14px;
        justify-content: center;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
}

.navbar-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.navbar-links a {
    color: #181828;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
    padding: 4px 10px;
    border-radius: 8px;
}

.navbar-links a:hover,
.navbar-links a:focus {
    background: #003366;
    color: #fff;
}

.navbar-contact {
    font-weight: 600;
    color: #003366;
    background: #fff;
    border-radius: 12px;
    padding: 7px 18px;
    border: 1px solid #e0e0e0;
    font-size: 1.05rem;
    letter-spacing: 1px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}






@media (max-width: 500px) {

    .tarif-cards {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .tarif-card {
        position: relative;
        width: 80vw;
        max-width: 80vw;
        min-width: 0;
        margin-bottom: 18px;
        opacity: 1;
        filter: none;
        z-index: 1;
        transform: none;
    }
    .faq-section {
        padding: 12px 2px;
        max-width: 100vw;
    }
    .footer-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 4px;
    }
    .footer-links {
        gap: 8px;
        flex-wrap: wrap;
    }
    .footer-social {
        gap: 10px;
    }
    
    .why-section{
        max-width: 90%;
        padding: 5%;
    }
    .why-card{
        margin-top: 0;
        /* max-width: 120px; */
        height: 60px;
        min-height: auto;
        position: relative;
    }

    .why-text {
        align-items: center;
        font-size: 14px;
        height: 100%;
    }
    .why-icon {
        width: 20px;
        height: 20px;
    }
    .kg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: auto;
    }

    .kg-grid .why-card {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        height: 120px;
        min-height: 40px;
        max-width: auto;
        position: relative;
        padding-left: 0;
        padding-right: 0;

    }
    .kg-grid .why-card.visible {
        width: 100%;
    }

    .kg-grid .why-card .why-icon {
        width: 20px;
        height: 20px;
    }

    .kg-grid .why-card .why-icon img {
        width: 50px;
        height: 50px;
    }
    .kg-grid .why-card.visible .why-text {
        width: 120px;
        font-size: 12px;
        justify-content: space-between ;
    }


    .why-grid {
        gap: 10px;
    }





    .contact-content{
        flex-direction: column;
        gap: 0px;
        justify-content: flex-start;
    }
    .contact-map{
        width: 100%;
        min-width: 0;
        max-height: 180px;  
        position: relative;
    }
    .contact-info {
        width: 100%;
        min-width: 0;
        margin-bottom: 0px;
        margin-left: 5px;
    }

    .about-videos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
    .about-card {
        justify-content: space-between;
        width: 250px;
    }
    .about-video{
        width: 150px;
        height: 250px;
    }
    
}
    
h2 {
        color: #003366;
        font-size: medium;
    }




/* ...existing code... */
/* Contact social button list */
.contact-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #fff 0%, #f4f6fb 100%);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 4px 18px rgba(26,79,163,0.06);
    min-width: 220px;
    max-width: 360px;
}

.social-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(0.1) contrast(0.95);
}

.social-meta {
    display: flex;
    gap: 6px;
    flex: 1 1 auto;
}

.social-link {
    color: #1a4fa3;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.social-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* copy button styled like pill */
.copy-btn {
    background: #7c3aed;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.12s ease, box-shadow 0.12s;
    box-shadow: 0 4px 14px rgba(124,58,237,0.18);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.22);
}

/* small confirmation text that appears after copy */
.copy-confirm {
    font-size: 0.82rem;
    color: #00b894;
    font-weight: 700;
    margin-left: 6px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .contact-social {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .social-item {
        justify-content: space-between;
        padding: 10px;
    }
    .social-meta {
        min-width: 0;
    }
}


/* Partners horizontal marquee (right -> left) */
.partners-section {
    background: #fff;
    padding: 28px 16px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 6px 30px rgba(15,23,42,0.06);
}

.partners-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 8px 0 18px 14px;
    color: #1b1464;
    letter-spacing: 1px;
    border-bottom: 3px solid #1b1464;
    display: inline-block;
    padding-bottom: 8px;
}

/* track container */
.partners-track {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 12px 0;
    background: #f8f9fa; /* ixtiyoriy, fon uchun */
}

.partners-track-inner,
.partners-track-inner-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* continuous scroll animation */
.partners-track-inner {
    animation: scroll-left 20s linear infinite;
}

.partners-track-inner-left {
    animation: scroll-right 20s linear infinite;
}

/* keyframes for left scroll */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* keyframes for right scroll (reverse) */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* optional: make logos same height */
.partner-logo img {
    height: 80px; /* barcha logolar bir xil balandlikda */
    width: auto;
    display: block;
}

/* each logo box */
.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: transparent;
    min-width: 100px;
    max-width: 180px;
}

/* image fit */
.partner-logo img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: saturate(1) contrast(1);
    transition: transform 0.25s ease, filter 0.25s;
}

/* hover: pause animation and highlight logo */
.partners-track-inner:hover { animation-play-state: paused; }
.partner-logo:hover img { transform: scale(1.08); filter: saturate(1.15) contrast(1.06); }

/* keyframes: move full width leftwards */
/* because we duplicated the items, moving -50% creates continuous loop */
@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
    .partners-track-inner { animation: none;}
}

/* responsive adjustments */
@media (max-width: 1100px) {
    .partner-logo { min-width: 140px; max-width: 160px; }
    .partner-logo img { max-width: 140px; max-height: 60px; }
    /* .partners-track-inner { gap: 28px; --scroll-duration: 24s; } */
}

@media (max-width: 700px) {
    .partners-title { font-size: 1.1rem; }
    .partner-logo { min-width: 80px; max-width: 130px; padding: 3px; }
    .partner-logo img { max-width: 110px; max-height: 48px; }
    /* .partners-track-inner { gap: 18px; --scroll-duration: 5s; } */
}

