:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
nav {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
nav.scrolled {
    background-color: #fff;
    padding: 0.5rem 0;
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.logo:hover {
    color: var(--secondary-color);
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: var(--secondary-color);
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}
.nav-links a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}
.hero {
    background: var(--gradient);
    color: white;
    padding: 180px 0 120px;
    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(255,255,255,0.1) 10%, transparent 10%),
    radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    transform: rotate(45deg);
    animation: moveBackground 20s linear infinite;
}
@keyframes moveBackground {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(100px) rotate(45deg);
    }
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}
.features {
    padding: 8rem 0;
    background-color: #fff;
}
.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.api {
    background-color: var(--bg-color);
    padding: 8rem 0;
}
.api-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.api-text {
    flex: 1;
    padding-right: 3rem;
    min-width: 300px;
}
.api-code {
    flex: 1;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem;
    border-radius: 15px;
    font-family: 'Fira Code', monospace;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    min-width: 300px;
    position: relative;
    overflow: hidden;
}
.api-code::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 20px 20px;
    transform: rotate(45deg);
    z-index: 1;
}
.documentation {
    padding: 8rem 0;
    background-color: #fff;
}
.documentation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}
.documentation-content {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.documentation-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.documentation-content pre {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
}
.contact {
    background-color: var(--bg-color);
    padding: 8rem 0;
}
.contact form {
    max-width: 600px;
    margin: 0 auto;
}
.contact input,
.contact textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.contact input:focus,
.contact textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(52,152,219,0.5);
}
.contact button {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}
.contact button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 3rem 0;
}
.social-links {
    margin-top: 1rem;
}
.social-links a {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--secondary-color);
}
.testimonials {
    padding: 8rem 0;
    background-color: #f9f9f9;
}
.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}
.pricing {
    padding: 8rem 0;
    background-color: #fff;
}
.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.pricing-item {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pricing-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.pricing-item .price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.pricing-item ul {
    list-style: none;
    margin-bottom: 2rem;
}
.pricing-item ul li {
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .api-content {
        flex-direction: column;
    }
    .api-text, .api-code {
        width: 100%;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .documentation-content {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 2rem;
    }
    .features h2, .api h2, .documentation h2, .contact h2, .testimonials h2, .pricing h2 {
        font-size: 2rem;
    }
}
.countries {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.countries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 100%);
    z-index: 0;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.country-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.country-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-item:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1); }
    100% { transform: scale(0.95); }
}

.country-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.flag-container {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.country-item:hover .flag-container {
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    transform: rotate(5deg);
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-item:hover .flag-container img {
    transform: scale(1.1);
}

.country-item p {
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.country-item:hover p {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .flag-container {
        width: 100px;
        height: 100px;
    }

    .country-item p {
        font-size: 1rem;
    }
}

.trusted-companies {
    padding: 6rem 0;
    background-color: #fff;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.company-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.company-item:hover {
    transform: translateY(-10px);
}

.logo-container {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.company-item:hover .logo-container {
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.logo-container img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.company-item p {
    margin-top: 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--secondary-color);
}


.pricing {
    padding: 8rem 0;
    background-color: #fff;
}
.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.pricing-item {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pricing-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.pricing-item .price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
.pricing-item ul {
    list-style: none;
    margin-bottom: 2rem;
}
.pricing-item ul li {
    margin-bottom: 0.5rem;
}
.pricing-item .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.pricing-item .btn:hover {
    background-color: var(--primary-color);
}
.pricing-item .subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}
.pricing-item .popular {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    right: 20px;
}
.ip-info-container {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .ip-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .ip-info-item {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    .ip-info-item:hover {
        transform: translateY(-5px);
    }
    .ip-info-label {
        font-weight: bold;
        color: #007bff;
        display: block;
        margin-bottom: 5px;
    }
    .ip-info-value {
        color: #333;
    }
    .about-hero {
        background: linear-gradient(135deg, #3498db, #8e44ad);
        color: #fff;
        padding: 100px 0;
        text-align: center;
    }
    .about-hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }
    .about-hero p {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto;
    }
    .mission-section {
        background-color: #f9f9f9;
        padding: 80px 0;
    }
    .mission-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mission-text {
        flex: 1;
        padding-right: 50px;
    }
    .mission-image {
        flex: 1;
    }
    .mission-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .team-section {
        padding: 80px 0;
    }
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    .team-member {
        text-align: center;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    .team-member:hover {
        transform: translateY(-5px);
    }
    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .team-member h3 {
        margin-bottom: 5px;
    }
    .team-member p {
        color: #777;
    }
    .values-section {
        background-color: #f9f9f9;
        padding: 80px 0;
    }
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    .value-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
    }
.value-item i {
        font-size: 2em;
        color: #3498db;
        margin-bottom: 15px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
}
.footer-info {
    flex: 1;
    min-width: 300px;
}
.footer-links {
    margin-top: 1rem;
}
.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.footer-link:hover {
    color: #007bff;
}
.separator {
    margin: 0 10px;
    color: #666;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #007bff;
}