html {
    overflow-x:hidden;
}

body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background: #F6F8FA;
    color:#1F2937;
    display:flex;
    flex-direction:column;
    align-items:center;
    min-height:100vh;
    width:100%;
    overflow-x:hidden;
}

header.hero,
section,
footer{
    width:100%;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: whitesmoke;
}


.hero h1{
    font-size:48px;
}

.cta{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background: #374151;
    color: white;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
}

section{
    padding:60px 20px;
    width:100%;
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.cards{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:20px;
    flex-wrap:wrap;
}

.card{
    flex:1;
    min-width:220px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: rgb(255, 255, 255);
    padding:20px;
    border-radius:10px;
    box-shadow: whitesmoke;
}

.card p{
    background:white;
    color: black;
    padding:10px;
    border-radius:6px;
    margin-top:10px;
}

.developers{
    text-align:center;
}

.devbox{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.dev{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.dev{
    width:180px;
    text-align:center;
}
footer{
    text-align:center;
    padding:20px;
    background:#222;
    color:white;
}

.dev{
    width:180px;
    text-align:center;
    background:black;
    color:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.dev:hover{
    background:lightgray;
    color:black;
}

.herobuttons{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-login {
    padding:12px 28px;
    background: #374151;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    text-decoration: none;
    display: inline-block;
}

.btn-signup {
    padding:12px 28px;
    background: #374151;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    text-decoration: none;
    display: inline-block;
}

.money-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:150px;
    font-size:20px;
    padding:30px 0;
}
.money-row span{
    transition:0.3s;
    cursor:default;
}

.money-row span:hover{
    transform:scale(1.3) rotate(10deg);
}


.dashboard {
    flex: 1;                   
    background: white;          
    padding: 20px;              
    border-radius: 10px;        
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.dashboard-buttons button {
    padding: 30px 50px;     
    font-size: 22px;          
    font-weight: bold;
    border: none;
    border-radius: 15px;     
    background: green;        
    color: white;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1); 
    transition: 0.3s;
}


.layout {
    display: flex;
    gap: 20px;
}


.ai-panel {
    position: absolute;      
    top: 150px;              
    right: 20px;             
    width: 250px;            
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-cards {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.about-card .card {
    background-color: #1E293B;  /* dark bluish like your hero */
    border: 2px solid #0F172A;  /* slightly darker border */
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 700px;
    margin: auto;
    text-align: center;
    color: whitesmoke;          /* main text color */
    font-size: 18px;
    line-height: 1.6;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.about-card .card h2 {
    color: #F1F5F9; /* title color slightly brighter */
    margin-bottom: 15px;
}

.about-card .card p {
    color: #E5E7EB; /* paragraph text lighter for readability */
    background: transparent; /* remove any conflicting white bg */
}

.about-card .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}