
  /* Global Styles */
:root {
  --primary-color: #00a0e3;
  --secondary-color: #0056b3;
  --accent-color: #82c341;
  --text-color: #333333;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
body, html { font-size: 16px; color: var(--text-color); line-height: 1.6; }
a { text-decoration: none; color: var(--primary-color); transition: all 0.3s ease; }
a:hover { color: var(--secondary-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 30px; background-color: var(--accent-color); color: var(--white); border-radius: 30px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; transition: all 0.3s ease; position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  margin: auto;
  white-space: nowrap;}
.btn:hover { background-color: var(--white); color: var(--accent-color); /*transform: translateY(-3px);transform: translateX(0);*/ box-shadow: 0 5px 15px rgba(50, 224, 255, 0.3); }
.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 60px; color: var(--primary-color); position: relative; }
.section-title:after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--accent-color); }
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); position: fixed; width: 100%; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding:10px 0 15px 0; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }
.logo span { color: var(--accent-color); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; line-height: 1.2}
.nav-links a { color: var(--text-color); font-weight: 600; position: relative; }
.nav-links a:before { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--accent-color); transition: width 0.3s ease; }
.nav-links a:hover:before { width: 100%; }
/* Hero Section */
.hero {
  background: url('images/slide2.jpg') center no-repeat;
  background-size: cover;
  background-position: center; height: 100vh; display: flex; align-items: center; text-align: center; color: var(--white); }
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; line-height: 1.5; margin-bottom: 40px; opacity: 0.9; }
.try-now-header { font-size: 1.5rem; margin-bottom: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.messenger-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.messenger-btn { display: flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 30px; color: var(--white); font-weight: 600; transition: all 0.3s ease; min-width: 160px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
.messenger-btn svg { margin-right: 10px; height: 24px; width: 24px; }
.messenger-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); }
.telegram { background-color: #0088cc; }
.whatsapp { background-color: #25D366; }
.messenger { background-color: #0084FF; }
.viber { background-color: #7360F2; }
/* Services Section */
.services { background-color: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { position: relative; background-color: var(--white); border-radius: 10px; border-top: 4px solid var(--primary-color); padding: 40px 30px 60px 30px; text-align: center; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(3, 19, 252, 0.1); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(3, 19, 252, 0.2); }
.service-icon { margin-bottom: 25px; }
.service-icon img { width: 80px; height: 80px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--primary-color); }
.service-card p { color: #666; margin-bottom: 25px; }
/* About Section */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 25px; }
.about-text p { margin-bottom: 20px; color: #666; }
.about-features { margin-top: 30px; }
.feature-item { display: flex; align-items: center; margin-bottom: 15px; }
.feature-item img,
.feature-item em{ width: 16px; margin-right: 15px; color: var(--accent-color) }
  .feature-item p{ margin: 0}
  .about-image{ text-align: center}
  .about-image img { width: 100%; max-width: 385px; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
/* How It Works Section */
.how-it-works { background-color: var(--primary-color); color: var(--white); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-title:after { background-color: var(--accent-color); }
.steps { display: flex; justify-content: space-between; max-width: 1000px; margin: 0 auto; }
.step { flex: 1; position: relative; padding: 0 20px; text-align: center; }
.step:after { content: ''; position: absolute; top: 50px; right: 0; width: 100%; height: 2px; background-color: var(--accent-color); z-index: 0; }
.step img { position: relative; z-index: 2; width: 100px; height: 100px; margin: 0 auto 15px; }

.step-number { width: 80px; height: 80px; background-color: var(--accent-color); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 20px; position: relative; z-index: 1; }
.step h3 { margin-bottom: 15px; color: var(--accent-color); }
/* Contact Section */
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 30px; }
.contact-info p { margin-bottom: 30px; color: #666; }
.contact-detail { display: flex; align-items: center; margin-bottom: 20px; }
.contact-detail img { width: 30px; margin-right: 20px; }
  .contact-detail em {    vertical-align: middle;
    margin-right: 10px;
    font-size: 1.2rem;}
.contact-form { background-color: var(--white); border-radius: 10px; padding: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: all 0.3s ease; }
.form-control:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(3, 19, 252, 0.1); }
textarea.form-control { height: 150px; resize: vertical; }
/* Footer */
footer { background-color: #050842; color: #fff; padding: 50px 0 20px; }
.footer-widget h3 { font-size: 1.2rem; margin-bottom: 25px; color: var(--white); position: relative; }
.footer-widget h3:after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 2px; background-color: var(--accent-color); }
.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
.social-links img { width: 18px; height: 18px; opacity: 0.8; }
.copyright { text-align: center;/* padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);*/ font-size: 0.9rem; opacity: 0.7; }
/* Responsive */
@media (max-width: 992px) { .about-content, .contact-content { grid-template-columns: 1fr; } .steps { flex-direction: column; } .step:not(:last-child):after { display: none; } .step:after{ display: none}
  .step{
    margin-top: 40px;
  }
  .step:first-child{ margin-top: 0}
}
@media (max-width: 768px) {
  html, body{ font-size: 14px}
  .navbar {
  flex-direction: column;

}

  .hero h1 { font-size: 2.5rem; } .nav-links { margin-top: 10px; flex-wrap: wrap; } .nav-links li { margin: 0 10px; } .section { padding: 70px 0; }
}
  footer {
    background-color: var(--primary-color) /*#2a5bc0*/;
    color: #fff;
    padding: 20px 0 20px 0;
  }

  .menu_lang{

  }

  .menu_lang ul,
  .menu_lang li {
    margin: 0;
    padding: 0;
    list-style: none;

  }

  .menu_lang a {
    text-decoration: none; margin:0;padding:0
  }



  /*.menu_lang > ul > li {
  float: left;
   position: relative;
  }
    */

  .menu_lang  ul  li  ul {
    position:absolute;
    opacity: 0;
    visibility: hidden;
    display: none;
    background-color: #f0f0f0;
    text-align: left;
    height: auto;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    padding:5px;
    margin-left:-5px;
    z-index:200000;
  }
  .head_kz .menu_lang  ul  li  ul{
    background-color: #c0bebe;
    padding:5px 7px;
  }
  .menu_lang:hover  ul   {
    display: block;
    border: none;
    visibility: visible;
    opacity: 1.0;
  }

  .menu_lang  ul  li li{ height:25px; margin:0;padding:0}
  .menu_lang  ul  li  ul  li  a {
    line-height:5px;
    font-size: 12px;
    color: #000;
    display: block;
    text-shadow: none;
    background: #f0f0f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    padding:0;
    margin:0;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .menu_lang{ position: absolute; top: 25px; right: 20px}
  }