/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
}

/* Header styles */
.header {
    background-color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header h1 {
    color: #fff;
    margin: 0;
    font-size: 1.5em;
}

.nav-menu {
    display: flex;
    gap: 50px;
    /* increased from 20px */
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffcc00;
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu icon (optional for mobile later) */
.menu-icon {
    display: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* Responsive nav */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .header.active .nav-menu {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
}


/* Main Container */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.left-side {
    flex: 1 1 450px;
    color: #fff;
}

.left-side h1 {
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.btn {
    margin: 20px;
    background-color: brown;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #5c2e00;
}

.right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side img {
    width: 400px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .left-side,
    .right-side {
        flex: 1 1 100%;
    }

    .buttonHandler {
        justify-content: center;
    }
}

/* Grid Features */
.grid-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #2c2c2c;
}

.grid-item {
    background-color: #393939;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(98, 98, 98, 0.806);
    transition: all 0.5s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.grid-item img {
    width: 50px;
    margin-bottom: 10px;
}

.grid-item h2 {
    margin: 10px 0 5px;
    color: #fff;
}

.grid-item p {
    color: #ccc;
    font-size: 0.95em;
}

/* Pricing Table */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;


}



.pricing-option {
    background-color: #f4f4f4;
    color: #000;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

/* Pricing Table */
.pricing-option:hover {

    transform: translateY(-20px);

}

.pricing-option h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.pricing-option .price {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.pricing-option ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-option ul li {
    margin: 10px 0;
    font-size: 1em;
    color: #333;
}

.pricing-option button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-option button:hover {
    background-color: #0056b3;
}

/* Recommended Plan */
.pricing-option.recommended {
    border: 2px solid #ff9800;
    background-color: #fff3e0;
    position: relative;
}

.pricing-option.recommended::before {
    content: "Recommended";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9800;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.features-table {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.features-section {
    width: 45%;
    min-width: 280px;
    transition: transform 0.3s ease;
}

.features-section h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ffffff;
}

.features-section table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2b2b2b;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-section th,
.features-section td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
    color: #fff;
}

.features-section th {
    background-color: #b35959;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    color: #fff;
}

.features-section td {
    background-color: #333;
    transition: background-color 0.3s;
}

.features-section td:hover {
    background-color: #444;
}

.features-section:hover {
    transform: translateY(-5px);
}



.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 15px;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: brown;
}

.footer-socials a {
    color: #ccc;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: brown;
}

.footer-copy {
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links,
    .footer-socials {
        margin: 0 auto;
    }
}