/* write css to hide div with id = ad1 if screen width is less than 500px */
@media (max-width : 980px) {
    #ad1 {
         display: none;
    }
}
.bg-loop {
/* add a white tinted overlay */
background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 20px; /* Adjust this value as needed */
    }
}

.pricing-options {
    margin: 20px 0;
}

.save-badge {
    background: #40E6B4;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 10px;
}

.price {
    font-size: 1.8em;
    font-weight: bold;
}

.price small {
    display: block;
    font-size: 0.5em;
    color: #666;
    margin-top: 5px;
}

.features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.features li:before {
    content: "✓";
    color: #40E6B4;
    position: absolute;
    left: 0;
}

.hover-translate-y:hover {
    transform: translateY(-4px);
}

.bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1);
}

.text-primary {
    color: #0d6efd;
}

.badge {
    padding: 0.5em 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    margin-right: 20px;
    color: #333;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.hero-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.hero-section .col-lg-6 {
    margin-bottom: 20px;
}

.hero-section img {
    margin-top: 20px;
}

@media (min-width: 1000px) {
    .unique-spacer {
        padding: 40px;
    }
}