/* Remove default margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', Sans-Serif;
}
 #loading{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #fff
	url('/resources/images/plz_wait.gif')
	   no-repeat center center;	
	    z-index: 99999;
}
.multi-image-slider {
  overflow: hidden;
  width: 100%;
  background: #6c757d;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: calc(200px * 8); /* 8 images */
  animation: scrollSlider 30s linear infinite;
}

.slider-track img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.navbar {
   display: flex;
   justify-content: space-between;
    align-items: center;
      flex-wrap: wrap;
      height: 55px;
     margin-top: -10px;
    }
    
   .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 20px;
      height: 3px;
      background: white;
      margin: 4px 0;
    } 
    
body {
    background-color: #494458;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.social-section {
    text-align: center;
    padding: 10px;
    background-color: #494458;
}

.social-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.social-icons a {
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    padding: 12px;
    margin: 8px;
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
    background-color: white;
    color: #0d1b3d;
}

.info-box {
    background-color: #e0e9f1;
    color: #0d1b3d;
    margin: 10px auto;
    padding: 5px 12px;
    width: fit-content;
    border-radius: 20px;
    font-size: 16px;
}

.logo img {
      height: 50px;
      vertical-align: middle;
  }
   
    .menu { display: flex; gap: 10px; }

    .menu a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background: #444;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 20px;
      }
      .menu.show { display: flex; }
      .menu-toggle { display: flex; }
    }
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
.hero h1 {
      font-size: 28px;
      margin-bottom: 20px;
      color: black;
    }

    .join-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .join-buttons a {
      background-color: #30291e;
      color: #fff;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 16px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .join-buttons a:hover {
      background-color: #e68900;
    }

    /* Contact section */
    .contact-section {
      background: rgba(0, 0, 0, 0.6);
      padding: 40px 20px;
      text-align: center;
    }

    .contact-section h2 {
      margin-bottom: 20px;
    }

    .contact-section form {
      max-width: 500px;
      margin: 0 auto;
    }

    .contact-section input,
    .contact-section textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 5px;
      border: none;
    }

    .contact-section button {
      padding: 10px 20px;
      background-color: #03a9f4;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .contact-section button:hover {
      background-color: #0288d1;
    }
   .about-section {
       background-color: #c5b2b2;
       color: #262222;
       padding: 40px 20px;
       text-align: center;
   }
   /* WhatsApp floating button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
    }

    /* Footer */
    .footer {
      background-color: #000;
      padding: 40px 20px;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      font-size: 14px;
    }

    .footer-column {
      flex: 1 1 200px;
    }

    .footer-column h3 {
      margin-bottom: 10px;
    }

    .footer-column a {
      display: block;
      color: yellow;
      text-decoration: none;
      margin-bottom: 5px;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .scroll-banner {
      background: red;
      color: #fff;
      padding: 8px;
      text-align: center;
      font-weight: bold;
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 999;
    }
@media screen and (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: center;
      }
      .join-buttons {
        flex-direction: column;
        align-items: center;
      }
      .footer {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .menu-btn {
    display: inline-block;
    background-color: #e5359f;  /* Red color */
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 0px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu-btn i {
    margin-right: 2px;  /* icon aur text ke beech gap */
}
.menu-btn:hover {
    background-color: #c62828; /* Darker red on hover */
    transform: scale(1.05);
}  
header {
      background: #7379c1;
      color: #fff;
      padding: 8px 15px;
      position: relative;
    }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f2f2f2;
        }

        /* Modal background */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
        }

        /* Modal content box */
        .modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 20px;
            border-radius: 12px;
            width: 350px;
            position: relative;
            box-shadow: 0 0 15px rgba(0,0,0,0.3);
        }

        /* Close (×) button */
        .close {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 16px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #000;
        }

        .login-wrapper {
            padding: 10px;
        }

        .login-box {
            text-align: left;
        }

        .avatarLogin {
            text-align: center;
        }

        .avatarLogin img {
            border-radius: 50%;
        }

        .text-center {
            text-align: center;
        }

        .text-info {
            color: #007bff;
            margin: 10px 0;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 8px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .password-wrapper {
            position: relative;
            color: black;
        }

        .password-wrapper i {
            position: absolute;
            right: 10px;
            top: 38px;
            cursor: pointer;
        }

        .forgot-link {
            display: block;
            text-align: right;
            font-size: 13px;
            margin-top: 5px;
            text-decoration: none;
        }

        .submit-btn {
            width: 100%;
            padding: 10px;
            background-color: #007bff;
            color: white;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .submit-btn:hover {
            background-color: #0056b3;
        }

        /* Trigger Button (Optional) */
        .login-btn {
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }