* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background: #071a2d;
}

:root {
    --primary-color: #071a2d;
    --blue-color: #00b4ff;
    --secondary-color: #f3961c;
    --white: #fff;
}

header {
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
}

.corner-logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: var(--blue-color);
    transform: translateY(-3px);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 60%;
}

.language-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 8px;
}

.language-btn:hover {
    background: var(--blue-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
}

.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(rgba(7,26,45,0.8), rgba(7,26,45,0.8)),
        url("luke-chesser-3rWagdKBF7U-unsplash.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.about-hero h1 {
    font-size: 3rem;
}

.about-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #fffaf0 0%, #fdf1da 100%);
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8a540c;
}

.about-section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
    color: #5a4522;
}

.cards-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #fdf1da 0%, #fff8ec 100%);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-top: 3px solid var(--secondary-color);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #00b4ff;
    box-shadow:
        0 18px 34px rgba(7,26,45,0.14),
        0 0 22px -4px rgba(0, 180, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .card { transition: none !important; }
}

.trust-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #fff8ec 0%, #fdf1da 100%);
}

.trust-section h2 {
    color: #8a540c;
}

.trust-box {
    margin-top: 20px;
    background: white;
    border: 1px solid rgba(243, 150, 28, 0.35);
    border-left: 5px solid var(--secondary-color);
    color: #3f2c0c;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    text-align: left;
    box-shadow: 0 10px 26px rgba(243, 150, 28, 0.12);
}

.cta {
    padding: 60px 8%;
    text-align: center;
    background: #00b4ff;
    color: white;
}

.cta .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: white;
    color: #071a2d;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.cta .btn:hover {
    transform: translateY(-3px);
}

.footer {
    background: #04111f;
    color: white;
    width: 100%;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h2,
.footer-section h3 {
    color: var(--blue-color);
    margin-bottom: 15px;
    text-align: left;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--blue-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--blue-color);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

@media (min-width: 769px) {
    

    
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        width: 200px;
        padding: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section h2,
    .footer-section h3 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }
}

.email {
    white-space: nowrap;
}

.location{
   white-space: nowrap;
}

/* Windows XP Preloader Styling */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* XP Boot screen was black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-wrapper {
    text-align: center;
    width: 300px;
}

.xp-logo {
    color: white;
    margin-bottom: 40px;
    position: relative;
}

.xp-brand {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: left;
    margin-left: 65px;
}

.xp-product {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -1px;
}

.xp-product span {
    color: #ff6600;
    font-size: 1rem;
    vertical-align: top;
    margin-left: 5px;
    font-style: normal;
}

/* The Loading Track */
.xp-loader-container {
    width: 200px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    margin: 0 auto;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

/* The 3 blue blocks */
.xp-loader-bar {
    display: flex;
    gap: 2px;
    position: absolute;
    height: 14px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 1px;
}

@keyframes xp-slide {
    0% { left: -50px; }
    100% { left: 210px; }
}

.xp-footer {
    position: absolute;
    bottom: 50px;
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
}

.xp-mini-logo {
    width: 30px;
    filter: grayscale(1) brightness(2); /* Makes logo white/silver for the dark screen */
    margin-bottom: 10px;
}

/* Windows XP Preloader with Logo Integration */
.xp-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: "Tahoma", "Verdana", sans-serif;
    transition: opacity 0.7s ease;
}

.xp-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.xp-main-logo {
    width: 180px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
    /* Optional: Brightens the logo for the black background */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); 
}

.xp-brand-text {
    color: white;
    text-align: center;
}

.xp-brand {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.xp-product {
    font-size: 2.8rem;
    font-weight: bold;
    font-style: italic;
}

.xp-product span {
    color: #ff6600; /* The classic orange XP text */
    font-size: 1.2rem;
    vertical-align: top;
    font-style: normal;
}

/* Loader Bar Styling */
.xp-loader-container {
    width: 220px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.xp-loader-bar {
    display: flex;
    gap: 3px;
    position: absolute;
    height: 16px;
    animation: xp-slide 2s linear infinite;
}

.xp-segment {
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #2d68d2, #6597e8, #2d68d2);
    border-radius: 2px;
}

@keyframes xp-slide {
    0% { left: -60px; }
    100% { left: 230px; }
}

.xp-footer {
    position: absolute;
    bottom: 40px;
    color: #888;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

.offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #b45309;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10000;
    animation: slideDown 0.4s;
}

.offline-banner__dot {
    line-height: 1;
}

.offline-banner__text {
    line-height: 1.4;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}