/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #2a5ca0, #3a7bd5);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-container {
    flex: 1;
    width: 30%;
}

.logo {
    
    font-size: 7.0rem;
    font-family: 'Niagara Solid' !important;
    font-family: 
    border-radius: 0px;
    padding: 0px;
    max-width: 100%;
}

.slogan {
    flex: 2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #e8f4ff;
    width: 40%;
}

.company-info {
    flex: 1;
    text-align: right;
    font-size: 1.0rem;
    width: 30%;
}

.company-name {
    font-weight: normal;
    margin-bottom: 0px;
    color: #e8f4ff;
    font-size: 1.3rem;
}

/* Navigation Styles */
.main-nav {
    background-color: #2a5ca0;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-direction: row;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 40px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

    .nav-link:hover {
        background-color: #3a7bd5;
    }

.nav-item:last-child .nav-link {
    border-right: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 3px solid #cc0000;
}

    .dropdown-content a {
        display: block;
        padding: 12px 16px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s;
    }

        .dropdown-content a:hover {
            background-color: #f0f5ff;
            color: #2a5ca0;
        }

.nav-item:hover .dropdown-content {
    display: block;
}

.nav-item:last-child {
    margin-left: auto;
}


/* Body Content Styles */
.main-content {
    min-height: 500px;
    padding: 10px 0;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin: 10px 0;
    border-radius: 5px;
}

.content-placeholder {
    text-align: center;
    padding: 0px 10px;
    color: #666;
}

    .content-placeholder h1 {
        color: #2a5ca0;
        margin-bottom: 0px;
    }

/* Footer Styles */
footer {
    background: linear-gradient(to right, #3a7bd5, #2a5ca0);
    color: white;
    padding: 5px 0 5px;
}

.footer-links {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0px;
}

    .footer-links td {
        padding: 0px 0px;
        vertical-align: top;
    }

.td-top {
    vertical-align: top;
}

.td-left {
    text-align: left;
}

.footer-title {
    font-weight: 500;
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 1.1rem;
}

.footerlink {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: -15px;
    transition: color 0.3s;
}

    .footerlink:hover {
        color: white;
        text-decoration: underline;
    }

.copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Enhanced Mobile Responsive Styles */
@@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .header-top {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .logo-container, .slogan, .company-info {
        margin-bottom: 15px;
        width: 100%;
    }

    .logo {
        height: 50px;
        max-width: 200px;
    }

    .slogan {
        font-size: 1.2rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .company-info {
        text-align: center;
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-link {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        font-size: 1rem;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .main-content {
        margin: 15px 0;
        padding: 20px 0;
        min-height: 400px;
    }

    .content-placeholder {
        padding: 30px 15px;
    }

        .content-placeholder h1 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

    .footer-links {
        display: block;
    }

        .footer-links tr {
            display: flex;
            flex-direction: column;
        }

        .footer-links td {
            width: 100%;
            margin-bottom: -10px;
            padding: 0 0px;
            text-align: center;
        }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .footerlink {
        font-size: 1rem;
        margin-bottom: -10px;
        padding: 0px 0;
    }
}

@@media (max-width: 480px) {
    .slogan {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .company-info {
        font-size: 0.85rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .logo {
        height: 45px;
        max-width: 180px;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .content-placeholder {
        padding: 20px 10px;
    }

        .content-placeholder h1 {
            font-size: 1.3rem;
        }

    .footer-links td {
        padding: 0 10px;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footerlink {
        font-size: 0.95rem;
    }

    .copyright {
        font-size: 0.85rem;
        padding: 10px 0;
    }
}

/* Touch device improvements */
.nav-link, .footerlink, .dropdown-content a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link {
    justify-content: center;
}

/*Contact Us Card*/
.contact-card {
    display: inline-block;
    width: 150px;
    padding: 15px 10px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .contact-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        background: linear-gradient(135deg, #f44336, #d32f2f);
    }

    .contact-card:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
