body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f6fb;
}

.saas-hero {
    background: linear-gradient(135deg, #1f2b48, #4a77d4);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.saas-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.saas-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 25px;
}

.error {
    color: #FF0000;
}

.btn-primary {
    background: #ff5722;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin: 5px;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e64a19;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin: 5px;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #4a77d4;
}

.saas-features {
    padding: 60px 20px;
    text-align: center;
}

.saas-features h2 {
    margin-bottom: 40px;
    font-size: 26px;
    color: #222;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s;
}

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

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

.login-section {
    padding: 50px 20px;
    text-align: center;
}

.login-section input {
    padding: 12px;
    width: 250px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.login-section button {
    padding: 12px 25px;
    border: none;
    background: #4a77d4;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.login-section button:hover {
    background: #365db3;
}

.whts_btn {
    color: black;
    text-decoration: none;
}

.app-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4a77d4, #1f2b48);
    color: white;
}

.app-section h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.app-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.app-btn {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.app-btn.android {
    background: #34a853;
    color: white;
}

.app-btn.android:hover {
    background: #2c8e47;
}

.app-btn.ios {
    background: #000000;
    color: white;
}

.app-btn.ios:hover {
    background: #333333;
}

.app-preview {
    padding: 60px 20px;
    background: #f4f6fb;
    text-align: center;
}

.app-preview h2 {
    margin-bottom: 40px;
    font-size: 26px;
    color: #222;
}

.powered-by {
    padding-top: 20px;
    font-size: 13px
}

.powered-by a:hover {
    color: #000000;
    cursor: pointer;
}

.carousel {
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.slide {
    min-width: 250px;
    margin: 0 15px;
}

.slide img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 10px;
}

.smart-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.smart-table thead {
    background: linear-gradient(135deg, #4a77d4, #6eb6de);
    color: #ffffff;
}

.smart-table th {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.smart-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.smart-table tbody tr:hover {
    background: #f5f8ff;
    transition: 0.2s;
}

.brand-cell {
    font-weight: 700;
    background: #f0f4ff;
    color: #2d4fa3;
    vertical-align: middle;
}

.smart-table td:contains("✅") {
    color: #2e7d32;
    font-weight: bold;
}

.smart-table td:contains("❌") {
    color: #c62828;
    font-weight: bold;
}

.smart-filter-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.smart-filter-bar input,
.smart-filter-bar select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    min-width: 180px;
    width: 60%;
    transition: 0.3s;
}

.smart-filter-bar input:focus,
.smart-filter-bar select:focus {
    border-color: #4a77d4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74,119,212,0.1);
}

.result-count {
    font-weight: 600;
    color: #4a77d4;
}

.smart-table tbody tr {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.smart-table tbody tr.hide {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}

@media (max-width: 480px) {
    .smart-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .smart-filter-bar input,
    .smart-filter-bar select {
        width: 90%;
    }
}