/* Global Styles */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004080;
    --secondary-color: #00aaff;
    --light-color: #f4f4f4;
    --dark-color: #333;
    --gray-color: #777;
    --white-color: #fff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

.section {
    padding: 80px 0;
}

    .section h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 50px;
        color: var(--primary-dark);
        position: relative;
    }

        .section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto;
        }

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white-color);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .header h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        animation: fadeInDown 1s ease;
    }

.tagline {
    font-size: 1.0rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Navigation */
.navbar {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

    .navbar ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 20px 0;
    }

        .navbar ul li {
            margin: 0 15px;
        }

            .navbar ul li a {
                color: var(--dark-color);
                font-weight: 600;
                transition: all 0.3s ease;
                padding: 5px 10px;
                border-radius: 5px;
            }

                .navbar ul li a:hover {
                    color: var(--primary-color);
                    background: rgba(0, 102, 204, 0.1);
                }

/* About Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission, .vision {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

    .mission:hover, .vision:hover {
        transform: translateY(-10px);
    }

    .mission h3, .vision h3 {
        color: var(--primary-dark);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

        .mission h3 i, .vision h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Partners Section */
.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

    .partner-card:hover {
        transform: translateY(-10px);
    }

.partner-logo {
    background: var(--primary-color);
    color: var(--white-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.partner-card h3 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.partner-card h4 {
    margin: 20px 0 10px;
    color: var(--gray-color);
}

.partner-card ul {
    list-style-position: inside;
}

    .partner-card ul li {
        margin-bottom: 8px;
    }

/* Clients Section */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: var(--white-color);
    color: var(--primary-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

    .client-logo:hover {
        transform: scale(1.05);
        background: var(--primary-color);
        color: var(--white-color);
    }

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-10px);
    }

    .product-card h3 {
        color: var(--primary-dark);
        margin-bottom: 15px;
    }

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    margin: 20px 0 10px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

    .contact-info h3 i {
        margin-right: 10px;
        color: var(--secondary-color);
    }

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

    .footer-links ul li {
        margin-bottom: 10px;
    }

        .footer-links ul li a {
            color: var(--light-color);
            transition: all 0.3s ease;
        }

            .footer-links ul li a:hover {
                color: var(--secondary-color);
                padding-left: 5px;
            }

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white-color);
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .navbar ul {
        flex-wrap: wrap;
    }

        .navbar ul li {
            margin: 5px 10px;
        }

    .section {
        padding: 60px 0;
    }

        .section h2 {
            font-size: 1.8rem;
        }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .mission-vision,
    .service-grid,
    .partner-cards,
    .contact-container {
        grid-template-columns: 1fr;
    }
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .client-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

@media (max-width: 768px) {
    .client-logos {
        gap: 20px;
    }

    .client-logo {
        width: 120px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        gap: 15px;
    }

    .client-logo {
        width: 100px;
        height: 70px;
    }