body{
    margin:0;
    font-family:Arial, sans-serif;
    background:linear-gradient(#0f172a,#131e5a);
    padding-top:50px;
    margin:0;
    }
    .navbar {
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
      padding: 10px 20px; /* 50px-i azaldın */
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row;
      background:  rgba(198, 226, 255, 0.75); /* 🔥 tünd */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      flex-wrap: nowrap;
      z-index:9999;
      position: fixed;
      top: 0;
      left: 0;
      gap: 10px;
      height: 65px;
    }
    .nav-right {
      display: flex;
      align-items: center;
      flex-shrink: 0; /* Düymənin kiçilməsinin qarşısını alır */
      gap: 10px;
    }
    nav a{
      text-decoration: none;
      color: #000207d9;
      font-weight: 500;
      margin: 0 15px;
      position: relative;
      transition: 0.3s;
    }
    .nav-right a, .nav-right button {
      margin-left: 0; /* margin əvəzinə gap istifadə edirik */
      padding: 8px 15px;
      border-radius: 6px;
      background: #0ea5e9;
      color: white;
      border: none;
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap; /* Mətnin qırılmasının qarşısını alır */
      transition: 0.3s;
    }    
    nav a::after{
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background: #4fc3f7;
      transition: 0.3s;
    }
    nav a:hover{
      color: #4fc3f7;
    }
    nav a:hover::after{
      width: 100%;
    }
    nav a.active{
      color: #4fc3f7;
    }
    .logo{
      color: #fff;
      font-size: 20px;
      font-weight: bold;
    }
    .navbar ul{
      list-style: none;
      display: flex;
      gap: 30px;
      margin: 0;
      padding: 0;
    }
    .nav-link{
      color: #ccc;
      text-decoration: none;
      font-size: 18px;
      transition: color 0.3s;
    }
    .nav-link:hover{
      color: #fff;
    }
.nav-right a, .nav-right button {
  margin-left: 15px;
  padding: 8px 15px;
  border-radius: 6px;
  background: #0ea5e9;
  color: white;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.nav-right a:hover, .nav-right button:hover {
  background: #0284c7;
}
    
    .hero-slider{
      position: relative;
      height: 100vh;
      z-index: 1;
    }
    .hero h1{font-size:40px}
    .hero p{margin-top:15px;color:#cbd5e1}
    .hero-slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
      z-index: 1; /* Navbar üstündə olsun */
  }
  
  .hero-content {
      position: absolute; /* Navbarın üstündə görünməsi üçün absolute */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      max-width: 700px;
      z-index: 2; /* Navbarın üstündə */
  }
    .slide{
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s;
    }
    .slide.active{
      opacity: 1;
      z-index: 1;
    }
    .slide::before{
      content:"";
      position:absolute;
      width:100%;
      height:100%;
      background: rgba(0,0,0,0.4);
    }
    .overlay{
      position: absolute;
      top: 50%;
      left: 50px;
      transform: translateY(-50%);
      color: white;
      z-index: 2;
    }
    .overlay h1{
      font-size: 50px;
    }
    .overlay p{
      font-size: 18px;
      margin-top: 10px;
    }
    .gallery{
    padding:80px 10%;
    text-align:center;
    }
    
    .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
    }
    
    .g-card{
    background: #b6e0fe;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
    position: relative;
    z-index: 2;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    display: block;
    }
    
    .g-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    }
    
    .g-card:hover{
    transform:translateY(-10px);
    }
    
    .fade-up{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s forwards;
    }
    
    .fade-up:nth-child(2){
    animation-delay:0.3s;
    }
    
    .fade-up:nth-child(3){
    animation-delay:0.6s;
    }
    
    @keyframes fadeUp{
    to{
    opacity:1;
    transform:translateY(0);
    }
    }
    .whatsapp{
        position:fixed;
        bottom:20px;
        right:20px;
        background:#25D366;
        color:white;
        padding:15px 22px;
        border-radius:50px;
        font-weight:bold;
        text-decoration:none;
        box-shadow:0 8px 20px rgba(0,0,0,0.3);
        transition:0.3s;
        z-index: 9999;
        }
        
        .whatsapp:hover{
        transform:scale(1.1);
        }
        .hero-content{
            display:flex;
            flex-direction:column;
            align-items: center;
            text-align: center;
            gap: 20px;
            max-width: 700px;
        }
        .hero-buttons{
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .hero p{
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 18px;
        }
.about-section{
    padding: 100px 10%;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: white;
    text-align: center;
}
.about-title{
    font-size: 40px;
    margin-bottom: 20px;
}
.about-intro{
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5f5;
}
.timeline{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: auto;
}
.timeline-item{
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
.timeline-item:hover{
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}
.timeline-year{
    font-size: 26px;
    font-weight: bold;
    color: #38bdf8;
    min-width: 80px;
}
.timeline-content h3{
    margin: 0;
    margin-bottom: 5px;
}
.timeline-content p{
    margin: 0;
    color: #cbd5f5;
}
.login-box{
    width: 320px;
    margin: 150px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.login-box input{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.login-box button{
    width: 100%;
    padding: 10px;
    background: #0ea5e9;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
#logoutBtn {
    background: #228088;
    border-radius: 6px;
    padding: 8px 15px;
  }
  @media (max-width: 768px) {
    .logo{
      width: 35px;
      height: 35px;
    }

    .timeline-item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
  
    .btn, .btn-outline {
      width: 100%;
      text-align: center;
    }
  
    .about-title {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .login-box {
      width: 90%;
    }
  
    .gallery {
      padding: 50px 5%;
    }
  }

  .services-section {
    padding: 80px 10%;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: white;
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Hər xidmət kartı */
  .service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
  }
  
  /* İkonlar */
  .service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #38bdf8;
  }
  
  /* Başlıqlar */
  .service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  /* Mətn */
  .service-card p {
    color: #cbd5f5;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Mobil üçün uyğunluq */
  @media (max-width: 768px) {
    .services-section {
      padding: 50px 5%;
    }
  
    .services-section h2 {
      font-size: 28px;
    }
  
    .service-card h3 {
      font-size: 18px;
    }
  
    .service-card p {
      font-size: 15px;
    }
  }
  *{
    box-sizing: border-box;
  }
a{
  color:white;
}
.stats-section{
  padding: 80px 60px;
  background: #f5f3ee;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 80px 40px;
}
.stats-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
  radial-gradient(circle at 30% 50%,rgba(100,149,200,0.08)0%,transparent 60%),
  radial-gradient(circle at 70% 50%, rgba(180,160,100,0.06)0%,transparent 60%);
  pointer-events: none;
}
.stats-grid{
  padding: 50px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(30,50,80,0.12);
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
  transition:
    transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
    background 0.35s ease,
    box-shadow 0.45s ease;
}
.stat-card{
  flex: 1;
  padding: 44px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30,50,80,0.1);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.stat-card:hover{
  background: rgba(255,255,255,0.75);
  transform: translateY(-3px);
  z-index: 1;
}
.stat-icon{
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #1e3250;
  opacity: 0.85;
}
.stat-number{
  font-family: 'Playfair Display',serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1e3250;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat-label{
  font-size: 0.82rem;
  font-weight: 500;
  color: #5a6a80;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.stat-number{
  animation: fadeUp 0.7s ease both;
}
.stat-card:nth-child(1).stat-number{animation-delay:0.1s;}
.stat-card:nth-child(2).stat-number{animation-delay:0.2s;}
.stat-card:nth-child(3).stat-number{animation-delay:0.3s;}
.stat-card:nth-child(4).stat-number{animation-delay:0.4s;}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}
@media (max-width:600px){
  .stats-section{padding:50px 20px;}
  .stats-grid{grid-template-columns: 1fr;}
  .stats-number{font-size: 2.4rem;}
}
/* =======================
   📱 MOBILE FIX PACK
======================= */

@media (max-width: 768px) {

  /* BODY overflow fix */
  body {
    overflow-x: hidden;
    padding-top: 70px;
  }

  /* NAVBAR FIX */
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 5px 10px;
    flex-wrap: wrap;
    gap:8px;
  }

  .navbar ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    flex-direction: row;
    gap: 5px;
    width: auto;
    margin-top: 10px;
    padding-bottom: 4px;
    flex:1;
  }
  .navbar ul::-webkit-scrollbar{
    height: 3px;
  }
  .navbar ul::-webkit-scrollbar-thumb{
    background: #4fc3f7;
    border-radius: 2px;
  }

  nav a {
    margin: 0 5px;
    display: inline-block;
    font-size: 13px;
  }

  .nav-right {
    flex-shrink: 0;
    justify-content: flex-end;
    margin-top: 0;
  }

  /* HERO FIX */
  .hero-content {
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .overlay p {
    font-size: 14px;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* GALLERY FIX */
  .gallery {
    padding: 40px 5%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* SERVICES FIX */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT TIMELINE */
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  /* STATS FIX */
  .stats-grid {
    flex-direction: column;
    gap: 15px;
  }

  .stat-card {
    width: 100%;
  }

  /* PRODUCTS FIX (əgər var) */
  #productList {
    grid-template-columns: 1fr;
  }

  /* LOGIN BOX */
  .login-box {
    width: 90%;
    margin: 100px auto;
  }
}
html,body{
  max-width: 100%;
  overflow-x: hidden;
}
.navbar{
  flex-wrap: nowrap;
}
.logo{
 width: 90px;
 height: 90px;
 flex-shrink: 0;
}
.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  align-items: center;
  gap: 50px;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  color: #666;
}

.toggle-password:hover {
  color: #111;
}
.cf-social-btn {
  width: 30px;
  height: 40px;
  color: white;
}