html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: #000;
    color: #333;
}

header {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.header .container {
    padding: 150px 20px;
    z-index: 2;
    position: relative;
}

.header h1 {
    margin: 0;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
    font-size: 1.5rem;
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header .btn {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header .btn:hover {
    background: #218838;
    transform: translateY(-5px);
}

.parallax {
    background: url('../../images/1600x900.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.6;
    transform: translateZ(0);
    will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 100px 20px;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1.2rem;
    }

    .header .btn {
        font-size: 1rem;
        padding: 10px 30px;
    }
}

.features, .why, .download, .feedback {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.features h2, .why h2, .download h2, .feedback h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007bff;
}

.features {
    padding: 60px 20px;
    background: linear-gradient(to right, #141e30, #243b55); /* Gradient background */
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.features .feature {
    flex: 1 1 calc(25% - 40px);
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background for glass effect */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for glass effect */
}

.features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.features .icon-wrapper {
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    padding: 20px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.features .feature:hover .icon-wrapper {
    background: rgba(0, 123, 255, 0.5);
}

.features .feature i {
    color: #00b4db;
}

.features .feature h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.features .feature p {
    font-size: 1em;
    line-height: 1.5;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .features .features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .features .feature {
        flex: 1 1 100%;
    }
}

.why {
    background: #f5f5f5;
    padding: 60px 0;
    color: #333;
    text-align: center;
}

.why {
    background: url('../../images/background.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.why .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.why h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.why p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.use-cases, .testimonials, .comparison-table {
    margin-top: 40px;
}

.use-cases {
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.use-cases .case {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1;
    max-width: calc(33% - 20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

.use-cases .case i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.use-cases .case:hover {
    transform: translateY(-10px);
}

.testimonials {
    text-align: center;
    padding: 60px 0;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.testimonials .swiper-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.testimonials .swiper-wrapper {
    display: flex;
}

.testimonials .swiper-slide {
    font-size: 1.2em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 20px;
    box-sizing: border-box;
}

.testimonials .swiper-slide p {
    margin: 0;
    line-height: 1.5;
    max-width: 600px
}

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
    color: #0056b3;
}

.testimonials .swiper-pagination-bullet {
    background: #007bff;
}

.testimonials .swiper-pagination-bullet-active {
    background: #0056b3;
}

.comparison-table {
    text-align: left;
    margin: 40px 0;
    padding: 20px;
    /*background: rgba(255, 255, 255, 0.1);*/
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #007bff;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table table, .comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
}

.comparison-table th {
    background: rgba(0, 123, 255, 0.7);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.comparison-table td {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1em;
}

.comparison-table td i {
    color: #007bff;
}

.comparison-table td i.fa-times {
    color: #e74c3c;
}

.comparison-table td:hover {
    background: rgba(255, 255, 255, 0.2);
    cursor: default;
}

.comparison-table table {
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table table tr:last-child td {
    border-bottom: none;
}

.comparison-table table tr:last-child td:last-child {
    border-right: none;
}

.cta {
    margin-top: 40px;
    text-align: center;
}

.cta .btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta .btn:hover {
    background: linear-gradient(45deg, #0056b3, #003f7f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.cta .btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

.cta .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

@media (max-width: 768px) {
    .use-cases {
        flex-direction: column;
    }

    .use-cases .case {
        max-width: 100%;
    }
}

.download {
    background: linear-gradient(to right, #141e30, #243b55); /* Gradient background */
}

.download .container {
    text-align: center;
    padding: 40px 20px;
}

.download p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
}

.download .download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-top: 20px;
}

.download .card {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    text-align: center;
    transition: transform 1s, box-shadow 1s;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.download .card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 1), transparent 70%);
    opacity: 0.1;
    /*transform: rotate(45deg);*/
    transition: opacity 1s ease-out;
    z-index: -1;
}

.download .card:hover::before {
    opacity: 0.8;
}

.download .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.download .card h3 {
    margin-top: 0;
    font-size: 1.8em;
    font-weight: 700;
}

.download .card p {
    margin: 10px 0 20px;
    color: #fff;
    font-size: 1.1em;
}

.download .card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.download .card .btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.download .card .btn i {
    margin-right: 8px;
}

.feedback {
    background: url('../../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.feedback .container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #333;
    text-shadow: none;
}

.feedback h2 {
    margin-top: 0;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.feedback p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.feedback .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.feedback .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.feedback .form-group input,
.feedback .form-group select,
.feedback .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feedback .form-group input:focus,
.feedback .form-group select:focus,
.feedback .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

.feedback form .btn {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    font-size: 1.1em;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.feedback form .btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feedback .container {
    animation: fadeIn 1s ease-in;
}

footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

footer .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
