body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.top-header {
    background-color: #0056b3;
    color: white;
    padding: 0.5rem 0;
    text-align: center;
}
.top-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.contact-bar {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.contact-bar a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}
.contact-bar a:hover {
    color: #fff;
}
.contact-bar i {
    margin-right: 0.3rem;
}
.navbar {
    background-color: #0056b3;
    padding: 0.5rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.nav-link {
    color: white;
    margin: 0 0.75rem;
    font-size: 1rem;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #fff;
}
.social-logos {
    display: flex;
    align-items: center;
}
.social-logos a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-logos a:hover {
    color: #ddd;
}
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), #0056b3;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.btn-hero {
    background-color: #fff;
    color: #0056b3;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    min-height: 48px;
    min-width: 48px;
}
.btn-hero:hover {
    background-color: #ddd;
}
section {
    padding: 4rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #0056b3;
    font-weight: bold;
}
.subsection-title {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
    text-align: center;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.features li {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.features i {
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.industry-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.industry-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.industry-card i {
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.industry-card .card-subtitle {
    color: #0056b3;
    font-weight: bold;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}
.industry-card .card-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.industry-card .learn-more {
    color: #0056b3;
    font-weight: bold;
    text-decoration: underline;
    margin-top: 0.5rem;
    display: inline-block;
    min-height: 48px;
    line-height: 48px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.why-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.why-card:hover {
    transform: translateY(-5px);
}
.why-card i {
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.why-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.why-card h5 {
    color: #0056b3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.cta-section {
    background-color: #f0f0f0;
    text-align: center;
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.services-list li {
    margin: 0.5rem 0;
    font-weight: bold;
    font-size: 1.1rem;
}
.services-list i {
    color: #0056b3;
    margin-right: 0.5rem;
}
.success-ratio {
    font-size: 3rem;
    color: #0056b3;
    font-weight: bold;
    margin: 1rem 0;
}
.cta-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.connecting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.connecting-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.connecting-item:hover {
    transform: translateY(-5px);
}
.connecting-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}
.connecting-item h5 {
    color: #0056b3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.btn-know {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    min-height: 48px;
    min-width: 48px;
}
.btn-know:hover {
    background-color: #004085;
}
.testimonials-section {
    background-color: #f8f9fa;
}
.testimonial-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #0056b3;
}
.testimonial-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
    font-style: italic;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    min-height: 48px;
}
.contact-form .btn-primary {
    background-color: #0056b3;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    min-height: 48px;
    min-width: 48px;
}
.contact-form .btn-primary:hover {
    background-color: #004085;
}
/* Cracker Animation */
.cracker {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffcc00;
    border-radius: 50%;
    opacity: 0;
    animation: cracker 1s ease-out;
    pointer-events: none;
}
@keyframes cracker {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2) translateY(-50px); }
}
/* Custom Modal Styles */
.modal-content {
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-header {
    background-color: #0056b3;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0.75rem 1rem;
}
.modal-title {
    font-size: 1.2rem;
    font-weight: bold;
}
.modal-body {
    padding: 1rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
}
.modal-footer {
    border: none;
    padding: 0.5rem 1rem;
    justify-content: center;
}
.modal-footer .btn-secondary {
    background-color: #0056b3;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}
.modal-footer .btn-secondary:hover {
    background-color: #004085;
}
.modal.fade .modal-dialog {
    transform: translateY(-50px);
    opacity: 0;
}
.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}
.btn-close {
    filter: invert(1);
}
footer {
    background-color: #0056b3;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.footer-links a {
    color: white;
    margin: 0 0.75rem;
    font-size: 1.3rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-info {
    margin: 0.5rem 0;
}
@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .top-header h1 { font-size: 1.2rem; }
    .contact-bar { font-size: 0.8rem; }
    .industries-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.5rem; }
    .subsection-title { font-size: 1.3rem; }
    .btn-hero, .btn-know { padding: 0.5rem; min-height: 48px; min-width: 48px; }
    .social-logos a { font-size: 1.2rem; margin-left: 0.5rem; }
}
@media (min-width: 768px) {
    .industries-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .subsection-title {
        font-size: 2rem;
    }
    .industry-card i,
    .features i,
    .why-card i {
        font-size: 3rem;
    }
    .btn-hero,
    .btn-know {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}