        .bg-wifi {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banners/wifi_banner.png');
            background-size: cover;
            background-position: center;
        }

        
        .icon-wifi {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bff"><path d="M12 3C7.79 3 3.7 4.41.38 7 4.41 12.06 7.89 16.37 12 21.5c4.08-5.08 7.57-9.42 11.62-14.5C20.32 4.41 16.22 3 12 3zm0 2c3.07 0 6.09.86 8.71 2.45l-3.21 3.98C16.26 10.74 14.37 10 12 10c-2.38 0-4.26.75-5.5 1.43L3.27 7.44C5.91 5.85 8.93 5 12 5z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            width: 24px;
            height: 24px;
            display: inline-block;
        }
        .navbar-brand img{
            width: 250px;
        }
        .feature-card {
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
        }
        .pricing-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .pricing-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        .pricing-card.popular {
            border: 2px solid #007bff;
            position: relative;
        }
        .popular-badge {
            position: absolute;
            top: 0;
            right: 20px;
            background: #007bff;
            color: white;
            padding: 5px 15px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            font-size: 12px;
            font-weight: bold;
        }


         /* Left Nav Bar Styles */
        .side-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            z-index: 9999;
            transition: all 0.3s ease;
            overflow-y: auto;
        }
        .side-nav.open {
            left: 0;
        }
        .side-nav__header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .side-nav__close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }
        .side-nav__menu {
            padding: 20px;
        }
        .side-nav__menu a {
            display: block;
            padding: 10px 0;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }
        .side-nav__menu a:hover {
            color: #007bff;
        }
        .side-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }
        .side-nav-overlay.open {
            display: block;
        }
        
        /* Hero Login Form */
        .hero-login {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            max-width: 400px;
            margin-left: auto;
        }
        .hero-login__title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .hero-login__input {
            margin-bottom: 15px;
        }
        .hero-login__input input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .hero-login__actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .hero-login__forgot {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
        }

      .pricing-card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-hover:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15) !important;
  z-index: 10;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    background: #fff;
    color: #0d6efd; /* Bootstrap primary color */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}