body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Graphik', 'Roboto', 'Arial', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: linear-gradient(to top, #1c1c1c, transparent);
    z-index: -9;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: linear-gradient(to left, #2c2c2c, transparent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    z-index: 100;
}

nav:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    background: rgba(50, 50, 50, 0.9);
}

.logo img {
    height: 25px;
}

.textLogo {
    color: black; /* This sets the font color to white */
}


.menu {
    display: none;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 3px;
    text-decoration: none;
    color: #ddd;
    font-size: 12px;
    opacity: 0;
    transform: translateX(100%); /* Changed from -100% */
}

.menu-item i {
    margin-right: 8px;
    color: #ddd;
    font-size: 14px;
}

.menu-item:hover {
    background-color: #444;
    border-color: #555;
}

.icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-icon {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    z-index: 101;
}

.menu-icon div {
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
}

.search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 1.2em;
    z-index: 101;
    margin-left: auto;
}

.search-icon:hover {
    color: #ffd700;
}

.separator-icon {
    width: 2px;
    height: 30px;
    background-color: white;
}

.side-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Changed from left to right */
    width: 70%;
    height: 100%;
    background: rgba(50, 50, 50, 0.9);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: right 0.3s ease; /* Changed from left to right */
    z-index: 200;
}

.side-nav.open {
    right: 0; /* Changed from left to right */
}

.side-nav .logo {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.side-nav.open .logo {
    opacity: 1;
    transform: translateY(0);
}

.side-nav.open .menu-item {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.side-nav.close .logo {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.side-nav.close .menu-item {
    opacity: 0;
    transform: translateX(100%); /* Changed from -100% */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.side-nav a {
    width: 95%;
    padding: 8px;
    margin: 5px 0;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 3px;
    text-decoration: none;
    color: #ddd;
    font-size: 12px;
}

.side-nav a:hover {
    background-color: #444;
    border-color: #555;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.main-content img {
    height: 100px;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.5em;
    font-weight: 300;
    background: rgba(50, 50, 50, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.construction-message {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: linear-gradient(to left, transparent, transparent);
    color: white;
    font-size: 1em;
    z-index: 300;
}

.marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0%); }
    to { transform: translateX(-100%); }
}

@media (min-width: 769px) {
    .menu {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-left: auto;
    }
    .menu-item {
        font-size: 14px;
    }
}

.search-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 500px;
    padding: 20px;
    background: rgba(50, 50, 50, 0.9);
    border: 1px solid #444;
    border-radius: 5px;
    z-index: 400;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.search-popup.open {
    display: block;
}

.search-popup input[type="text"] {
    width: 93%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 3px;
    background: #444;
    color: white;
}

.search-popup .faqs {
    color: #ddd;
}

.search-popup .faqs p {
    font-weight: bold;
}

.search-popup .faqs ul {
    list-style: none;
    padding: 0;
}

.search-popup .faqs ul li {
    margin: 5px 0;
}


































.internet-service-section {
    background: rgba(28, 28, 28, 0.8); /* Slightly darker, semi-transparent background */
    color: #ffffff;
    text-align: left;
    padding: 20px 20px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    overflow: hidden; /* Prevent scrolling */
    height: auto; /* Automatically adjust height based on content */
    max-height: 100vh; /* Constrain to 100% of the viewport height */
}

.internet-service-section h1,
.internet-service-section h3,
.internet-service-section p,
.cta-button {
    font-family: 'Graphik', 'Roboto', 'Arial', sans-serif;
}
nav + .internet-service-section {
    margin-top: 0;
}

.internet-service-section h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
}
.internet-service-section h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: normal;
    color: #cccccc;
    line-height: 1.4em; /* Adjust line height if needed */
}

.highlight {
    color: #00A4EF;
    font-weight: bold;
    display: inline-block;
    margin-top: -5px; /* Add a little space between the lines */
}


.internet-service-section p {
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 20px;
    color: #dddddd;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007BB5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005f87;
}












.client-logos {
    overflow: hidden;
    width: 100%;
    background: rgba(28, 28, 28, 0.8); /* Slightly darker, semi-transparent background */
    color: #ffffff;
    padding: 20px 0; /* Add padding if needed */
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 15s linear infinite;
}

.marquee-content img {
    height: 50px; /* Adjust the size as needed */
    margin: 0 30px; /* Spacing between logos */
    filter: grayscale(100%); /* Optional: make logos grayscale */
    transition: transform 0.3s, filter 0.3s;
}

.marquee-content img:hover {
    filter: none; /* Remove grayscale on hover */
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}















.internet-service-section {
    background: rgba(50, 50, 50, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 30px 25px; /* Adjust padding for more space */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6); /* Increased shadow for more depth */
    color: white;
    text-align: left; /* Ensure text is left-aligned */
    overflow-y: auto; 
    max-height: 80%; 
    width: 80%; 
    max-width: 600px; 
    margin: 30px auto; /* Increase top/bottom margin */
    font-family: 'Roboto', sans-serif;
    z-index: inherit;
}

.internet-service-section h1 {
    margin-top: 0;
    color: #fff;
    font-size: 2.8rem; /* Slightly larger font size for emphasis */
    font-weight: 700;
    line-height: 1.2;
}

.internet-service-section h3 {
    margin-top: 15px; /* More space between h1 and h3 */
    color: #bbb;
    font-size: 1.6rem; /* Slightly larger for readability */
    font-weight: 400;
}

.internet-service-section h3 .highlight {
    color: #00aaff;
    font-weight: 600;
}

.internet-service-section p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.7; /* Increased line height for readability */
    margin-bottom: 20px;
}

