/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #fff;
    background: #111;
    overflow-x: hidden;
    position: relative;
}

/* Water Ripple Background */
.blue-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.itrustcapital.com/itrustcapital-open-graph-image.jpg') repeat;
    
    animation: waterMove 30s linear infinite;
    z-index: -1;
}

@keyframes waterMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Header */
.header {
    text-align: center;
    padding: 100px 20px;
}

.header h1 {
    font-size: 3em;
    color: #03fc2c;
    text-shadow: 0 0 10px #00d8ff;
}

.header p {
    font-size: 1.2em;
    color: #03fa18;
}

/* Login Section */
.login-section {
    padding: 60px 20px;
    text-align: center;
}

.login-form {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.5);
}

.login-form input {
    display: block;
    width: 300px;
    margin: 15px auto;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1em;
}

.btn-3d {
    background: linear-gradient(145deg, #00d8ff, #006bb3);
    color: #02f70e;
    border: none;
    padding: 15px 50px;
    font-size: 1.2em;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 5px 5px 15px #006bb3, -5px -5px 15px #00d8ff;
    transition: transform 0.2s ease;
}

.btn-3d:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.85);
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 216, 255, 0.3);
}

.feature-box h3 {
    color: #00d8ff;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1em;
    color: #03fa03;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: #0bfa03;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.9);
    font-size: 0.9em;
    color: #17f703;
}
