/* General Styles */
body {
    font-family: sans-serif;
    background-color: #f3f4f6;
    margin: 0;
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s;
}
.hover-scale:hover {
    transform: scale(1.05);
}

/* Navigation Bar */
.nav-bar {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0 10px;
}

.nav-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: block;
    margin-right: 16px;
}

.nav-menu {
    position: fixed;
    top: 2rem;
    right: 0;
    background-color: #1e3a8a;
    width: 8rem;
    height: calc(100vh - 4rem);
    flex-direction: column;
    padding: 1.5rem;
    list-style: none;
    z-index: 999;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.nav-menu.open {
    visibility: visible;
    transform: translateX(0);
}

.nav-item {
    position: relative;
    margin: 0.5rem 0;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd700;
}

.nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #93c5fd;
}

/* Responsive Navigation */
@media (min-width: 640px) {
    .nav-toggle {
        display: none;
    }
    .nav-menu {
        display: flex;
        position: static;
        background-color: transparent;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        visibility: visible;
        transform: none;
        z-index: auto;
    }
    .nav-item {
        margin: 0 1rem;
    }
    .nav-link {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .nav-item {
        margin: 0 2rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #1e40af;
    color: #ffffff;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 1rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background-color: #facc15;
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #eab308;
}

@media (min-width: 640px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 6rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-text {
        font-size: 1.25rem;
    }
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .hero-text {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 4rem 1rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image {
    width: 100%;
    margin-bottom: 1.5rem;
}

.image-content {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 100%;
}

.about-paragraph {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.about-info {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

.info-item {
    text-align: center;
}

.info-icon {
    font-size: 1.875rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
}

@media (min-width: 640px) {
    .about-section {
        padding: 5rem 1rem;
    }
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    .about-paragraph {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
    .about-image {
        width: 50%;
        margin-bottom: 0;
    }
    .about-text {
        width: 50%;
        padding-left: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-text {
        padding-left: 2.5rem;
    }
}

/* Services Section */
.services-section {
    background-color: #e5e7eb;
    padding: 4rem 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-icon {
    font-size: 2.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 0.875rem;
    color: #4b5563;
}

@media (min-width: 640px) {
    .services-section {
        padding: 5rem 1rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .service-card {
        padding: 2rem;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    .service-title {
        font-size: 1.5rem;
    }
    .service-text {
        font-size: 1rem;
    }
}

/* Industries Section */
.industries-section {
    padding: 4rem 1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.industry-card {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.industry-image {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin-bottom: 1rem;
}

.industry-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industry-text {
    font-size: 0.875rem;
    color: #4b5563;
}

@media (min-width: 640px) {
    .industries-section {
        padding: 5rem 1rem;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .industry-card {
        padding: 1.5rem;
    }
    .industry-image {
        height: 10rem;
    }
    .industry-title {
        font-size: 1.25rem;
    }
    .industry-text {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Section */
.cta-section {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #facc15;
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #eab308;
}

@media (min-width: 640px) {
    .cta-section {
        padding: 5rem 1rem;
    }
    .cta-title {
        font-size: 1.875rem;
    }
    .cta-text {
        font-size: 1.125rem;
    }
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
    .cta-text {
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #111827;
    color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.contact-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 2.5rem;
}

.contact-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-icon.fa-phone {
    color: #60a5fa;
}

.contact-icon.fa-envelope {
    color: #34d399;
}

.contact-icon.fa-map-marker-alt {
    color: #facc15;
}

.contact-title {
    font-size: 1.125rem;
}

.contact-detail {
    font-size: 0.875rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
 
}

.contact-button {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;

}

.contact-button:first-child {
    background-color: #facc15;
    color: #1e3a8a;
}

.contact-button:first-child:hover {
    background-color: #eab308;
}

.contact-button:last-child {
    background-color: #3b82f6;
    color: #ffffff;
}

.contact-button:last-child:hover {
    background-color: #2563eb;
}



@media (min-width: 640px) {
    .contact-section {
        padding: 5rem 1rem;
    }
    .contact-text {
        font-size: 1.25rem;
    }
    .contact-info {
        flex-direction: row;
    }
    .contact-item {
        margin-bottom: 0;
    }
    .contact-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
 

}

.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-item a:hover .contact-icon,
.contact-item a:hover .contact-detail {
    color: #eab308;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 1.5rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand, .footer-links, .footer-social {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-text {
    font-size: 0.875rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.footer-links-list li {
    margin: 0.5rem 0;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    color: #d1d5db;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #e5e7eb;
    transform: scale(1.2);
}

.fa-instagram {
    color: #e1306c;
}

.social-icon.fa-instagram:hover {
    color: #c13584;
}

.social-icon .fa-linkedin {
    color: #0077b5;
}

.social-icon.fa-linkedin:hover {
    color: #005cc5;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-brand, .footer-links, .footer-social {
        text-align: left;
        margin-bottom: 0;
    }
    .footer-links-list {
        display: flex;
        gap: 1rem;
    }
    .footer-links-list li {
        margin: 0;
    }

}