:root {
    --primary-color: #5bcef1;
    --secondary-color: #00a2ff;
    --text-color: #333;
    --background-color: #f4f4f4;
    --white: #ffffff;
    --accent-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: url('animated-background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
}

.company-name {
    font-weight: 700;
    font-size: 1.4rem;
    /*letter-spacing: 2px;
    text-transform: uppercase;*/
    color: var(--primary-color);
}

.company-type {
    font-weight: 400;
    font-size: 1.07rem;
    /*letter-spacing: 1px;*/
    color: #000000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

main {
    padding-top: 80px;
}

section {
    background: rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    padding: 80px 5%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(91, 206, 241, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(91, 206, 241, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(91, 206, 241, 0);
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #4ab7d9;
    animation: none;
}

.service-grid, .solutions-grid, .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card, .solution-card, .client-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover, .solution-card:hover, .client-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
}

.vision-mission {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.vision, .mission {
    width: 48%;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.core-values ul {
    list-style-type: none;
    margin-top: 20px;
}

.core-values li {
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: var(--white);
    transition: transform 0.3s ease, background 0.3s ease;
}

.core-values li:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-details, #contact-form {
    width: 48%;
}

#contact-form input, 
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

#contact-form button:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.social-links {
    margin-top: 10px;
}

.social-icon {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Consider implementing a mobile menu */
    }

    .vision-mission {
        flex-direction: column;
    }

    .vision, .mission {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-details, #contact-form {
        width: 100%;
    }
}