.internet-service-section a.cta-button {
    display: inline-block;
    padding: 12px 25px; /* Adjust padding for better balance */
    background-color: #00aaff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1.1rem; /* Increase font size slightly */
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.internet-service-section a.cta-button:hover {
    background-color: #0088cc; /* Darker blue on hover */
}

.internet-service-section hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin: 25px 0; /* Adjust margin for spacing around the hr */
}




.map-container {
    background: rgba(50, 50, 50, 0.9);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    max-height: 100%;
    width: 80%;
    max-width: 800px; /* Slightly wider for map */
    margin: 20px auto;
    font-family: 'Roboto', sans-serif;
}

.map-container h2 {
    color: #fff;
    margin-top: 0;
    font-size: 2rem;
    font-weight: 600;
}

#map {
    width: 100%;
    height: 400px; /* Adjust map height as needed */
    border-radius: 6px;
    background-color: #333; /* Fallback if map doesn't load */
    margin-top: 15px;
}

.map-container hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin: 20px 0;
}






.plan-nav-slider {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-nav-slider li {
    margin: 5px;
    flex: 1 1 calc(25% - 10px); /* Four columns */
    box-sizing: border-box;
}

.plan-nav-slider-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 1px solid #444; /* Darker border color */
    border-radius: 8px; /* Rounded corners */
    background-color: #2c2c2c; /* Dark grey background */
    color: #f0f0f0; /* Light grey text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Slightly darker shadow */
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for the plan cards */
.plan-nav-slider-box:hover {
    background-color: #3a3a3a; /* Slightly lighter background */
    transform: scale(1.05); /* Scale up the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Enhance the shadow */
}

.plan-card.selected .plan-nav-slider-box {
    background-color: #444; /* Green color for selected state */
    color: white;
    border: 2px solid #444;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Slightly darker shadow */
}

button { width: 100%; padding: 15px 30px; font-size: 1.2em; font-weight: 600; color: white; background-color: #218838; border: none; border-radius: 10px; cursor: pointer; transition: background-color 0.3s, transform 0.3s; margin-top: 20px; }









#output {
    margin-top: 20px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#output h2 {
    margin-top: 0;
    font-size: 1.5em;
    font-weight: 600;
    color: #218838; /* Green color for headers */
}

#output p {
    margin: 10px 0;
    font-size: 1em;
    color: #f0f0f0;
}

#output table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#output th, #output td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
    color: #f0f0f0;
}

#output th {
    background-color: #444;
    font-weight: 600;
}

#output .total-cost {
    font-weight: 600;
    color: #218838;
    font-size: 1.2em;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #444;
    margin: 20px 0;
}



hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin: 20px 0;
}











footer {
    position: relative;
    right: 0%; /* Right margin from the viewport */
    bottom: 0px; /* Bottom margin from the viewport */
    background-color: rgba(50, 50, 50, 0.9); /* Background only covers the text */
    padding: 10px 20px; /* Padding around the text */
    color: #ddd;
    font-size: 0.9rem;
    border-radius: 5px; /* Rounded corners for better look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Small shadow for better visibility */
    text-align: center;
}

footer p {
    margin: 0;
}

