/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Style */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #007bff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li {
    margin-left: 20px;
}

.navbar nav ul li a, .cta-btn {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    background: #0056b3;
    border-radius: 5px;
    transition: background 0.3s;
}

.navbar nav ul li a:hover, .cta-btn:hover {
    background: #003d80;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: #f4f4f4;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-btn:hover {
    background: #0056b3;
}

/* Features Section with Carousel */
.features {
    padding: 50px;
    background: #e9ecef;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.carousel {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
    scroll-behavior: smooth;
}

.card {
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 50px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 50px;
    background: #f8f9fa;
    text-align: center;
}

/* Call-to-Action Section */
.cta {
    padding: 50px;
    background: #007bff;
    color: #fff;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #0056b3;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #003d80;
}

/* Footer */
footer {
    padding: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content ul {
    list-style: none;
    display: flex;
}

.footer-content ul li {
    margin-left: 20px;
}

.footer-content ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content ul li a:hover {
    color: #007bff;
}
