/* General Styles */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* background: rgb(19,183,231);
 
   background: linear-gradient(180deg, rgba(19,183,231,1) 14%, rgba(60, 183, 216, 0.763) 98%); */
   background: rgb(243,247,255);
background: linear-gradient(180deg, rgba(243,247,255,1) 0%, rgba(255,255,255,1) 100%);
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(to bottom, #f0f5ff, #ffffff);
    padding: 6rem 0; */
    color: rgb(0, 0, 0);

    
    /* background: rgb(16,110,190);
background: linear-gradient(180deg, rgba(16,110,190,1) 30%, rgba(16,115,193,1) 39%, rgba(16,124,198,1) 45%, rgba(17,140,207,1) 57%, rgba(19,183,231,1) 81%); */
}
.nav-color{
    background-color: #fcfcfc;

}
.logo-colour{
    color: #0d6efd;

}
.feature-item {
    padding: 2rem;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #4a4f53;
}

/* Pricing Section */
.pricing-card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.122);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: bold;
}

.price .period {
    color: #6c757d;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    color: #000000;
}

.feature-list i {
    color: 0d6efd;
    margin-right: 0.5rem;
}

/* Upload Section */
.upload-area {
    max-width: 600px;
    height: 300px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.upload-area:hover,
.upload-area.dragover {
    background: rgba(16, 109, 190, 0.493);
    background: linear-gradient(180deg, rgba(16, 109, 190, 0.541rgba(16, 116, 193, 0.47),193,1) 39%, rgba(16, 125, 198, 0.481) 45%, rgba(17, 141, 207, 0.525) 57%, rgba(19, 182, 231, 0.519) 81%);
}

.upload-content {
    text-align: center;
}

.upload-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}
.t-white{
    color: #ffffff;
}
.t-0d6efd{
    color: #000000;
}
.t-btn{
    color: 0d6efd;
}
.bg-price{
    background-color: 0d6efd;
    border-color: #1088cc;
}

.upload-content label {
    cursor: pointer;
    text-decoration: underline;
}
.feature-list i{
    color:#0dc83c;   
}
.btn{
    background-color: 0d6efd;
    border-color: 0d6efd;
    color: 0d6efd;
}
.btn-price{
    color: rgb(0, 0, 0);
   
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .feature-item {
        padding: 1rem;
    }
}