@font-face {
  font-family: 'Yekan'; 
  src: url('fonts/Yekan.eot'); 
  src: url('fonts/Yekan.eot?#iefix') format('embedded-opentype'), 
       url('fonts/Yekan.woff2') format('woff2'), 
       url('fonts/Yekan.woff') format('woff'), 
       url('fonts/Yekan.ttf') format('truetype'); 
}

@font-face {
  font-family: 'Yekan-Regular'; 
  src: url('fonts/yekan-regular.eot'); 
  src: url('fonts/yekan-regular.eot?#iefix') format('embedded-opentype'),
       url('fonts/yekan-regular.woff2') format('woff2'),
       url('fonts/yekan-regular.woff') format('woff'),
       url('fonts/yekan-regular.ttf') format('truetype');
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Yekan', sans-serif;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  width: 100%;
}
  


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.navbar {
  position: fixed;
  background-color: black;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  box-shadow: 0 0 10px #111;
  direction: rtl;
  border-bottom: 1px solid white;
  top: 0;
  left: 0;
  right: 0;
  width: 97%;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  font-weight: bold;
  font-size: 26px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
   pointer-events: none;
}

.menu {
  display: flex;
  gap: 30px;
  background-color: #000000;
  padding: 10px 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.menu a i {
  font-size: 14px;
}

.menu a:hover {
  color: #FFD700;
}

.menu a.active {
  color: #FFD700;
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFD700;
  border-radius: 2px;
}


.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  margin-left: 50px;
  margin-bottom: -10px;
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  width: 240px;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  padding: 80px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2000;
  transition: left 0.4s ease;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
  border-radius: 0 20px 20px 0;
  
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
  background-color: #333;
}

.mobile-menu a.active {
  background-color: #FFD700;
  color: black;
}


.mobile-menu.show {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #FFD700;
}



@media (max-width: 775px) {
  .brand {
    font-size: 18px;
    margin-right: -50px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    margin-right: 30px;
     pointer-events: none;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: block;
    margin-top: -10px;
  }
}
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #FFD700;
}



.info{
  color: #ffc107;
  font-size: 20px;
  text-align: center;
  padding: 100px;
}
.info p{
  color: rgb(158, 158, 158);
}

.about {
      color: #FFD700;
      text-align: center;
      padding: 50px;
      font-size: 24px;
      font-weight: bold;
    }
    
    .about-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    
    .about img {
      width: 58px;
      height: 58px;
      object-fit: contain;
       pointer-events: none;
    }





.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.icon-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
   pointer-events: none;
}

.service-card h3 {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 10px;
}

.service-card p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 15px;
}

.service-card a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 11px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}





.mouse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: #ffe600;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.5s infinite;
}

@keyframes wheelMove {
  0% { top: 10px; opacity: 1; }
  50% { top: 20px; opacity: 0.5; }
  100% { top: 10px; opacity: 1; }
}

.arrow {
  margin-top: 10px;
  font-size: 24px;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}



.features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 60px 0;
  direction: rtl;
  margin-top: -70px;
  
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.icon-circle {
  background-color: #FFD700;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative; 
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.icon-circle img {
  position: absolute;       
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
  pointer-events: none;
}


.feature-box p {
  font-size: 16px;
  font-weight: bold;
}

.feature-box:hover .icon-circle {
  transform: scale(1.15); 
}


.khadamat{
  background-color: #ffc107;
  text-align: center;
  padding: 120px;
}

.khadamat h2{
text-align: center;
margin-top: -60px;
color: #000000;
font-size: 25px;
}

.khadamat p{
  text-align: center;
  color: #1a1a1a;

}

.contact-button {
  background-color: #ffcc00;
  color: #000;
  border: 2px solid #000;
  padding: 14px 36px 14px 28px; 
  border-radius: 999px;
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  direction: rtl;
}


.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.end{
  background-color: #000;
  padding: 100px;
}

.footer {
  background-color: #000;
  color: white;
  padding: 50px 20px;
  direction: rtl;
}



.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h2,
.footer-section h3 {
  color: #FFD700;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FFD700;
  margin-top: 5px;
}

.brand .logo-text {
  display: flex;
  align-items: center;
  gap: 15px;
   pointer-events: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  margin-top: -95px;
   pointer-events: none;
}


.footer-section ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.footer-section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li img {
  width: 24px;
  height: 24px;
   pointer-events: none;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #FFD700;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons a img {
  background-color: #333;
  border-radius: 50%;
  padding: 8px;
  width: 36px;
  height: 36px;
  transition: background 0.3s;
   pointer-events: none;
}

.social-icons a:hover img {
  background-color: #FFD700;
}

.footer-section h2{
  font-size: 20px;
}

.footer-section p{
  font-size: 13px;
  color: #777777;
}



.tekno-footer {
  background: linear-gradient(135deg, #ffd000, #ffae00);
  padding: 3rem 1rem;
  text-align: center;
  color: #1f1f1f;
  position: relative;
  direction: rtl;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.tekno-logo {
  font-size: 2.5rem;
  font-weight: 900;
  background:  rgb(48, 214, 255);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.tekno-logo span {
  color: #fff;
}

.tekno-tagline {
  font-size: 1.1rem;
  margin: 1rem 0;
  opacity: 0.8;
}

.tekno-button {
  padding: 0.75rem 2rem;
  background: #000;
  color: #ffd000;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.tekno-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.tekno-copy {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}





@media screen and (max-width: 768px) {
  .custom-footer {
    padding: 1.5rem 1rem; 
    font-size: 0.9rem; 
  }

  .footer-note {
    font-size: 0.85rem; 
  }

  .footer-button {
    padding: 0.5rem 1rem; 
    font-size: 0.9rem; 
  }

  .footer-copy {
    font-size: 0.8rem; 
  }
}

@media (max-width: 768px) {
  .servise {
    flex-direction: column;
    padding: 20px;
  }

  .servise img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 615px) {
   .logo-text img{
    margin-top: -132px;
   }
  }
@media screen and (max-width: 575px) {
   .logo-text img{
    margin-top: -132px;
   }
  }
  @media screen and (max-width: 513px) {
   .logo-text img{
    margin-top: -157px;
   }
  }
  @media screen and (max-width: 469px) {
   .logo-text img{
    margin-top: -65px;
   }
  }




.loader .gear {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border: 6px solid #FFD700;
  border-radius: 50%;
  border-top: 6px solid transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body.loading {
  overflow: hidden;
}


::-webkit-scrollbar {
  width: 10px;         
  height: 10px;        
}

::-webkit-scrollbar-track {
  background: #f0f0f0; 
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #FFD700; 
  border-radius: 10px;
  border: 2px solid #f0f0f0; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #FFD700; 
}


* {
  scrollbar-width: thin;            
  scrollbar-color: #FFD700 #000000; 
}







