body {
    background-color: #111827;
}
.nav-item:nth-child(3) {
    margin-left: 40%;
}
.logo {
    width: 34.25px;
    height: 34.25px;
    margin-left: 10%;
}
.nav {
    gap: 25px;
    margin-top: 25px;
}

.nav:last-child {
    padding: 3px 6px 3px 6px;
    color: blueviolet;
    border-radius: 10px;
}

.my_gradient {
    background: linear-gradient(90deg, #2563EB, #D946EF);
}
.nav-item>a {
    color: #F9FAFB;
}
.Zone {
    color: #F9FAFB ;
    font-weight: 700;
}

.gradient-text-horizontal {
    /* color: linear-gradient(90deg, #2563EB, #D946EF); */
    color: #D946EF;
    margin-top: 10%;
    font-size: 58px;
    line-height: 1.6;
}

.under_header {
    color: #E5E7EB;}

.second-page>h2 {
    color: #ffffff;
    font-size: 42pt;
    font-weight: bold;
    text-align: center;
}
.second-page>p {
    color: #ffffff;
    font-size: 16pt;
    font-weight: 200;
    text-align: center;
    margin-top: 3%;
}

.second-page {
    margin-top: 7%;
}

h3, h4 {
    color: #F9FAFB;
    text-align: center;
    font-size: 42px;
    font-weight: bold;
}

.read_more {
    align-content: center;
}

.distance_top {
    margin-top: 10%;
}

.third-page>h5 {
    color: #ffffff;
    font-size: 42pt;
    font-weight: bold;
    text-align: center;
}
.third-page>p {
    color: #ffffff;
    font-size: 16pt;
    font-weight: 200;
    text-align: center;
    margin-top: 3%;
}

        .team-slider {
            padding: 80px 0;

        }
        
        .team-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 20px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;




        }
        
        .member-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 5px;
        }
        
        .member-position {
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563EB;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #2563EB;
            color: white;
            transform: scale(1.1);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(255,255,255,0.3);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        







.color-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}











.subscribe-section {
    background: #111827;
    padding: 100px 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Стекломорфизм эффект */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 60px 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
    backdrop-filter: blur(10px);
    color: #333;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 0 0.2rem rgba(255, 255, 255, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.1);
    color: #333;
}

.btn-subscribe {
    background: #111827;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: #111827
}

.btn-subscribe:active {
    transform: translateY(0);
}

.newsletter-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: black;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.success-message {
    display: none;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .subscribe-section {
        padding: 60px 20px;
    }
    
    .glass-card {
        padding: 40px 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-element {
        display: none;
    }
}

.glass-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}


.footer {
    background: #111827;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand span {
    background: linear-gradient(135deg, #2563EB, #D946EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.contact-item i {
    width: 20px;
    margin-right: 10px;
    color: #2563EB;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #2563EB, #D946EF);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #2563EB;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▸';
    margin-right: 8px;
    color: #2563EB;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #999;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #2563EB, #D946EF);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.app-download {
    margin-top: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.download-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-text span:first-child {
    font-size: 0.8rem;
    color: #ccc;
}

.download-text span:last-child {
    font-size: 1rem;
    font-weight: 600;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}


#order-management-tab, #social-assistant-tab, #crypto-platform-tab, #smart-trading-tab, #analyzer-tab, #module-tab {
    color: white;
}

#myTab {
    justify-content: center;
}

.tab-pane {
    color: white;
    text-align: center;
    font-size: 15pt;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 5%;
    margin-bottom: 10%;
}

.nav-link.active {
    background-color: #D946EF !important;
    border: none;
}


        .accordion-button {
            font-weight: 600;
            color: #0d6efd;
            background-color: #f8f9fa;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .accordion-button:hover {
            color: #0b5ed7;
            background-color: #e9ecef;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .accordion-header {
            border-bottom: none;
        }
        
        .accordion-body {
            padding: 20px;
            background-color: #fff;
            border-top: 1px solid #dee2e6;
        }
        
        .checkmark {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-right: 10px;
            position: relative;
        }
        
        .checkmark::after {
            content: '✓';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-size: 14px;
            color: #6c757d;
        }
        
        .feature-item {
            margin-bottom: 15px;
            padding-left: 5px;
            font-size: 16px;
            font-weight: 500;
        }
        
        .feature-item:last-child {
            margin-bottom: 0;
        }
