/* Basic reset and container */
body, h1, h2, h3, p, ul, li, form, fieldset, legend {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

h2 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.site-header {
    background-image: url('/Milkyway%20image.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 4px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 14, 43, 0.28);
    z-index: 0;
}

.site-header .container {
    position: relative;
    z-index: 1;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-small {
    height: 135px;
    width: auto;
    max-width: 360px;
    flex-shrink: 0;
}

.header-top a:has(.logo-small) {
    display: flex;
    flex-shrink: 0;
    border: none;
    outline: none;
    text-decoration: none;
}

.header-top a:has(.logo-small):hover {
    border-bottom: none;
}

.logo-header {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 4px;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    flex: 1;
}

.site-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-header nav a:hover {
    color: #dbe9ff;
    border-bottom: 2px solid #dbe9ff;
}

.hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    opacity: 1;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero .hero-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 30px;
    line-height: 1.7;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.value-prop {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
    color: #fff;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.45);
    z-index: 1;
}

.value-prop .container {
    position: relative;
    z-index: 2;
}

.value-prop .main-message {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    background: #f5f5f5;
    padding: 60px 0;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #0055aa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
    color: #003366;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-box p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.global-network-box {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    min-height: 180px;
}

.global-network-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.75);
    border-radius: 3px;
}

.global-network-box h4,
.global-network-box p {
    position: relative;
    z-index: 2;
    color: #fff;
}

.about-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    text-align: center;
    position: relative;
    color: #fff;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.5);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-section p strong {
    color: #fff;
}

.cta-section {
    background: linear-gradient(135deg, #0b5ea8 0%, #2f7cc7 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.5);
    z-index: 1;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.cta-section p,
.cta-section a,
.cta-section .container,
.cta-section .cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-primary {
    display: inline-block;
    margin-top: 20px;
    background: #0055aa;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button-primary:hover {
    background: #004080;
}

.button-secondary {
    display: inline-block;
    margin-top: 20px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: #fff;
    color: #003366;
}

footer.site-footer {
    background: linear-gradient(to right, #cc0000, #ffffff 50%, #003399);
    color: #000;
    text-align: left;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0055aa;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #000;
    margin: 0;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 12px 0 2px;
}

.payment-logo-img {
    width: 54px;
    height: 34px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
    padding: 6px 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

fieldset {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
}

legend {
    font-weight: bold;
}

label {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
input[type="file"],
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

input[type="file"] {
    padding: 3px;
}

select {
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.button {
    background: #0055aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.button:hover {
    background: #003366;
}

.industry-list {
    list-style: none;
    padding-left: 0;
}

.industry-list li {
    margin-bottom: 8px;
}

.industries-showcase {
    margin: 40px 0;
    text-align: center;
}

.industries-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.industries-list-section {
    margin-top: 60px;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 5px;
}

.industries-list-section h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.industries-list-section .industry-list {
    columns: 2;
    column-gap: 40px;
    margin-bottom: 30px;
}

.industries-list-section .industry-list li {
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-left: 3px solid #0055aa;
    break-inside: avoid;
}

.industries-footer {
    text-align: center;
    color: #555;
    font-style: italic;
    margin-top: 30px;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.info-block {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid #0055aa;
}

.info-block h3 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.info-block p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-block a {
    color: #0055aa;
    text-decoration: none;
}

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

.contact-form-section {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 5px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #003366;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: Arial, sans-serif;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
}

/* Certifications Page */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.cert-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 5px;
    border-left: 4px solid #0055aa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-box h3 {
    color: #003366;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.cert-box p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

.certification-info {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    margin-top: 60px;
    border: 2px solid #0055aa;
}

.certification-info h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.certification-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.quality-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.quality-list li {
    background: #f5f5f5;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-left: 3px solid #0055aa;
    color: #555;
}

/* Stats Section */
.stats-section {
    background: #f2f8ff;
    color: #003366;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0055aa;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
    color: #335;
    margin: 0;
}

/* Process Section */
.process-section {
    background-image: url('../../How it works image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
}

.process-section h3 {
    text-align: center;
    color: #c62828;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #0055aa;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 15px;
}

.process-step h4 {
    color: #003366;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Security Section */
.security-section {
    background: #f5faff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #a8c8e8;
    border-bottom: 1px solid #a8c8e8;
}

.security-section p {
    color: #003366;
    font-size: 1rem;
    margin: 0;
}

/* Case Studies Page */
.case-study {
    background: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
    border-left: 5px solid #0055aa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-study h3 {
    color: #003366;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.case-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.industry-tag, .cert-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
}

.industry-tag {
    background: #0055aa;
    color: #fff;
}

.cert-tag {
    background: #28a745;
    color: #fff;
}

.case-study p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.case-study ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.case-study ul li {
    background: #fff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 3px solid #28a745;
    color: #555;
}

.customer-review {
    margin-top: 18px;
    padding: 14px 16px;
    background: #eef6ff;
    border-left: 4px solid #0055aa;
    border-radius: 4px;
}

.customer-review::before {
    content: "★★★★★";
    display: block;
    color: #f4b400;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-quote {
    margin: 0;
    font-style: italic;
    color: #1f3552;
}

.review-author {
    margin: 8px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #003366;
}

.cta-case-studies {
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
    margin-top: 40px;
}

.cta-case-studies h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-case-studies p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
