*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI', sans-serif;
  overflow-x:hidden;
  color:white;
}

html, body {
  overflow-x: hidden;
}

 

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}


.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}


@media(max-width:768px){
  .bg-video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}


.header{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  max-width:1400px;
  padding:15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:20px;
  backdrop-filter:blur(15px);
  background:rgba(255,255,255,0.12);
  transition:0.4s;
  z-index:1000;
}

#langToggle{
    background:#2e6f95;
    color:white;
    border:none;
    padding:8px 16px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}

#langToggle:hover{
    background:#1f4f6a;
}

.header.scrolled{
  backdrop-filter:blur(25px);
  background:rgba(255,255,255,0.2);
}


.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-icon{
  font-size:28px;
  font-weight:bold;
}

.logo-text h3{
  font-size:18px;
}

.logo-text p{
  font-size:12px;
  opacity:0.7;
}



.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.hero-content{
  max-width:650px;
  animation:fadeUp 1.2s ease forwards;
}

.hero h1{
  font-size:64px;
  font-weight:700;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h2{
  font-size:22px;
  font-weight:500;
  margin-bottom:20px;
  color:#1784f1;
}

.hero p{
  font-size:16px;
  line-height:1.6;
  margin-bottom:30px;
  opacity:0.9;
}

.hero-btn{
  padding:14px 30px;
  border:none;
  border-radius:12px;
  background:#2b7be4;
  color:white;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.hero-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.4);
}


@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}



@media(max-width:1024px){
  .hero h1{
    font-size:48px;
  }
}

@media(max-width:768px){

  .hero{
    text-align:center;
    justify-content:center;
  }

  .hero h1{
    font-size:36px;
  }

  .hero h2{
    font-size:18px;
  }

  .hero p{
    font-size:14px;
  }
}



.nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav a{
  text-decoration:none;
  color:white;
  position:relative;
  font-size:15px;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#4da6ff;
  transition:0.3s;
}

.nav a:hover::after{
  width:100%;
}

.phone{
  font-size:14px;
}


.btn{
  padding:10px 20px;
  border:none;
  border-radius:10px;
  background:#2b7be4;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}


.lang{
  position:relative;
  cursor:pointer;
}

.dropdown{
  position:absolute;
  top:30px;
  left:0;
  background:white;
  color:black;
  padding:10px 15px;
  border-radius:10px;
  display:none;
  animation:fade 0.3s ease forwards;
}

@keyframes fade{
  from{opacity:0; transform:translateY(-10px);}
  to{opacity:1; transform:translateY(0);}
}


.burger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.burger span{
  width:25px;
  height:3px;
  background:white;
  transition:0.4s;
}

.burger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.burger.active span:nth-child(2){
  opacity:0;
}
.burger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}


@media(max-width:1024px){

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:280px;
    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(20px);
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:40px;
    transition:0.5s;
  }

  .nav.active{
    right:0;
  }

  .burger{
    display:flex;
  }

  .phone, .btn{
    display:none;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background:#a3d7e0;;
}

.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf4ff, #ffffff);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}


.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}


.about-left{
    width: 420px;                 
    max-width: 100%;              
    border-radius: 25px;          
    overflow: hidden;             
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    margin-left: -40px;
}


.about-left:hover{
    transform: scale(1.03);
}


.about-left img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.about-right{
    flex: 1;
    min-width: 300px;
}


@media (max-width: 768px){
    .about-container{
        flex-direction: column;
        text-align: center;
    }

    .about-left{
        width: 100%;
        margin-left: 0;
    }


    .about-left:hover{
        transform: none;
    }

    .cardqwe:hover{
        transform: none;
    }
}



.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #222;
}

