  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      font-family: Arial, sans-serif;
    background-color: #000000 !important;
      width: 100%;

      /* justify-content: center;
        align-items: center;
        height: 100vh;
        padding: 15px; */
  }

  .je {
      display: flex;
      justify-content: center;
      margin-top: 110px;
      margin-bottom: 110px;
  }

  .container {
      text-align: center;
      width: 100%;
      max-width: 350px;
  }

  .logo img {
      width: 300px;
      max-width: 70%;
      margin-bottom: 20px;
  }

  .login-box {
      background: #fff;
      border-radius: 6px;
      padding: 20px;
      width: 100%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .login-box h2 {
      margin: 0 0 20px;
      font-size: 20px;
      font-weight: bold;
  }

  .form-group {
      position: relative;
      margin-bottom: 15px;
  }

  .form-group input {
      width: 100%;
      padding: 10px 40px 10px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
  }

  .form-group .icon {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: #333;
  }

  .btn {
      width: 100%;
      padding: 10px;
      border: none;
      font-size: 14px;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 8px;
      border-radius: 4px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .btn-black {
      background: black;
      color: white;
  }

  .btn-black:hover {
      background: #333;
  }

  .recaptcha {
      font-size: 11px;
      color: #555;
      margin: 10px 0;
  }

  .recaptcha a {
      color: #1a73e8;
      text-decoration: underline;
  }

  .email {
      color: #1a73e8;
      font-size: 14px;
      margin-bottom: 10px;
  }

  .whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      color: black;
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 6px;
      background: #fff;
      flex-wrap: wrap;
      text-align: center;
  }

  .whatsapp img {
      width: 28px;
      margin-right: 5px;
  }

  .whatsapp p {
      font-size: 10px;
      font-weight: bold;
      margin: 0;
  }

  /* Floating WhatsApp icon - left */
  .floating-whatsapp {
      position: fixed;
      bottom: 42px !important;
      left: 15px !important;
      border-radius: 50%;
      cursor: pointer;
      z-index: 999;
      transition: transform 0.2s;
  }

  .floating-whatsapp:hover {
      transform: scale(1.1);
  }

  .floating-whatsapp img {
      width: 50px;
      height: 50px;
  }



  /* home page contant css */
  .container2 {
      max-width: 90%;
      margin: 0 auto;
      padding: 40px 20px;
      color: #fff;
      line-height: 1.6;
  }

  .container2 h3 {
      text-align: left;
      color: #F0901A;
      /* Pink shade */
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .container2 h2 {
      text-align: left;
      color: #F0901A;
      /* Pink shade */
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .container2 p {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .main-heading {
      text-align: center;
      color: #F0901A;
      /* Pink shade */
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .meta-description {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .meta-description strong {
      font-weight: bold;
  }

  .paragraph {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .paragraph strong {
      font-weight: bold;
  }

  .faq-section {
      background-color: #000;
      /* पूरा सेक्शन काला बैकग्राउंड */
      padding: 30px;
      max-width: 90%;
      margin: auto;
      font-family: Arial, sans-serif;
  }

  .faq-section h2 {
      color: #F0901A;
      /* हेडिंग का पिंक कलर */
      text-align: center;
      margin-bottom: 25px;
  }

  .faq-section dl {
      margin: 0;
      padding: 0;
  }

  .faq-section dt {
      background-color: #2d2d2d;
      /* डार्क ग्रे बैकग्राउंड */
      padding: 12px 15px;
      margin-bottom: 10px;
      border: 4px solid #444;
      /* ग्रे बॉर्डर */
      border-radius: 4px;
      font-weight: bold;
      color: #F0901A;
      /* पिंक टेक्स्ट */
      cursor: pointer;
  }

  .faq-section dt:hover {
      background-color: #3a3a3a;
      /* hover में थोड़ा हल्का */
  }

  .faq-section dd {
      background-color: #111;
      padding: 10px 15px;
      margin: -10px 0 10px 0;
      border: 4px solid #444;
      border-top: none;
      color: #ddd;
      font-size: 15px;
      line-height: 1.5;
  }

  .faq-section strong {
      color: #ff99aa;
      /* strong टेक्स्ट को और ब्राइट */
  }

  .faq-section .btn {
      display: inline-block;
      background-color: #e89ca8;
      color: #000;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      margin-top: 20px;
      transition: background 0.3s;
  }

  .faq-section .btn:hover {
      background-color: #ffb0bd;
  }

  /* Footer Styling */
  .main-footer {
      background-color: #000;
      color: #fff;
      font-family: Arial, sans-serif;
      margin-top: 30px;
      /* border-top: 4px solid white; */
  }

  /* Top Footer Layout */
  .footer-top {
      display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto !important;
    justify-content: space-between;
    padding: 40px 10px;
    max-width: 100%;
    margin: auto;
    padding-right: 40px;
  }

  /* Columns */
  .footer-col {
      /* flex: 1; */
      flex: inherit;
      /* min-width: 250px; */
      margin: 10px;
  }

  .footer-col h3 {
      color: #F0901A;
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 15px;
  }

  .footer-col p {
      color: #ddd;
      font-size: 18px !important;
      line-height: 1.6;
      max-width: 600px;

  }

  /* Quick Links Columns */
  .quick-links .links-columns {
      display: flex;
      gap: 150px;
  }

  .quick-links ul {
      list-style: none;
      padding: 0;
  }

  .quick-links ul li {
      margin-bottom: 10px;
  }

  .quick-links ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 15px;
  }

  .quick-links ul li a:hover {
      text-decoration: underline;
  }

  /* Pink Circle Icon */
  .icon-circle {
      display: inline-block;
      background-color: #c5898b;
      color: #000;
      font-size: 14px;
      font-weight: bold;
      width: 20px;
      height: 20px;
      line-height: 20px;
      border-radius: 50%;
      text-align: center;
      margin-right: 8px;
  }

  /* Social Icons */
  .social-icons a img {
      max-width: 40px;
      max-height: 40px;
      /* margin-right: 8px; */
      border-radius: 4px;

  }

  /* Footer Bottom */
  .footer-bottom {

      padding: 20px;
      text-align: center;
      font-size: 14px;
      color: #ccc;
  }

  .footer-bottom .tags {
      margin-bottom: 10px;
      box-sizing: border-box;
      font-size: 17px;
      margin-bottom: 1.75em !important;
      width: 80%;
      color: #fff;
      margin: auto;
  }

  .about {
      /* flex: 1; */
      min-width: 450px !important;
      width: 450px !important;
      margin-left: 20px !important;
      margin: 10px;
  }

  .footer-bottom .footer-links {
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.7em !important;
      font-size: 17px;
      margin: 10px 0;
  }

  .ke {
      font-size: 17px !important;
      /* border-top: 2px solid white; */
      padding-top: 20px;
  }

  .footer-bottom .highlight {
      color: #c5898b;
  }

  /* Floating WhatsApp (Left Side) */
  .floating-whatsapp {
      position: fixed;
      bottom: 60px;
      left: 20px;
      z-index: 1000;
  }

  .floating-whatsapp img {
      width: 50px;
      height: 50px;
  }

  /* Floating Telegram (Right Side - Above Button) */
  .floating-telegram {
    position: fixed;
      bottom: 25px;
      left: 20px;
      z-index: 1000;
  }

  .floating-telegram img {
      width: 55px;
      height: 55px;
  }

  /* Floating WhatsApp Button (Right Side) */
  .floating-button {
      position: fixed;
      bottom: 40px;
      /* Telegram ke niche */
      right: 20px;
      background: #0C652D;
      color: #fff;
      padding: 10px 15px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      z-index: 1000;
  }

  .floating-button img {
      width: 24px;
      height: 24px;
  }

  /* ---------- RESPONSIVE STYLES ---------- */
  .hearder {
      display: flex;
      width: 95%;
      margin: 10px auto;
      justify-content: space-between;
  }

  .harder_logo {
      width: 50%;
  }

  .harder_logo img {
      width: 100%;
      width: 200px;
  }

  .harder_icon {
      justify-content: right;
      width: 50%;
      display: flex;
  }

  #whatsapp img {
      width: 50px;
      height: 50px;
  }

  #telegram img {
      width: 50px;
      height: 50px;
  }

  /* For tablets (768px and below) */
  @media (max-width: 768px) {
      .login-box {
    width: 331px !important;
    margin: auto !important;
}
    .email {
    text-align: center;
    color: #1a73e8;
    font-size: 14px;
    margin-bottom: 10px;
}
    .footer-top {
    width: 100%;
}
.whatsapp {
        font-size: 11px;
        flex-direction: column;
        padding: 10px;
        text-align: center;
        align-items: center !important;
        flex-direction: row;
        display: flex
;
        text-align: left !important;
        align-items: flex-start;
    }
.login-box h2 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #F0901A !important;
    font-weight: bold;
    text-align: center;
}


      .container2 {
          max-width: 100%;
          margin: 0 auto;
          padding: 40px 20px;
          color: #fff;
          line-height: 1.6;
      }

      body {
          width: 100% !important;
          flex-direction: column;
      }

      .container {
          max-width: 85%;
      }

      .logo img {
          max-width: 91%  !important;
      }

      .footer-top {
          flex-direction: column;
          padding: 20px;
          align-items: flex-start;
          /* align items to start (left) */
      }

      .footer-col,
      .about {
          width: 100% !important;
          max-width: 100%;
          margin-left: 0 !important;
          text-align: left !important;
          /* left-align text */
      }

      .quick-links .links-columns {
          flex-direction: column;
          gap: 20px;
      }

      .quick-links ul,
      .quick-links ul li,
      .quick-links ul li a {
          text-align: left !important;
      }


  }

  /* For mobile devices (480px and below) */
  @media (max-width: 480px) {
    .social {
        /* flex: 1; */
    flex: inherit;
    /* min-width: 250px; */
    width: 100%;
    margin: 10px;
  }
    .floating-telegram {
    position: fixed;
    bottom: 38px;
    left: 20px;
    z-index: 1000;
}

      .faq-section {
          background-color: #000;
          padding: 13px;
          max-width: 100%;
          margin: auto;
          font-family: Arial, sans-serif;
      }

      .logo img {
          max-width: 100%;
          margin-bottom: 15px;
      }

      .login-box {
          padding: 15px;
          text-align: left !important;
      }

      .form-group input {
          padding: 10px;
          font-size: 13px;
      }

      .btn {
          font-size: 13px;
      }

     

      .whatsapp img {
          margin-bottom: 5px;
      }

      .footer-col h3 {
          font-size: 22px;
          text-align: left !important;
      }

      .footer-col p {
          font-size: 16px !important;
          text-align: left !important;
      }



      .floating-whatsapp img,
      .floating-button img {
          width: 40px;
          height: 40px;
      }

      .floating-button {
          padding: 8px 12px;
          font-size: 12px;
      }

      #fo1 {
          width: 100% !important;
      }

      #fo2 {
          width: 100% !important;
      }

      #fo3 {
          width: 100% !important;
      }
.footer-bottom .tags {
    width: 100% ;
}
  }

  #fo1 {
          width: 15%;
    align-items: center;
    display: flex
;
    flex-direction: column;
  }

  #fo2 {
         width: 15%;
    
    display: flex
;
    flex-direction: column;
  }

  #fo3 {
    display: flex;
    flex-direction: column;
  }
  .quick-links ul li a { 
    
  }
  .social {
        /* flex: 1; */
    flex: inherit;
    /* min-width: 250px; */
    width: 17%;
    margin: 10px;
  }