* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    background: #ffffff;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
header {
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s;
}
header.scrolled {
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}
.logo a {
    text-decoration: none;
    color: inherit;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
nav a.active {
    color: #1a5490;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5490;
    transition: width 0.3s;
}
nav a:hover::after,
nav a.active::after {
    width: 100%;
}
nav a:hover {
    color: #1a5490;
}
.hero {
    background: linear-gradient(135deg, #1a5490 0%, #2c5aa0 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2c5aa0 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #ffffff;
}
.btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-secondary:hover {
    background: #ffffff;
    color: #1a5490;
}
.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a5490;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #ffffff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #1a5490;
}
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.service-card > div {
    padding: 2rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
    font-weight: 700;
}
.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.service-link {
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}
.service-link:hover {
    gap: 1rem;
}
.stats {
    background: linear-gradient(135deg, #1a5490 0%, #2c5aa0 100%);
    color: #fff;
    padding: 5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.stat.visible {
    opacity: 1;
    transform: translateY(0);
}
.stat h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.case-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.case-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.case-content {
    padding: 2rem;
}
.case-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #e8f0f8;
    color: #1a5490;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
    font-weight: 700;
}
.case-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.case-link {
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.testimonials {
    background: #ffffff;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a5490, #2c5aa0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.author-info h4 {
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.author-info p {
    color: #666;
    font-size: 0.9rem;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.value-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.value-card h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}
.value-card p {
    color: #666;
    line-height: 1.8;
}
.team-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
}
.team-card h3 {
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.team-role {
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.team-bio {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}
.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5490;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #1a5490, #2c5aa0);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
}
.cta-section {
    background: linear-gradient(135deg, #1a5490 0%, #2c5aa0 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-section .btn {
    background: #fff;
    color: #1a5490;
}
.cta-section .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}
.footer-section p,
.footer-section a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}
.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.badge {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
}
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-modal.active {
    display: block;
    opacity: 1;
}
.modal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: #fff;
    position: relative;
    border-radius: 8px;
    animation: fadeInUp 0.5s ease-out;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1a5490;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #2c5aa0;
}
.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 8px;
}
.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a5490;
}
.modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}
.modal-detail-item h4 {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.modal-detail-item p {
    color: #333;
    font-size: 1.1rem;
}
::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .contact-form {
        margin-top: 2rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    section > .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}

