﻿/* ---------------------------------- */
/* GLOBAL STYLES & RESET */
/* ---------------------------------- */
:root {
    --primary-color: #0056b3; /* Darker Blue */
    --secondary-color: #28a745; /* Green */
    --accent-color: #007BFF; /* Lighter Blue */
    --text-dark: #333;
    --text-light: #666;
    --bg-dark: #000000; /* Black */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1, h2, h3 {
    color: var(--text-dark);
}

/* Utility container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------------------------- */
/* NAVIGATION BAR */
/* ---------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: var(--bg-dark);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--white);
}

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

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

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

nav ul li a {
    color: var(--white);
    font-weight: 400;
    transition: color 0.3s;
}

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

/* ---------------------------------- */
/* HERO SECTION */
/* ---------------------------------- */
.hero-section {
    background: #000;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.specialties span {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------- */
/* CLIENTS SECTION */
/* ---------------------------------- */
.clients-section {
    padding: 100px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.clients-section h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.clients-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.clients-grid img:hover {
    filter: grayscale(0%);
}

/* ---------------------------------- */
/* SERVICES SECTION */
/* ---------------------------------- */
.services-section {
    padding: 100px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    animation: slideInRight 1s ease-out 0.5s both;
}

.services-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.services-section p {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-links a {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------- */
/* SOLUTION SECTION */
/* ---------------------------------- */
.solution-section {
    padding: 100px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    animation: fadeIn 1s ease-out 0.6s both;
}

.solution-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.solution-section p {
    font-size: 1.2em;
    color: var(--text-light);
    margin: 0 auto 40px auto;
    max-width: 760px;
}

.solution-card {
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.solution-card:last-child {
    margin-bottom: 0;
}

.solution-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--white);
}

.solution-card p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #d1d5db;
}

.solution-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.solution-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* ---------------------------------- */
/* PARTNERS SECTION */
/* ---------------------------------- */
.partners-section {
    padding: 100px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    animation: slideInLeft 1s ease-out 0.7s both;
}

.partners-section h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partners-grid img:hover {
    filter: grayscale(0%);
}

/* ---------------------------------- */
/* NEWS SECTION */
/* ---------------------------------- */
.news-section {
    padding: 100px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    animation: slideInRight 1s ease-out 0.9s both;
}

.news-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.news-section p {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background-color: #000;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

.news-item h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4em;
}

.news-item p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.news-item a {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

/* ---------------------------------- */
/* FOOTER */
/* ---------------------------------- */
.footer {
    background-color: var(--bg-dark);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex-basis: 20%;
    min-width: 150px;
    padding: 10px 0;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-media {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #444;
}

.social-media a {
    color: #ccc;
    margin: 0 15px;
    display: inline-block;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 0.9em;
    color: #999;
}

/* ---------------------------------- */
/* ANIMATIONS */
/* ---------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }
    nav ul {
        flex-direction: column;
        margin-top: 15px;
        text-align: center;
        padding: 0;
    }
    nav ul li {
        margin: 10px 0;
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.8em;
    }
    
    .specialties {
        flex-direction: column;
        align-items: center;
    }
    
    .clients-grid, .partners-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .service-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
