html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
@media (hover: hover) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* General Reset and Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #daf0f0;
    color: #17191d;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #17191d;
    font-weight: bold;
}

/* Header Navigation Bar */
.navbar {
    background-color: #cdcec2;
    border-bottom: 2px solid #cea33a;
    padding: 10px 0;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .logo-image {
        height: 50px;
    }

    .navbar .nav-links a {
        margin: 0 15px;
        color: #17191d;
        text-decoration: none;
        font-weight: bold;
    }

        .navbar .nav-links a:hover {
            color: #cea33a;
        }

    .navbar .nav-icons a {
        color: #17191d;
        text-decoration: none;
        margin-right: 15px;
    }

        .navbar .nav-icons a:hover {
            color: #cea33a;
        }

/* Main Content */
.main-content {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #cdcec2;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .main-nav ul.nav {
        display: flex;
        align-items: center;
        margin-bottom: 0; /* remove any vertical misalignment */
        padding-left: 0;
    }

    .main-nav li.nav-item {
        display: flex;
        align-items: center;
        padding: 0 12px;
    }

.logo {
    display: flex;
    align-items: center;
}


/* Footer */
.footer {
    background-color: #cdcec2;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #cea33a;
}

    .footer a {
        color: #17191d;
        text-decoration: none;
        margin: 0 10px;
    }

        .footer a:hover {
            color: #cea33a;
        }

    .footer .social-links a {
        color: #17191d;
        text-decoration: none;
        margin: 0 10px;
    }

        .footer .social-links a:hover {
            color: #cea33a;
        }

.container {
    max-width: 1200px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.card ul li {
    margin-bottom: 10px;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

    .btn-success:hover {
        background-color: #218838;
        border-color: #1e7e34;
    }


    /*Pricing Page*/
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.card-header {
    font-weight: bold;
    padding: 20px;
}
.card-body {
    text-align: left; /* Aligns all text in the card body to the left */
}

    .card-body p {
        display: flex; /* Use flexbox for icon and text alignment */
        align-items: center; /* Vertically aligns icons and text */
        margin: 10px 0; /* Adds spacing between each feature */
    }

        .card-body p i {
            margin-right: 10px; /* Adds spacing between the icon and the text */
            font-size: 1.2rem; /* Ensures the icon size is consistent */
            color: inherit; /* Inherits the color of the text (green/red) */
        }

.card-footer {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

#billingToggle {
    margin-left: 10px;
    transform: scale(1.2);
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #007bff;
}

    input:checked + .slider:before {
        transform: translateX(25px);
    }

.yearly-rate {
    font-size: 0.9rem;
    color: #555;
}


.hero {
    background: linear-gradient(to right, #daf0f0, #cea33a);
    color: #17191d;
}

.features i {
    color: #cea33a;
}

.call-to-action {
    background-color: #17191d;
}

    .call-to-action .btn-light {
        color: #17191d;
        background-color: #ffffff;
        border: 1px solid #ffffff;
    }

.list-group-item {
    background: transparent;
    border: none;
}

    .list-group-item h5 {
        color: #3d424b;
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #17191d;
}

.btn-primary {
    background-color: #cea33a;
    border: none;
    color: white;
}

    .btn-primary:hover {
        background-color: #b08e2f;
    }

.logo{
    height:100px !important;
    width: 120px !important;
}

.list-group-item {
    margin-bottom: 150px;
}

ol.list-group{
    margin-top: 125px;
}

