.desc {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.cardssa {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cardqwe{
  background: rgb(238, 192, 113);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cardqwe:hover{
    transform: scale(1.05);
}

.icon {
  font-size: 30px;
}

.cardqwe h4 {
  margin-bottom: 8px;
}

.cardqwe p {
  font-size: 14px;
  color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stats h3 {
  font-size: 36px;
  color: #fc6900;
}

.stats p {
  font-size: 14px;
  color: #666;
}



@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .img-small {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .experience-badge {
    position: static;
    margin-top: 20px;
  }

  .cardssa {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

:root{
  --background-dark: #043357;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --text-light: rgba(255,255,255,0.75);
  --text-lighter: rgba(255,255,255,0.9);
  --width-container: 1200px;
}

*{
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

body{
  height: 100%;
}

.hero-section{
  align-items: center;
  background: var(--background-dark);
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.card-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px){
  .card-grid{
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media(min-width: 960px){
  .card-grid{
    grid-template-columns: repeat(4, 1fr); 
  }
}

.card{
  list-style: none;
  position: relative;
}

.card:before{
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
}

.card__background{
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
   transform: scale(1) translateZ(0);
  transition: 
    filter 200ms linear,
    transform 200ms linear;
}

.card:hover .card__background,
.card:active .card__background{
  transform: scale(1.05) translateZ(0);
}

.card-grid:hover > .card:not(:hover) .card__background{
  filter: brightness(0.5) saturate(0.5) contrast(1.2) blur(20px);
}

.card__content{
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
}

.card__category{
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--spacing-m);
  text-transform: uppercase;
  
}

.card__heading{
  color: var(--text-lighter);
  font-size: 2rem;
  text-shadow: 2px 2px 20px rgba(9, 56, 131, 0.235);
  line-height: 1.2;
  word-spacing: 100vw;
}


/* bu css nomer qoldiradiganniki  */
.contact-section{
background: linear-gradient(0.25turn, #e7e2f3, #a7b2e6, #688cca, #496d9c, #2d3c67);
background-size:cover;
background-position:center;
padding:100px 20px;
}



.contact-overlay{
padding:60px 20px;
text-align:center;
}

.contact-overlay h1{
color:rgba(11, 28, 137, 0.792);
font-size:36px;
margin-bottom:40px;
}
.contact-overlay h6{
color:rgba(11, 28, 137, 0.792);
font-size:25px;
margin-bottom:40px;
}



.contact-form{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}



.contact-group{
display:flex;
flex-direction:column;
}

.contact-group input{
width:260px;
padding:15px 20px;
border-radius:25px;
border:none;
outline:none;
font-size:16px;
}



.error{
color:red;
font-size:12px;
margin-top:5px;
height:14px;
}



.contact-btn{
padding:20px 60px;
border:none;
border-radius:50px;
background:#3da3f5;
color:white;
font-size:25px;
cursor:pointer;
transition:0.3s;
}

.contact-btn:hover{
background:#1c6eb5;
}

/* bu css nomer qoldiradiganniki  */


.kartochkalar{
  padding:25px;
  background:#dcdcde; 
}

.kartochkalar-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(250px,1fr));
  row-gap: 40px;    
column-gap: 30px;  
}

.kartochka{
  position:relative;
  background: rgb(235, 185, 100);
  padding:30px;
  border-radius:20px;
  overflow:hidden;
}

.icon{
  width:50px;
  margin-bottom:15px;
}

.kartochka h3{
  font-size:22px;
  margin-bottom:10px;
}

.kartochka p{
  color:#171a25;
  line-height:1.5;
}


.bg-icon{
  position:absolute;
  top:10px;
  right:10px;
  font-size:90px;
  opacity:0.07;
}


.kartochka:hover{
  transform:translateY(-6px);
  transition:0.3s;
}


@media (max-width:992px){
  .kartochkalar-container{
    grid-template-columns:repeat(2,1fr);
  }
}


@media (max-width:600px){
  .kartochkalar-container{
    grid-template-columns:1fr;
  }
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:sans-serif;
}



.faq{
padding:80px 10%;
background:radial-gradient(circle, #e7e2f3, #a7b2e6, #688cca, #496d9c, #2d3c67);
}

.faq-container{
display:flex;
gap:60px;
align-items:flex-start;
flex-wrap:wrap;
}

.faq-left{
flex:1;
min-width:250px;
}

.faq-left h2{
font-size:40px;
font-weight:300;
line-height:1.3;
}

.faq-left span{
font-weight:700;
}

.faq-right{
flex:2;
display:flex;
flex-direction:column;
gap:20px;
}

.faq-item{
background:rgb(6, 69, 227);
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgb(122, 188, 221);
transition:0.3s;
}

.faq-item:hover{
transform:translateY(-3px);
box-shadow:0 10px 30px rgb(57, 127, 193);
}

.faq-question{
  color: #7590e8;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 25px;
cursor:pointer;
font-size:18px;
font-weight:500;
}

.faq-answer{
max-height:0;
overflow:hidden;
padding:0 25px;
transition:all 0.4s ease;
color:#1f0623;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:20px 25px;
}

.arrow{
width:10px;
height:10px;
border-right:2px solid #6a006a;
border-bottom:2px solid #6a006a;
transform:rotate(-45deg);
transition:0.3s;
}

.faq-item.active .arrow{
transform:rotate(45deg);
}



@media (max-width:900px){

.faq-container{
flex-direction:column;
}

.faq-left h2{
font-size:30px;
}

}
.reviews{
    padding:80px 20px;
    background:linear-gradient(0.25turn, #d3c5e7, #a6b2d9, #8da1c8, #5d80bb, #3c5c86);
    text-align:center;
}

.reviews-title{
    font-size:32px;
    margin-bottom:40px;
}

.reviews-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.reviews-slider{
    display:flex;
    gap:20px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.review-card{
    min-width:300px;
    max-width:300px;
    background:#0594e7;
    border-radius:10px;
    padding:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
}

.avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    margin-bottom:10px;
}

.stars{
    color:gold;
    margin:5px 0 10px;
}

.review-card p{
    font-size:14px;
    line-height:1.5;
    word-wrap:break-word;
}



.reviews-btn{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    background:#000;
    color:#fff;
    border:none;
    width:40px;
    height:40px;
    cursor:pointer;
    font-size:20px;
    border-radius:50%;
}

.prev{
    left:-20px;
}

.next{
    right:-20px;
}



@media(max-width:768px){

.review-card{
    min-width:250px;
}

.reviews-btn{
    display:none;
}

}



.map-section {
   background-image: url('img/360_F_825457291_2Py8rJO2VCJi7thbnQXz27KdKIcZJzTJ.jpg'); 
    background-size: cover;     
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.map-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-header p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    text-align: center;
}

.map-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.map-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


@media screen and (max-width: 1024px) {
    .map-header h2 {
        font-size: 2.2rem;
    }
    .map-header p {
        font-size: 1.1rem;
    }
    .map-wrapper {
        height: 500px;
    }
}


@media screen and (max-width: 768px) {
    .map-header h2 {
        font-size: 1.9rem;
    }
    .map-header p {
        font-size: 1rem;
    }
    .map-wrapper {
        height: 400px;
    }
}


@media screen and (max-width: 480px) {
    .map-header h2 {
        font-size: 1.6rem;
    }
    .map-header p {
        font-size: 0.95rem;
    }
    .map-wrapper {
        height: 300px;
    }
}

.footer{
background:#6b99df;
padding:70px 10%;
font-family:sans-serif;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:50px;
}



.footer-logo h2{
margin-top:15px;
font-size:24px;
}

.footer-logo p{
color:#777;
}

.logo-circle{
width:80px;
height:80px;
border-radius:50%;
border:2px solid #ccc;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
color:#888;
}



.socials{
margin-top:20px;
display:flex;
gap:15px;
}

.socials a{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:white;
color:#0077ff;
font-size:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.socials a:hover{
transform:translateY(-5px);
background:#0077ff;
color:white;
}


.footer-center h3{
margin-bottom:10px;
}

.footer-center p{
color:#555;
line-height:1.7;
}


 .footer-worktime{
    display:flex;
    flex-direction:column;
    color:white;
}

.footer-worktime h3{
    margin-bottom:15px;
    font-size:20px;
}

.work-item{
    margin-bottom:8px;
    font-size:16px;
}


@media (max-width:768px){

.footer-worktime{
    align-items:center;
    text-align:center;
    margin-top:30px;
}

}




@media(max-width:900px){

.footer-container{
flex-direction:column;
}

.footer-right{
gap:40px;
}

}


@media (hover:none){
  .card:active .card__background{
    transform: scale(1.05);
  }

  .kartochka:active{
    transform: translateY(-6px);
  }

  .cardqwe:active{
    transform: scale(1.05);
  }

  .about-left:active{
    transform: scale(1.03);
  }

  .map-wrapper:active{
    transform: scale(1.02);
  }
}

@media (hover: none) {

  .about-left:hover{
    transform: none;
  }

  .cardqwe:hover{
    transform: none;
  }

}