
      .social-box{
  position:fixed;
  left:360px;
  top:400px;
  z-index:9999;
  width:60px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.30);
}

.social-btn{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.social-btn.whatsapp{
  background:#00e84f;
}

.social-btn.telegram{
  background:#08a8f5;
}

.social-btn i{
  font-size:44px;
  color:#fff;
}
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #005375;
      color: #ffffff;
      line-height: 1.7;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    
    .hero {
      padding: 70px 0 50px;
      background: linear-gradient(180deg, #005375 0%, #005375 100%);
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 40px;
    }

    .hero h1 {
      font-size: 46px;
      line-height: 1.2;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero h1 span {
      color: #00d084;
    }

    .hero p {
      font-size: 17px;
      color: #d1d5db;
      margin-bottom: 16px;
    }

    .hero-buttons {
      margin-top: 28px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 14px 26px;
      border-radius: 10px;
      font-weight: 700;
      transition: 0.3s;
    }

    .btn-primary {
      background: #00d084;
      color: #08111f;
    }

    .btn-primary:hover {
      background: #00b872;
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.16);
      color: #ffffff;
      background: rgba(255,255,255,0.05);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.12);
    }

    .hero-image img {
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 34px;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .section-title p {
      color: #cbd5e1;
      max-width: 820px;
      margin: auto;
    }

    .content-box {
      background: #132038;
      border-radius: 18px;
      padding: 30px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.20);
      border: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 26px;
    }

    .content-box h3 {
      color: #00d084;
      font-size: 24px;
      margin-bottom: 14px;
    }

    .content-box p {
      color: #dbeafe;
      margin-bottom: 14px;
      font-size: 16px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 20px;
    }

    .feature-card {
      background: #132038;
      padding: 25px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 10px 30px rgba(0,0,0,0.18);
      transition: 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-card h4 {
      color: #00d084;
      margin-bottom: 12px;
      font-size: 20px;
    }

    .feature-card p {
      color: #d1d5db;
      font-size: 15px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .step {
      background: #132038;
      border-radius: 16px;
      padding: 22px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .step-number {
      width: 52px;
      height: 52px;
      margin: 0 auto 15px;
      border-radius: 50%;
      background: #00d084;
      color: #07131f;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .step h5 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .step p {
      font-size: 14px;
      color: #cbd5e1;
    }

    .cta {
      background: linear-gradient(135deg, #00d084, #00a86b);
      color: #07131f;
      border-radius: 18px;
      padding: 50px 30px;
      text-align: center;
      margin-top: 20px;
    }

    .cta h2 {
      font-size: 34px;
      margin-bottom: 15px;
    }

    .cta p {
      max-width: 780px;
      margin: 0 auto 24px;
      font-size: 17px;
      color: #07131f;
      font-weight: 600;
    }

    .cta .btn-primary {
      background: #07131f;
      color: #ffffff;
    }

    .cta .btn-primary:hover {
      background: #0d1a28;
    }

    footer {
      background: #0b1220;
      padding: 28px 0;
      margin-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    footer p {
      text-align: center;
      color: #94a3b8;
      font-size: 14px;
    }

    @media (max-width: 992px) {
      .hero-wrap,
      .features,
      .steps {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        font-size: 38px;
      }
    }
  @media (max-width: 768px) {

      .hero-wrap,
      .features,
      .steps {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 50px 0 30px;
      }

      .hero h1 {
        font-size: 30px;
      }

      .section-title h2,
      .cta h2 {
        font-size: 28px;
      }

      .content-box,
      .feature-card,
      .step {
        padding: 20px;
      }
    }
      
      .whatsapp-section{
    display:flex;
    justify-content:center;
    padding:0px 20px;
}

.whatsapp-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:linear-gradient(90deg,#1fb6ff,#0ea5e9);
    padding:25px 35px;
    border-radius:60px;
    text-decoration:none;
    width:100%;
    max-width:750px;
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
    transition:0.3s;
}

.whatsapp-box:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 50px rgba(0,0,0,0.35);
}

.whatsapp-icon{
    width:70px;
    height:70px;
    background:#22c55e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 25px rgba(34,197,94,0.7);
}

.whatsapp-icon svg{
    width:35px;
}

.whatsapp-text h3{
    margin:0;
    font-size:26px;
    color:white;
    font-weight:700;
}

.whatsapp-text p{
    margin:3px 0 0;
    font-size:18px;
    color:#dbeafe;
}
      
  