/* Global */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}
header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1200px;
    margin: auto;
}
header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #003366;
}

/* Page Title */
.page-title {
    font-size: 28px;
    font-weight: 600;
    margin: 30px auto 10px auto;
    width: 85%;
    max-width: 1200px;
    color: #003366;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-title .bar {
    color: #007bff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

/* Sections */
.section {
    padding: 60px 0;
}
.section-title {
    font-size: 32px;
    text-align: center;
    color: #003366;
    margin-bottom: 40px;
}

/* Reusable Card Style */
.card, .value-card, .why-card, .industry-card, .service-card, .highlight-card, .contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}
.card:hover, .value-card:hover, .why-card:hover, .industry-card:hover, .service-card:hover, .highlight-card:hover, .contact-card:hover {
    transform: translateY(-5px);
}

/* Card Text & Images */
.card h3, .value-card h4 {
    color: #003366;
    margin-bottom: 15px;
}
.value-card h4 { margin-bottom: 10px; font-size: 18px; font-weight: 700; }
.card p, .value-card p, .why-card p, .industry-card p, .service-card p, .highlight-card p, .contact-card p {
    color: #555;
    font-size: 15px;
    margin: 0;
}
.why-card p, .industry-card p, .service-card p, .highlight-card p {
    color: #003366;
    font-weight: 600;
    font-size: 16px;
}
.card img, .value-card img, .why-card img, .industry-card img, .service-card img, .highlight-card img, .contact-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Grids */
.cards-container, .values-grid, .why-grid, .industries-grid, .services-grid, .highlights-grid, .contact-cards {
    display: grid;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.cards-container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.highlights-grid { grid-template-columns: repeat(3, 1fr); }
.contact-cards { grid-template-columns: repeat(3, 1fr); }


/* Contact Info Fix */
.contact {
    width: 100%; /* make container full width */
    display: block; /* ensure block layout */
    text-align: right; /* default desktop */
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* full width */
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: flex-end; /* right-align on desktop */
}

.contact-info li i {
    margin-right: 8px;
    color: white;
    flex-shrink: 0;
}

.no-logo .fa-phone {
        color: #222;
    }

/* Responsive fix for small screens */
@media (max-width: 480px) {
    .contact {
        text-align: left !important; /* force container left */
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .contact-info {
        text-align: left !important;
    }

    .contact-info li {
        justify-content: flex-start !important; /* li content left */
    }
}

  
/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: 'Arial', sans-serif;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-section h3 { font-size: 1.5rem; margin-bottom: 15px; color: #ffcc00; }
.footer-info { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-info .address, .footer-info .contact { flex: 1; min-width: 200px; }
.footer-info .contact { text-align: right; }
.footer-bottom { text-align: center; margin-top: 30px; font-size: 0.9rem; color: #aaa; }
.mail { color: white; }

/* Bullet List */
.bullet-list { list-style: none; max-width: 700px; margin: auto; padding-left: 0; }
.bullet-list li { margin-bottom: 12px; font-size: 18px; color: #444; padding-left: 25px; position: relative; }
.bullet-list li::before { content: "•"; color: #00a86b; font-size: 24px; position: absolute; left: 0; top: -2px; }
.note-text { text-align: center; font-style: italic; color: #777; margin-top: 10px; }

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .values-grid, .why-grid, .industries-grid, .services-grid, .highlights-grid, .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-container, .cards-container, .footer-info { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 550px) {
    .values-grid, .why-grid, .industries-grid, .services-grid, .highlights-grid, .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        text-align: left;
    }
    .footer-info .contact {
        text-align: left;
    }
}
