:root {
    --primary-color: #333;
    --secondary-color: #f4f4f4;
    --font-family: 'Neuton', sans-serif;
    --primary-font-color: #333;
    --secondary-font-color: #fff;
    --accent-color: #09f;
}

body {
    font-family: var(--font-family);
    margin: 0;
    background-color: var(--secondary-color);
    color: var(--primary-font-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: var(--primary-color);
    color: var(--secondary-font-color);
    padding: 1rem 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-title h1 {
    margin: 0;
    font-size: 2.2rem;
}

.header-title p {
    margin: 0;
    font-size: 1.1rem;
    color: #ccc;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--secondary-font-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

main ul {
    list-style: none;
    padding-left: 0;
}

main ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

main ul li::before {
    content: '\f101'; /* Font Awesome angle-double-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 0.75rem;
    margin-top: 4px; /* Adjust vertical alignment */
}


footer {
    text-align: center;
    padding: 2rem 1rem;
}

footer nav ul {
    justify-content: center;
    flex-wrap: wrap;
}

footer nav li::before {
    content: none;
}

footer nav li {
    margin: 0.5rem 1.5rem;
}

#copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.9); display: flex;
    justify-content: center; align-items: center; font-size: 2rem; z-index: 1000;
}

.spinner {
    border: 5px solid rgba(0, 0, 0, 0.1); width: 50px; height: 50px;
    border-radius: 50%; border-left-color: var(--accent-color);
    animation: spin 1s ease infinite;
}

.home-hero {
    position: relative;
    height: 800px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('images/1pSHCGc3P0yES4GG80f5oQ_400.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    padding: 0 4rem 4rem;
}

.hero-text h1 {
    font-size: 4rem;
}

.hero-text h2 {
    padding: 0;
}

.page-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.page-heading h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-heading p {
    font-size: 1.2rem;
    color: #666;
}

.services-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-font-color);
    text-align: center;
}

.services-hero h1 {
    margin: 0 0 1rem 0;
    font-size: 3rem;
}

.services-hero p {
    margin: 0;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-container h2,
.map-container h2 {
    margin-top: 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    margin-right: 1rem;
    color: var(--accent-color);
}

.contact-info a {
    color: var(--primary-font-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.link-separator {
    margin: 0 0.5rem;
}

.contact-form-container {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.contact-form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--secondary-font-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #007acc;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.services-intro {
    text-align: center;
    padding: 3rem 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure card fills the link */
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-width: 100%;
    height: auto;
}

.card h3 {
    margin: 1rem 0 0.5rem;
}

.card p {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1; /* Make the paragraph fill available space */
}

.intro-quote-block {
    background-color: #eee;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-quote-block p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-quote-block p:last-child {
    margin-bottom: 0;
}

.issues-comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.issues-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.issues-column ul {
    margin: 0;
}

.issues-column li i {
    display: none; /* Hide the old icons */
}

.watermark-section {
    position: relative;
    margin-bottom: 2rem;
}

.watermark-image {
    background-image: url('/images/serverbank.jpg');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-watermark-section {
    position: relative;
    height: 400px; /* Or adjust as needed */
    margin: 2rem 0;
}

.about-watermark-section .watermark-bg {
    background-image: url('/images/Building.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.watermark-content {
    position: relative;
    text-align: center;
    padding: 4rem 0;
}

.cloud-image {
    height: 100px;
    margin-bottom: 100px;
}

.watermark-content h2 {
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.detailed-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.small-server-image {
    width: 25%;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-title {
        margin-bottom: 1rem;
    }
    
    header nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    header nav li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .home-hero {
        height: auto;
        padding: 6rem 2rem;
        align-items: center;
    }

    .hero-text {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
        padding: 0;
    }
    
    .page-heading h1 { font-size: 2.5rem; }
    .service-cards, .service-section {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .issues-comparison-container {
        grid-template-columns: 1fr;
    }

    .detailed-services {
        grid-template-columns: 1fr;
    }

    footer nav ul {
        flex-direction: column;
    }

    footer nav li {
        margin: 0.5rem 0;
    }
}
