/* General Layout */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav ul li .start-trial {
    padding: 8px 16px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(to right, #0056b3, #00c6ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffffff;
    color: #0056b3;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

/* Responsive Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.2);
    background: linear-gradient(135deg, #e8f0ff, #ffffff);
}

.feature-card h3 {
    font-size: 20px;
    color: #0056b3;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #444;
    flex-grow: 1;
}

/* Optional: Add icons using ::before (if you don't want to use actual <img> or <i> icons) */
.feature-card::before {
    content: ""; /* You can vary this per card using classes or inline HTML instead */
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Key Features Section */
.features {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #f9f9f9, #eef4fa);
}

.features h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #002855;
}

/* Why Automate Section */
.why-automate {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #e8f0ff, #f4f9ff);
}

.why-automate h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #002855;
}

.why-automate .feature-grid {
    margin-top: 30px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #f1f6fc);
    margin-top: 40px;
    border-radius: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.about:hover {
    transform: scale(1.01);
}

.about h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #0056b3;
    font-weight: 700;
    letter-spacing: 1px;
}

.about p {
    font-size: 20px;
    color: #444;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 18px;
    color: #555;
}

.contact a {
    color: #0056b3;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #333;
    color: #ffffff;
    text-align: center;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
