    .slider-container {
      max-width: 900px;
      margin: 50px auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background: linear-gradient(135deg, #f7971e, #ffd200);
      position: relative;
    }

    .slide {
      display: none;
      align-items: center;
      padding: 30px;
      animation: fade 0.6s ease-in-out;
    }

    .slide.active {
      display: flex;
    }

    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .slide img {
      width: 400px;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      margin-left: 30px;
    }

    .slide-content {
      flex: 1;
    }

    .slide-content h3 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #333;
    }

    .slide-content p {
      font-size: 16px;
      margin-bottom: 15px;
      color: #555;
    }

    .slide-content a {
      display: inline-block;
      padding: 10px 20px;
      background: #0078D7;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-size: 15px;
    }

    .slide-content a:hover {
      background: #005fa3;
    }

    .dots {
      text-align: center;
      padding: 15px 0;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 6px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background: #0078D7;
    }

    @media (max-width: 600px) {
      .slide {
        flex-direction: column-reverse;
        text-align: center;
      }

      .slide img {
        margin: 0 0 20px 0;
        width: 100%;
        height: auto;
      }
    }













   .social-toggle {
      display: inline-block;
      color: #fff;
      padding: 10px 16px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.3s;
      position: fixed;
      top: 50px;
      left: 0;
      z-index: 1000;

      transform: translateY(-50%);


    }

    .social-toggle:hover {
      background: #005fa3;
    }

    .social-icons {
      margin-top: 20px;
      display: none;
      animation: fadeIn 0.4s ease-in-out;
position: fixed;
      top: 50%;
      left: 0;
     

    }

    .social-icons a {
      margin: 0 10px;
      text-decoration: none;
      font-size: 24px;
      color: #0078D7;
      transition: color 0.3s;


    }

    .social-icons a:hover {
      color: #005fa3;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }