@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
}
header {
    background-color: #f8f9fa; /* Light gray background */
    border-bottom: 1px solid #dee2e6; /* Subtle bottom border */
}

/* Logo Styling */
.logo {
    max-width: 270px; /* Adjust size as needed */
}

/* Slogan Styling */
.slogan {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #313131; /* Bootstrap's secondary text color */
}

/* Phone Number Styling */
.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #01505e; /* Bootstrap's primary color */
    text-decoration: none;
}
.phone-number span{
    font-size: 30px;
    font-weight: bolder;
}
.phone-number:hover {
    text-decoration: underline;
}
/* Promotional Section Styling */
.promo-section {
    background-color: #01505e; /* Light grey background */
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8f9fa;
}

.promo-text {
    font-size: 1.125rem;
    color: #f0f0f0;
    margin-top: 1rem;
}

.btn-primary {
    background-color: #0b48b9;
    border-color: #0b16b9;
}

.btn-primary:hover {
    background-color: #0a139e;
    border-color: #0a139e;
}
/* Offers Section Styling */
.offers-section {
    background-color: #f8f9fa; /* Light grey background */
}

.offer-card {
    background-color: #ffffff;
    border: 2px solid #01505e;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offer-speed {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01505e;
}

.offer-price {
    font-size: 2.50rem;
    font-weight: 600;
    color: #ff5100;
}

.btn-primary {
    background-color: #0b16b9;
    border-color: #0b16b9;
}

.btn-primary:hover {
    background-color: #0a139e;
    border-color: #0a139e;
}
/* Take Work, Play & Gaming Section */
.work-play-section {
    padding: 60px 15px;
    background-color: #fff;
}
.work-play-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.work-play-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}
.work-play-section img {
    width: 100%;
    border-radius: 10px;
}

/* Button Styling */
.btn-learn-more, .btn-call-now {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Learn More Button */
.btn-learn-more {
    background-color: #01505e;
}
.btn-learn-more:hover {
    background-color: #0056b3;
}

/* Call Now Button */
.btn-call-now {
    background-color: #0196b1;
    color: #333;
}
.btn-call-now:hover {
    background-color: #01505e;
    color: #fff;
}
/* Info Section Styling */
.info-section {
    background-color: #01505e; /* Background color */
}

.info-section .col-md-3 {
    position: relative;
    padding: 20px;
}
.info-section h4{
    font-size: 30px;
    font-weight: bold;
}
/* Section Styling */
.pricing-section {
    background-color: #f8f9fa; /* Light grey background */
}

/* Image Styling */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Section Styling */
.text-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.text-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
    margin-top: 10px;
    margin-bottom: 20px;
}

.text-features {
    list-style-type: disc;
    padding-left: 20px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Card Styling */
.price-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.price-text {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-call-now {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #01505e;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-call-now:hover {
    background-color: #003f8c;
    transform: scale(1.05);
}
.assistance-section {
    background-color: #949494; /* Orange Background */
    color: #000000;
}

.assistance-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-call-us {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000000;
    background-color: #01505e;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call-us:hover {
    background-color: #0056b3;
    color: #ff8c00;
    transform: scale(1.05);
}
.premium-section {
    padding: 60px 15px;
    background-color: #0056b3;
    text-align: center;
}
.premium-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.premium-section p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
}
.footer {
    background-color: #01505e;
    color: #ffffff;
}

.footer a {
    color: #ff5100;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #ff7f43;
    text-decoration: underline;
}

.footer-phone {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #dcdcdc;
}

.footer-divider {
    border-top: 1px solid #ffffff;
    opacity: 0.5;
    margin: 20px 0;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #dcdcdc;
    margin-top: 10px;
}
/* Vertical Divider for Larger Screens */
@media (min-width: 768px) {
    .info-section .col-md-3:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 10%;
        right: 0;
        width: 1px;
        height: 80%;
        background-color: #ffffff;
        opacity: 0.5;
    }
}
@media (max-width: 768px) {
    .logo {
        max-width: 180px; /* Adjusted size for mobile devices */
    }
}
/* Horizontal Divider for Smaller Screens */
@media (max-width: 767.98px) {
    .info-section .col-12:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #ffffff;
        opacity: 0.5;
    }
}
@media (max-width: 768px) {
    .work-play-section .row {
        flex-direction: column-reverse;
    }
    .work-play-section img {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .price-card {
        margin-top: 20px;
    }
    .text-title, .text-subtitle {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .footer-phone {
        text-align: center;
    }
    .footer-text {
        text-align: justify;
    }
    .footer-copyright {
        text-align: center;
    }
}