.logo {
    height: 45px;
    transition: opacity 0.3s ease-in-out;
    padding-left: 15px;
}

.logo:hover {
    opacity: 0.7;
}

h2
{
    color: rgb(33, 33, 184);
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('index-images/banner.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.header-wrapper header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
}
/* Tabs Styling */
.tabs {
    display: flex;
    justify-content: center;
    background: rgb(5, 5, 5);
    padding: 10px;
}

.tab {
    padding: 20px 40px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    background: #444;
    margin: 0 15px;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.tab:hover {
    background: #666;
}

.tab.active {
    background: rgb(33, 33, 184);
}

/* Tab Content */
.content {
    display: none;
    padding: 20px;
}

.content.active {
    display: block;
}
footer
{
    background-color: #444;
    color: white;
    padding: 15px;
    width: 100%;
    position: fixed;
    bottom: 0;
    width: 100%;
}

h2.support-heading {
    border-top: 1px solid #ccc; /* Light grey line */
    padding-top: 10px; /* Add spacing so text doesn't touch the line */
    margin-top: 20px; /* Space from previous content */
}

h2.center-phone{
    text-align: center;
}

.phone-buttons {
    display: flex;
    justify-content: center;
    gap: 50px; /* Space between buttons */
    margin-top: 10px;
}

.phone-button {
    position: relative;
    width: 150px; /* Adjust button size */
    height: 150px;
    border-radius: 10px;
    overflow: hidden; /* Ensures overlay stays inside */
    transition: transform 0.3s ease;
}

.phone-button:hover {
    transform: scale(1.05); /* Slight zoom effect */
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.phone-button:hover .phone-img {
    filter: brightness(50%); /* Dims the image on hover */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.phone-button:hover .overlay {
    opacity: 1; /* Shows text when hovered */
}

.setup-container {
    width: 80%;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.text {
    width: 50%;
    font-family: Arial, sans-serif;
}

.image {
    width: 50%;
    text-align: right;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .text, .image {
        width: 100%;
    }
    .image img {
        margin-top: 10px;
    }
}

