
.color-blue{
    color: blue;
}
.mybtn {
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    color: white;
    background: #d6c278;
    padding: 9px 28px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow */
    position: relative;
    overflow: hidden;
}

.mybtn:hover {
    background: darkgoldenrod;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
}

.mybtn:active {
    transform: scale(0.95); /* Click animation */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chat-container{
    max-width: 800px;
    margin-top: 50px;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}
.chat-title{
    text-align:center;
}
.chat-input{
    display:flex;
}
.chat-input input{
    flex-grow: 1;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 8px;
}
.chat-input button{
    background-color: #C1A57B;
    border: none;
    color:white;
    border-radius: 5px;
    padding: 8px 12px;
}
.chat-box{
    background-color: #f9fdfe;
    border: 1px solid #dcdcdc;

    padding: 10px 10px;
    height: 350px;
    border-radius: 5px;
    margin-bottom:10px;
    display: flex;
    flex-direction: column;
    overflow-y:auto;
}
.chat-message{
    max-width: 70%;
    border-radius: 12px;
    color: white;
    padding: 8px 12px;
    background-color: #369e5b;
    margin: 5px 10px;
    display: inline-block;
}
.user-input{
    background-color: #3aa9ac;
    align-self: flex-end;
    text-align:right;
}
.bot-input{
    align-self: flex-start;
    text-align:left;
}
.login-card{
    max-width: 400px;
    padding: 25px;
}

#login{
    font-family: 'Playfair Display', serif;

    background: linear-gradient(110deg, #b7a178 0%, #6278d3 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-login{
    background-color: #d6c278;
/*    border: 1px solid #b19732;*/
    color:white;
    width: 100px;
    width: 100%;
    align-items: center;
    border-radius: 30px;
}

.btn-login:hover{
    background-color: #c2a214;
    border: 1px solid #b19732;
    color: white;
}
.logo-img{
    max-width:170px;
}
.login-logo{
    max-width:270px;
}
.signup{
    margin-top: 10px;
}
.navbar{
    background-color: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(33, 33, 33, 0.1);
}
.container {
    position: relative;
    z-index: 3;
}
.hero {
    position: relative;
    background: url('../static/img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.hero h1 {
    color: white;
    font-size: 55px;
    z-index: 4;
    margin-bottom: 20px;
}
.hero p {
    color: white;
    font-size: 31px;
    margin-bottom: 30px;
    z-index: 4;
}
.hero .btn {
    z-index: 4;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 5px;
}
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}
.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.about-section p {
    font-size: 18px;
    line-height: 1.6;
}
.features-section {
    padding: 60px 0;
}
.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.feature {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.feature p {
    font-size: 16px;
    line-height: 1.5;
}

.chart-card{
    height: 400px;
    padding: 10px 20px;
    border: 2px solid #f7e5f9;
    background-color: rgba(254, 250, 247,0.8);
    border-radius: 40px;
    transition: 0.3s;
}
.chart-card:hover{
    transform: translateY(-10px);
}
