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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.header-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-image {
    position: relative;
    perspective: 1000px;
}

.payment-cards {
    position: relative;
    height: 300px;
}

.card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.card-2 {
    top: 40px;
    left: 100px;
    transform: rotate(5deg);
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.card-3 {
    top: 80px;
    left: 200px;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

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

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.badge span {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.badge p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .header-buttons {
        justify-content: center;
    }

    .payment-cards {
        height: 200px;
    }

    .card {
        width: 150px;
        height: 90px;
    }

    .card-2 {
        left: 50px;
    }

    .card-3 {
        left: 100px;
    }
}

section {
    margin-bottom: 0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: skewY(-2deg);
    z-index: -1;
}

h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto;
    border-radius: 2px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section Styles */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Use Cases Section Styles */
.use-cases {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.use-cases-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.use-cases-grid::-webkit-scrollbar {
    display: none;
}

.use-case-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    flex: 0 0 auto;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-case-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section Styles */
.why-choose {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.pricing-section::before {
    display: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 400px;
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-table-header {
    padding: 30px;
    text-align: center;
    background: #3498db;
    color: white;
}

.pricing-table-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.pricing-table-header p {
    opacity: 0.9;
}

.pricing-table-content {
    padding: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 300px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .label {
    color: #2c3e50;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-row .value {
    color: #3498db;
    font-weight: 600;
    text-align: right;
    min-width: 80px;
}

.pricing-note {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 40px;
}

.pricing-note p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-note p:last-child {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .pricing-tables {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .pricing-table {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1.1rem;
    }

    .pricing-table-header h3 {
        font-size: 1.8rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .pricing-row .value {
        text-align: center;
    }
}

/* FAQ Section Styles */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3498db;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .use-cases-grid,
    .why-choose-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .service-card,
    .use-case-card,
    .feature-card,
    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .use-cases-grid {
        padding: 0 30px;
        gap: 20px;
    }
    
    .use-case-card {
        min-width: 280px;
        padding: 30px;
    }
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 150px;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Navigation Button Styles */
.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-btn-login {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-btn-login:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}

.nav-btn-signup {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.nav-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.nav-btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.nav-btn-signup:hover::before {
    left: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links, .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-btn {
        width: 100%;
        margin: 5px 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .nav-btn {
        width: 100%;
        margin: 5px 0;
    }

    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Contact Section Styles */
.contact {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.contact-image {
    position: relative;
    height: 100%;
}

.contact-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

.contact-form h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
}

.contact-form h2:after {
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 20px;
}

.country-phone {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.country-phone select {
    width: 120px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.country-code {
    padding: 12px 15px;
    background: #f8f9fa;
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.phone-input input {
    border: none;
    border-radius: 0;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 150px;
}

.submit-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .country-phone {
        grid-template-columns: 100%;
    }
}

/* Popup Message Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s ease;
}

.popup-message h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.popup-message p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-close {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Add subtle border between sections */
section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* About Us Section Styles */
.about-us {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.95) 50%,
        rgba(240, 247, 255, 0.95) 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.about-section {
    margin-bottom: 40px;
}

.company-overview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(52, 152, 219, 0.1),
        rgba(44, 62, 80, 0.1)
    );
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    transition: transform 0.5s ease;
}

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

.about-details {
    padding: 50px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.9) 100%
    );
}

.about-details h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.9) 100%
    );
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(52, 152, 219, 0.2);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 249, 250, 1) 100%
    );
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .about-container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .about-content {
        gap: 40px;
    }

    .about-image {
        min-height: 400px;
    }

    .about-details {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        min-height: 350px;
    }

    .about-image img {
        border-radius: 20px 20px 0 0;
    }

    .about-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 20px;
    }

    .about-section {
        margin-bottom: 30px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-details {
        padding: 25px;
    }

    .about-details h3 {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Service Pages Styles */
.service-header {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.service-header::before {
    display: none;
}

.service-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-header-buttons {
    display: flex;
    gap: 20px;
}

.service-header-image {
    position: relative;
    perspective: 1000px;
}

.payment-cards {
    position: relative;
    height: 300px;
}

.payment-cards .card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.payment-cards .card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    background: #3498db;
    color: white;
}

.payment-cards .card-2 {
    top: 40px;
    left: 100px;
    transform: rotate(5deg);
    background: #2c3e50;
    color: white;
}

.payment-cards .card-3 {
    top: 80px;
    left: 200px;
    transform: rotate(-3deg);
    background: #3498db;
    color: white;
}

.payment-cards:hover .card-1 {
    transform: rotate(-8deg) translateY(-10px);
}

.payment-cards:hover .card-2 {
    transform: rotate(8deg) translateY(-10px);
}

.payment-cards:hover .card-3 {
    transform: rotate(-6deg) translateY(-10px);
}

@media (max-width: 768px) {
    .payment-cards {
        height: 200px;
    }

    .payment-cards .card {
        width: 150px;
        height: 90px;
    }

    .payment-cards .card-2 {
        left: 50px;
    }

    .payment-cards .card-3 {
        left: 100px;
    }
}

.service-features {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3498db;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.service-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.service-integration {
    padding: 80px 0;
    background: #ffffff;
}

.integration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .service-header-buttons {
        justify-content: center;
    }

    .service-header h1 {
        font-size: 2.8rem;
    }

    .service-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 60px 0;
    }

    .service-header-content {
        padding: 0 20px;
    }

    .service-header h1 {
        font-size: 2.2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-header-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid,
    .benefits-grid,
    .integration-steps {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature-card,
    .benefit-card {
        padding: 30px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    background: #ffffff;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-page-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-page-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact-form-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
}

.company-contact-details {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card.company-name {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
}

.contact-card.company-name h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
}

.contact-card.company-name h2:after {
    display: none;
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #2c3e50;
}

.external-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.external-links li {
    margin-bottom: 15px;
}

.external-links li:last-child {
    margin-bottom: 0;
}

.external-links a {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-links a:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .contact-page-grid {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .contact-page {
        padding: 100px 0 60px;
    }

    .contact-page-header h1 {
        font-size: 2.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 80px 0 40px;
    }

    .contact-page-header h1 {
        font-size: 2rem;
    }

    .contact-page-header p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card.company-name h2 {
        font-size: 1.5rem;
    }
}

.request-call {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 0;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.request-call:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Navigation Dropdown Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.header-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-image {
    position: relative;
    perspective: 1000px;
}

.payment-cards {
    position: relative;
    height: 300px;
}

.card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.card-2 {
    top: 40px;
    left: 100px;
    transform: rotate(5deg);
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.card-3 {
    top: 80px;
    left: 200px;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

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

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.badge span {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.badge p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .header-buttons {
        justify-content: center;
    }

    .payment-cards {
        height: 200px;
    }

    .card {
        width: 150px;
        height: 90px;
    }

    .card-2 {
        left: 50px;
    }

    .card-3 {
        left: 100px;
    }
}

section {
    margin-bottom: 0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: skewY(-2deg);
    z-index: -1;
}

h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 15px auto;
    border-radius: 2px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section Styles */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Use Cases Section Styles */
.use-cases {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.use-cases-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.use-cases-grid::-webkit-scrollbar {
    display: none;
}

.use-case-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 320px;
    flex: 0 0 auto;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-case-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section Styles */
.why-choose {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.pricing-section::before {
    display: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 400px;
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-table-header {
    padding: 30px;
    text-align: center;
    background: #3498db;
    color: white;
}

.pricing-table-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.pricing-table-header p {
    opacity: 0.9;
}

.pricing-table-content {
    padding: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 300px;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .label {
    color: #2c3e50;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-row .value {
    color: #3498db;
    font-weight: 600;
    text-align: right;
    min-width: 80px;
}

.pricing-note {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 40px;
}

.pricing-note p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-note p:last-child {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .pricing-tables {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }

    .pricing-table {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1.1rem;
    }

    .pricing-table-header h3 {
        font-size: 1.8rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .pricing-row .value {
        text-align: center;
    }
}

/* FAQ Section Styles */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #3498db;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .use-cases-grid,
    .why-choose-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .service-card,
    .use-case-card,
    .feature-card,
    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .use-cases-grid {
        padding: 0 30px;
        gap: 20px;
    }
    
    .use-case-card {
        min-width: 280px;
        padding: 30px;
    }
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 150px;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Navigation Button Styles */
.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-btn-login {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-btn-login:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}

.nav-btn-signup {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.nav-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.nav-btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.nav-btn-signup:hover::before {
    left: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links, .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-btn {
        width: 100%;
        margin: 5px 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .nav-btn {
        width: 100%;
        margin: 5px 0;
    }

    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Contact Section Styles */
.contact {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.contact-image {
    position: relative;
    height: 100%;
}

.contact-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
}

.contact-form h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
}

.contact-form h2:after {
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 20px;
}

.country-phone {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.country-phone select {
    width: 120px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.country-code {
    padding: 12px 15px;
    background: #f8f9fa;
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.phone-input input {
    border: none;
    border-radius: 0;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 150px;
}

.submit-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .country-phone {
        grid-template-columns: 100%;
    }
}

/* Popup Message Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s ease;
}

.popup-message h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.popup-message p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-close {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Add subtle border between sections */
section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* About Us Section Styles */
.about-us {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.95) 50%,
        rgba(240, 247, 255, 0.95) 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.about-section {
    margin-bottom: 40px;
}

.company-overview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(52, 152, 219, 0.1),
        rgba(44, 62, 80, 0.1)
    );
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    transition: transform 0.5s ease;
}

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

.about-details {
    padding: 50px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.9) 100%
    );
}

.about-details h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.9) 100%
    );
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(52, 152, 219, 0.2);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 249, 250, 1) 100%
    );
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .about-container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .about-content {
        gap: 40px;
    }

    .about-image {
        min-height: 400px;
    }

    .about-details {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        min-height: 350px;
    }

    .about-image img {
        border-radius: 20px 20px 0 0;
    }

    .about-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 20px;
    }

    .about-section {
        margin-bottom: 30px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-details {
        padding: 25px;
    }

    .about-details h3 {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Service Pages Styles */
.service-header {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.service-header::before {
    display: none;
}

.service-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-header-buttons {
    display: flex;
    gap: 20px;
}

.service-header-image {
    position: relative;
    perspective: 1000px;
}

.payment-cards {
    position: relative;
    height: 300px;
}

.payment-cards .card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.payment-cards .card-1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    background: #3498db;
    color: white;
}

.payment-cards .card-2 {
    top: 40px;
    left: 100px;
    transform: rotate(5deg);
    background: #2c3e50;
    color: white;
}

.payment-cards .card-3 {
    top: 80px;
    left: 200px;
    transform: rotate(-3deg);
    background: #3498db;
    color: white;
}

.payment-cards:hover .card-1 {
    transform: rotate(-8deg) translateY(-10px);
}

.payment-cards:hover .card-2 {
    transform: rotate(8deg) translateY(-10px);
}

.payment-cards:hover .card-3 {
    transform: rotate(-6deg) translateY(-10px);
}

@media (max-width: 768px) {
    .payment-cards {
        height: 200px;
    }

    .payment-cards .card {
        width: 150px;
        height: 90px;
    }

    .payment-cards .card-2 {
        left: 50px;
    }

    .payment-cards .card-3 {
        left: 100px;
    }
}

.service-features {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3498db;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.service-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.service-integration {
    padding: 80px 0;
    background: #ffffff;
}

.integration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .service-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .service-header-buttons {
        justify-content: center;
    }

    .service-header h1 {
        font-size: 2.8rem;
    }

    .service-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 60px 0;
    }

    .service-header-content {
        padding: 0 20px;
    }

    .service-header h1 {
        font-size: 2.2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-header-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features-grid,
    .benefits-grid,
    .integration-steps {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature-card,
    .benefit-card {
        padding: 30px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    background: #ffffff;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-page-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-page-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact-form-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
}

.company-contact-details {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card.company-name {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
}

.contact-card.company-name h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
}

.contact-card.company-name h2:after {
    display: none;
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #2c3e50;
}

.external-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.external-links li {
    margin-bottom: 15px;
}

.external-links li:last-child {
    margin-bottom: 0;
}

.external-links a {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.external-links a:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .contact-page-grid {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .contact-page {
        padding: 100px 0 60px;
    }

    .contact-page-header h1 {
        font-size: 2.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 80px 0 40px;
    }

    .contact-page-header h1 {
        font-size: 2rem;
    }

    .contact-page-header p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card.company-name h2 {
        font-size: 1.5rem;
    }
}

.request-call {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 0;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.request-call:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Navigation Dropdown Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}

.nav-links .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-links .dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

@media (max-width: 768px) {
    .nav-links .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin-left: 20px;
    }

    .nav-links .dropdown-content a {
        padding: 10px 0;
    }
}

.dropdown-content {
    display: none;
}

.dropdown-content.show {
    display: block;
}
