body {
      background-color: #000;
      color: white;
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
      background-color: transparent !important;
      position: absolute;
      top: 10px;
      right: 20px;
      z-index: 1000;
    }

    .navbar-nav a {
      color: gold !important;
      margin-right: 15px;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    /* Hero Section (with login) */
    #intro {
      background: url('https://d15y4h5opkr1s4.cloudfront.net/static/img/login-logo-1.webp') no-repeat center center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 60px 20px;
    }

    .login-container {
      display: flex;
      flex-wrap: wrap;
      width: 850px;
      max-width: 100%;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .login-image {
      flex: 1 1 50%;
      background-image: url('/resources/static/img/janashakti.png'); /*https://d15y4h5opkr1s4.cloudfront.net/static/img/apple-touch-icon.png*/
      background-size: cover;
      background-position: center;
      min-height: 400px;
    }

    .login-form {
      flex: 1 1 50%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #000;
    }

    .login-form .logo {
      display: flex;
      align-items: center;
      font-weight: 600;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .login-form .logo-icon {
      width: 40px;
      height: 40px;
      background-color: #ff6f00;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: white;
      font-size: 1.2rem;
    }

    .login-form h4 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .form-control {
      border-radius: 8px;
      height: 45px;
    }

    .btn-login {
      background-color: #000;
      color: #fff;
      border-radius: 8px;
      height: 45px;
      width: 100%;
    }

    .btn-login:hover {
      background-color: #333;
    }

    .text-link {
      color: #0d6efd;
      text-decoration: none;
    }

    .text-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .login-container {
        flex-direction: column;
      }
      .login-image {
        height: 250px;
      }
    }

    /* About Section */
    #about {
      background: url('https://d15y4h5opkr1s4.cloudfront.net/static/img/Picture2.webp') no-repeat center center/cover;
      /* padding: 100px 0; */
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 60px 20px;
    }

    #about .card {
      background: rgba(0,0,0,0.8);
      color: white;
      border: none;
      border-radius: 10px;
    }

    #about .card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 0 auto 10px auto;
    }

    /* Contact Section */
    #contact {
      background: url('https://d15y4h5opkr1s4.cloudfront.net/static/img/Picture1.webp') no-repeat center center/cover;
     /*  padding: 100px 0; */
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 60px 20px;
    }

    #contact .card {
      background: rgba(0,0,0,0.8);
      border: none;
      color: white;
      border-radius: 10px;
      padding: 30px;
    }
    
      .contact-btn {
	      background-color: #E82520 !important;
	      color: #fff !important;
	      border: none;
	      transition: all 0.3s ease;
    }

    footer {
      text-align: center;
      background: #000;
      color: #aaa;
      padding: 15px;
      font-size: 0.9rem;
    }