   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a7f5f;
            --primary-light: #2a9f7f;
            --accent: #f5a623;
            --text-dark: #1a1a1a;
            --text-light: #555555;
            --bg-light: #f0f5f3;
            --white: #ffffff;
        }

        html, body {
            height: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        body {
            background: linear-gradient(135deg, var(--bg-light) 0%, #e8f3f0 100%);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(42, 159, 127, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-content {
            flex: 1;
            max-width: 550px;
            z-index: 2;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-title {
            font-size: clamp(28px, 5vw, 56px);
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(16px, 2.5vw, 18px);
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 500;
        }

        .buttons-container {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 50px;
        }

        .btn {
            padding: 14px 32px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn i {
            font-size: 16px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: -1;
            transition: left 0.3s ease;
        }

        .btn:hover {
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 127, 95, 0.3);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn.primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn.primary:hover {
            background: var(--primary-light);
            border-color: var(--primary-light);
        }

        .welcome-text {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 16px;
            animation: slideInLeft 0.8s ease-out 0.1s both;
        }

        .highlight {
            color: var(--primary);
            font-weight: 700;
        }

        .accent-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            margin: 0 8px;
            vertical-align: middle;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            min-height: 400px;
            padding-left: 40px;
        }

        .visual-circle {
            width: clamp(250px, 35vw, 450px);
            height: clamp(250px, 35vw, 450px);
            border-radius: 40px;
            position: relative;
            box-shadow: 0 20px 60px rgba(26, 127, 95, 0.25);
            animation: float 3s ease-in-out infinite;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .visual-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .dot-pattern {
            position: absolute;
            display: grid;
            grid-template-columns: repeat(5, 8px);
            gap: 12px;
            top: 30%;
            right: 15%;
            z-index: 1;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
        }

        .accent-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            background: var(--accent);
            border-radius: 20px;
            bottom: 10%;
            right: 5%;
            opacity: 0.15;
            z-index: 1;
            transform: rotate(45deg);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                padding: 40px 24px;
                justify-content: center;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 40px;
            }

            .buttons-container {
                justify-content: center;
            }

            .hero-title {
                margin-bottom: 16px;
            }

            .hero-subtitle {
                margin-bottom: 32px;
            }

            .hero-visual {
                width: 100%;
            }

            .dot-pattern {
                top: 10%;
                right: 5%;
                grid-template-columns: repeat(4, 6px);
                gap: 10px;
            }

            .dot {
                width: 6px;
                height: 6px;
            }

            .accent-shape {
                width: 80px;
                height: 80px;
            }

            .hero::before {
                width: 400px;
                height: 400px;
                right: -30%;
                top: -30%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 30px 16px;
            }

            .buttons-container {
                gap: 12px;
                flex-direction: column;
            }

            .btn {
                width: 100%;
                padding: 12px 24px;
                font-size: 14px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .visual-circle {
                width: 200px;
                height: 200px;
            }

            .visual-circle::before {
                font-size: 50px;
            }
        }


        

/* PASSWORD MODAL */
.password-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(204, 204, 204);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.password-modal.hidden {
  display: none;
}

.password-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  min-width: 550px;
}

.password-box h1 {
  color: #007d40;
  margin-bottom: 15px;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.password-box p {
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

.password-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
  font-family: "Inter", sans-serif;
}

.password-input:focus {
  outline: none;
  border-color: #007d40;
  box-shadow: 0 0 0 3px rgba(27, 94, 61, 0.1);
}

.error-msg {
  color: #d32f2f;
  font-size: 12px;
  margin-bottom: 15px;
  display: none;
}

.error-msg.show {
  display: block;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: #007d40;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  font-family: "Poppins", sans-serif;
}

.btn-login:hover {
  background: #005029;
  box-shadow: 0 4px 12px rgba(27, 94, 61, 0.3);
}
