* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #F5F5F5;
}
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
}
.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}
.hamburger span {
    background: #F5F5F5;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 8px;
}
.hamburger span:nth-child(3) {
    top: 16px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}
.canvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #E8ECEF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 999;
    padding-top: 60px;
}
.canvas-menu.active {
    transform: translateX(0);
}
.canvas-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}
.canvas-links li {
    margin: 20px 0;
}
.canvas-links a {
    color: #003087;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.canvas-links a:hover {
    color: #00C4B4;
}
.canvas-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.social-item {
    display: flex;
    align-items: center;
}
.social-icon i {
    color: #003087;
    font-size: 24px;
    transition: color 0.3s ease;
}
.social-icon:hover i {
    color: #00C4B4;
}
.contact-text {
    color: #003087;
    font-size: 18px;
    margin-left: 10px;
}
.hero {
    height: 100vh;
    background: url('images/1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}
.hero-content {
    max-width: 700px;
    background: rgba(0, 48, 135, 0.8);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    top: -50px;
    left: 20px;
}
.hero-text h1 {
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.hero-text h1:hover {
    transform: translateY(-5px);
}
.hero-text h2 {
    font-size: 32px;
    font-weight: 400;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.hero-text h2:hover {
    transform: translateY(-5px);
}
.hero-text p {
    font-size: 22px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}
.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 48, 135, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-left: 20px;
}
.hero-contact p {
    font-size: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}
.contact-button {
    display: flex; /* Изменено с inline-block на flex для центрирования */
    justify-content: center; /* Центрирование по горизонтали */
    align-items: center; /* Центрирование по вертикали */
    padding: 12px 25px;
    background: #00C4B4;
    color: #003087;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.contact-button:hover::before {
    width: 300px;
    height: 300px;
}
.contact-button:hover {
    background: #F5F5F5;
    transform: scale(1.05);
}
.about {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3C5A99 0%, #003087 100%);
    position: relative;
}
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(60, 90, 153, 0), rgba(0, 48, 135, 0.2));
}
.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    width: 50%;
    padding-right: 40px;
}
.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.about-text h2:hover {
    transform: translateY(-3px);
}
.underline {
    width: 80px;
    height: 4px;
    background: #00C4B4;
    margin: 0 auto 40px;
    transition: width 0.3s ease;
}
.about-text h2:hover + .underline {
    width: 120px;
}
.about-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.about-image {
    width: 50%;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.about-image img:hover {
    transform: scale(1.05);
}
.philosophy {
    padding: 100px 40px;
    background: #E8ECEF;
    text-align: center;
    position: relative;
}
.philosophy h2 {
    font-size: 48px;
    font-weight: 700;
    color: #003087;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.philosophy h2:hover {
    transform: translateY(-3px);
}
.philosophy h2:hover + .underline {
    width: 120px;
}
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}
.philosophy-content .highlight {
    font-size: 28px;
    font-weight: 700;
    color: #00C4B4;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.philosophy-content .highlight:hover {
    transform: translateY(-3px);
}
.philosophy-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #003087;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.services {
    padding: 120px 40px;
    background: #E8ECEF;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.1;
    z-index: 0;
}
.services h2 {
    font-size: 48px;
    font-weight: 700;
    color: #003087;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.services h2:hover {
    transform: translateY(-3px);
}
.services h2:hover + .underline {
    width: 120px;
}
.services-grid {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    z-index: 1;
}
.services-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.services-row-offset {
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #003087;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 196, 180, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover::before {
    opacity: 1;
}
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}
.service-card:hover h3 {
    transform: translateY(-5px);
}
.service-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #F5F5F5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    transition: transform 0.4s ease;
}
.service-card:hover p {
    transform: translateY(-5px);
}
.svg-network {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.network-main {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawNetwork 4s ease forwards, swayNetworkMain 6s ease-in-out infinite;
}
.network-node {
    animation: pulseNode 2s ease-in-out infinite;
}
.network-link {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawNetwork 3s ease forwards 1s, swayNetworkLink 5s ease-in-out infinite 1s;
}
@keyframes drawNetwork {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes swayNetworkMain {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -10px);
    }
}
@keyframes swayNetworkLink {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 5px);
    }
}
@keyframes pulseNode {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.network-main.shake, .network-link.shake, .network-node.shake {
    animation: shakeNetwork 0.5s ease;
}
@keyframes shakeNetwork {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5px, -5px);
    }
    50% {
        transform: translate(-5px, 5px);
    }
    75% {
        transform: translate(3px, -3px);
    }
}
.why-partner {
    padding: 120px 40px;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    position: relative;
    min-height: 800px;
}
.why-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 135, 0.7);
    z-index: 0;
}
.why-partner h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.why-partner h2:hover {
    transform: translateY(-3px);
}
.why-partner h2:hover + .underline {
    width: 120px;
}
.why-content {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.why-item {
    background: rgba(245, 245, 245, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.why-item i {
    color: #00C4B4;
    font-size: 40px;
    margin-bottom: 20px;
}
.why-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.why-item p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.contact {
    padding: 100px 40px;
    background: url('images/10.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 135, 0.7);
    z-index: 0;
}
.contact h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.contact h2:hover {
    transform: translateY(-3px);
}
.contact h2:hover + .underline {
    width: 120px;
}
.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.contact-info p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.contact-info p:hover {
    color: #00C4B4;
    transform: translateY(-3px);
}
.contact-info i {
    color: #00C4B4;
    margin-right: 10px;
    font-size: 24px;
}
.contact-socials {
    display: flex;
    gap: 30px;
}
.contact-socials .social-icon {
    font-size: 40px;
    color: #F5F5F5;
    transition: transform 0.4s ease, color 0.4s ease;
}
.contact-socials .social-icon:hover {
    transform: scale(1.3) rotate(15deg);
    color: #00C4B4;
}
.footer {
    padding: 40px 20px;
    background: #3C5A99;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}
.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    color: #00C4B4;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.footer-links li a {
    color: #F5F5F5;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}
.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00C4B4;
    transition: width 0.3s ease;
}
.footer-links li a:hover::after {
    width: 100%;
}
.footer-links li a:hover {
    color: #00C4B4;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: #F5F5F5;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer-socials a:hover {
    transform: scale(1.2);
    color: #00C4B4;
}
.footer-bottom {
    border-top: 1px solid rgba(245, 245, 245, 0.2);
    padding-top: 20px;
}
.footer-bottom p {
    font-size: 16px;
    color: #F5F5F5;
}
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}
@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 20px;
        top: 0;
        left: 0;
    }
    .hero-text h1 {
        font-size: 48px;
    }
    .hero-text h2 {
        font-size: 28px;
    }
    .hero-text p {
        font-size: 18px;
    }
    .hero-contact {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
    .hero-contact p {
        font-size: 16px;
    }
    .contact-button {
        font-size: 18px;
        padding: 12px 24px;
    }
    .about-content {
        flex-direction: column;
    }
    .about-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .about-text h2 {
        font-size: 36px;
    }
    .about-text p {
        font-size: 18px;
    }
    .about-image {
        width: 100%;
    }
    .about-image img {
        height: 300px;
    }
    .philosophy h2 {
        font-size: 36px;
    }
    .philosophy-content .highlight {
        font-size: 24px;
    }
    .philosophy-content p {
        font-size: 18px;
    }
    .services h2 {
        font-size: 36px;
    }
    .services-row {
        flex-direction: column;
        gap: 20px;
    }
    .services-row-offset {
        flex-direction: column;
        max-width: 100%;
    }
    .service-card {
        min-height: auto;
    }
    .service-image {
        height: 150px;
    }
    .service-card h3 {
        font-size: 24px;
    }
    .service-card p {
        font-size: 16px;
    }
    .svg-network {
        display: none;
    }
    .why-partner h2 {
        font-size: 36px;
    }
    .why-content {
        grid-template-columns: 1fr;
    }
    .why-partner {
        min-height: auto;
    }
    .why-item i {
        font-size: 32px;
    }
    .why-item h3 {
        font-size: 24px;
    }
    .why-item p {
        font-size: 18px;
    }
    .contact h2 {
        font-size: 36px;
    }
    .contact-info p {
        font-size: 18px;
    }
    .contact-info i {
        font-size: 20px;
    }
    .contact-socials .social-icon {
        font-size: 32px;
    }
    .footer-logo h3 {
        font-size: 24px;
    }
    .footer-links li a {
        font-size: 16px;
    }
    .footer-socials a {
        font-size: 20px;
    }
    .footer-bottom p {
        font-size: 14px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}