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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #B4D2D9;
    background: #0D0D0D;
    overflow-x: hidden;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0D0D0D;
}

header {
    background: linear-gradient(135deg, rgba(22, 44, 64, 0.95) 0%, rgba(38, 117, 166, 0.4) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #498BA6 0%, #2675A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(38, 117, 166, 0.8));
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(38, 117, 166, 0.5));
    transition: all 0.4s ease;
    animation: subtleGlow 3s ease-in-out infinite;
}

.logo:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(38, 117, 166, 0.9));
}

@keyframes subtleGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(38, 117, 166, 0.5)); }
    50% { filter: drop-shadow(0 0 12px rgba(38, 117, 166, 0.7)); }
}

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #B4D2D9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #B4D2D9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(73, 139, 166, 0.2), rgba(38, 117, 166, 0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #498BA6 0%, #2675A6 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #498BA6;
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(73, 139, 166, 0.15);
}

main {
    margin-top: 0;
}

.hero {
    background: linear-gradient(135deg, rgba(22, 44, 64, 0.8) 0%, rgba(38, 117, 166, 0.3) 100%);
    color: white;
    padding: 10rem 2rem 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 117, 166, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(73, 139, 166, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(73, 139, 166, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(73, 139, 166, 0.5) 2.5px, transparent 2.5px);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    background-position: 0 0, 50px 50px, 100px 25px;
    opacity: 0.6;
    animation: networkPulse 4s ease-in-out infinite;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #498BA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    min-height: 4.5rem;
}

.rotating-text {
    display: inline-block;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    font-weight: 700;
    position: relative;
    animation: textFlip 0.5s ease-in-out;
    text-decoration: underline;
}

@keyframes textFlip {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #B4D2D9;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 210, 217, 0.3), transparent);
    margin: 0 auto 3rem auto;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.partners-section {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.partners-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(180, 210, 217, 0.5);
    margin-bottom: 1rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.partners-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 8 - 4rem * 8));
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    filter: contrast(1.1) saturate(1.1);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: contrast(1.2) saturate(1.2);
}

.partner-logo:hover img {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section.services-section {
    background: #F5F5F5;
    max-width: 100%;
    padding: 6rem 2rem;
    margin-top: 0;
}

.section.services-section .section-title {
    background: linear-gradient(135deg, #162C40 0%, #2675A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.section.services-section .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(38, 117, 166, 0.2);
}

.section.services-section .service-card h3 {
    color: #2675A6;
}

.section.services-section .service-card p {
    color: #162C40;
}

.section.services-section .service-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(38, 117, 166, 0.5);
    box-shadow: 0 20px 40px rgba(38, 117, 166, 0.2);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(22, 44, 64, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(38, 117, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(73, 139, 166, 0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(73, 139, 166, 0.8);
    box-shadow: 0 20px 40px rgba(38, 117, 166, 0.3);
}

.service-card h3 {
    color: #498BA6;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #B4D2D9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

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

.about-text h2 {
    color: #2675A6;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #B4D2D9;
}

.about-image {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(38, 117, 166, 0.3);
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(22, 44, 64, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(38, 117, 166, 0.3);
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out backwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(38, 117, 166, 0.2);
    border-color: rgba(73, 139, 166, 0.6);
}

.value-item h4 {
    color: #498BA6;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #B4D2D9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-info h2 {
    color: #2675A6;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-info p {
    color: #B4D2D9;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
    color: #B4D2D9;
}

.contact-details p:hover {
    transform: translateX(10px);
    color: #498BA6;
}

.contact-form {
    background: rgba(22, 44, 64, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(38, 117, 166, 0.3);
    animation: fadeInRight 0.8s ease-out;
}

.contact-form h3 {
    color: #2675A6;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #B4D2D9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(38, 117, 166, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(13, 13, 13, 0.5);
    color: #B4D2D9;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2675A6;
    box-shadow: 0 0 20px rgba(38, 117, 166, 0.3);
    transform: scale(1.02);
    background: rgba(13, 13, 13, 0.7);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #2675A6 0%, #162C40 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(73, 139, 166, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(38, 117, 166, 0.5);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

footer {
    background: rgba(22, 44, 64, 0.95);
    backdrop-filter: blur(10px);
    color: #B4D2D9;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(38, 117, 166, 0.3);
}

h2.section-title {
    text-align: center;
    color: #2675A6;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(22, 44, 64, 0.98) 0%, rgba(13, 13, 13, 0.98) 100%);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(38, 117, 166, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        transform: none;
        background: rgba(38, 117, 166, 0.2);
    }

    .hero {
        padding: 7rem 1.5rem 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    h2.section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6.5rem 1rem 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}

/* Floating particles effect */
.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: rgba(38, 117, 166, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}