
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    font-family: "Sansation", sans-serif;
    color: #090040;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Sansation", sans-serif;
    font-weight: 700;
}

:root {
    --primary-color: #8AA624; 
    --secondary-color: #FEA405;
    --accent-color: #FFFFF0;
    --dark-color: #0e0e10;
    --light-bg-color: #FFFFF0;
    --section1-bg: #DBE4C9;
    --section2-bg: #FFFFF0;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-light-green {
    background-color: var(--section1-bg) !important;
}

.bg-secondary {
    background-color: #212529 !important;
}

.bg-light-yellow {
    background-color: var(--section2-bg) !important;
}

.navbar {
  background-color: #212529 !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #ffffff !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #8AA624 !important;
}

.navbar .nav-link {
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #8AA624;
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 1.5rem;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

@media (max-width: 991px) {
  .dropdown-menu {
    max-height: 250px;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #8AA624 transparent;
    padding-bottom: 80px;
  }

  .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }
  .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #8AA624;
    border-radius: 3px;
  }
  .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-link i {
    box-shadow: none !important;
  }

  .navbar-nav {
    gap: 0;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar .nav-link::after {
    left: 50%;
    transform: translateX(-50%);
    width: 0;
  }
  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .dropdown-menu {
    max-height: none;
    overflow: visible !important;
    padding: 0 !important;
  }
  .navbar .nav-link.dropdown-toggle::after {
    display: none !important;
  }
  .navbar .nav-link.dropdown-toggle:hover::after {
    display: block !important;
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #8AA624;
  }
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  transition: filter 0.3s ease;
}
.navbar-toggler:hover .navbar-toggler-icon {
  filter: invert(65%) sepia(28%) saturate(692%) hue-rotate(42deg) brightness(92%) contrast(91%);
}

.navbar .nav-link.dropdown-toggle:focus,
.navbar .nav-link.dropdown-toggle:active,
.navbar .nav-link.dropdown-toggle.show {
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
    background-color: #8AA624 !important;
    color: #ffffff !important;
}


.btn-custom {
    background-color: #8AA624;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .btn-custom:hover {
        background-color: #748e17;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .btn-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #748e17;
        transform: skewX(-30deg);
        transition: all 0.4s ease;
        z-index: -1;
    }

    .btn-custom:hover::before {
        left: 100%;
    }
    
.section {
    padding: 80px 0;
    background-color: var(--light-bg-color);
    scroll-margin-top: 90px;
}

.section-title {
    font-size: 2.0rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--secondary-color);
        border-radius: 2px;
    }


.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 166, 36, 0.5);
    z-index: 2; 
}

.hero-content {
    position: relative; 
    z-index: 3; 
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .product-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
    }

.pr-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    background: #8AA624;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.product-card-text {
    color: #fff; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    font-weight: 400; 
    opacity: 0.9; 
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

    .product-card-text:hover {
        color: #f1f1f1; 
    }



.product-image {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        transition: transform .3s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .card-body {
    flex: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

    .product-card .card-body h5,
    .product-card .card-body p,
    .product-card .card-body .price-box {
        margin-bottom: 0.75rem;
    }

.product-card .button-container {
    margin-top: auto; 
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.price-box {
    margin: 10px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

    .price-box .old-price {
        font-size: 1rem;
        color: #aaa;
        text-decoration: line-through;
    }

    .price-box .new-price {
        font-size: 1.4rem;
        font-weight: bold;
        background: linear-gradient(135deg, #ff7e5f, #bd4130);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.button-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.discount-ribbon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: -5px;
    left: -5px;
}

    .discount-ribbon span {
        position: absolute;
        display: block;
        width: 160px;
        padding: 10px 0;
        background: linear-gradient(135deg, #ff416c, #ff4b2b);
        color: #fff;
        font-size: 0.9rem;
        font-weight: bold;
        text-align: center;
        transform: rotate(-45deg);
        top: 25px;
        left: -40px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }


.card-btn {
    background-color: #8AA624;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}

    .card-btn:hover {
        background-color: #748e17;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .card-btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2); 
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .card-btn:hover::before {
        width: 200%;
        height: 200%;
    }

.indicator-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    transition: all 0.4s ease-in-out;
    border-radius: 1rem;
    overflow: hidden;
}

    .indicator-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        border-color: #8AA624;
    }

    .indicator-card img {
        height: 200px;
        object-fit: cover;
        transition: filter 0.4s ease-in-out;
        width: 100%;
    }

    .indicator-card:hover img {
        filter: brightness(1.5);
    }

    .indicator-card .card-body {
        padding: 1.5rem;
    }

.price-label {
    --r: 30px;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 2;
    line-height: 1.7;
    padding: 0.5em 1em;
    border-radius: var(--r) 0 0 var(--r)/calc(2*var(--r));
    mask: radial-gradient(var(--r) at 0 var(--r), #0000 98%, #000 101%) 100% calc(-1*var(--r))/var(--r) 100% repeat-y, conic-gradient(#000 0 0) padding-box;
    background: linear-gradient(145deg, #ff4b2b, #ff416c) border-box;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.indicator-card:hover .price-label {
    background: #8AA624;
    transform: scale(1.05);
}


.footer {
    background-color: var(--primary-color);
    color: rgb(33, 37, 41);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-social {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #8AA624;
    color: #8AA624;
    background-color: transparent;
}

.btn-social:hover {
    background-color: #8AA624;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-facebook:hover { background-color: #3b5998; }
.btn-instagram:hover { background-color: #E4405F; }
.btn-whatsapp:hover { background-color: #25D366; }
.btn-telegramm:hover { background-color: #0088cc; }


.service-cards {
    --card-bg: #ffffff;
    --card-border: rgba(9, 0, 64, 0.06);
    --accent: #FEA405;
    --muted: #6b6b87;
    --radius: 14px;
    font-family: "Sansation", sans-serif;
}

.service-card {
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 22px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 22px rgba(20,20,50,0.06);
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px); 
}

    .service-card .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: inline-grid;
        place-items: center;
        background: linear-gradient(135deg, rgba(138,166,36,0.12), rgba(138,166,36,0.06));
        border: 1px solid rgba(138,166,36,0.12);
        font-size: 28px;
        color: var(--primary-color);
    }

    .service-card .card-title {
        font-size: 1.03rem;
        margin: 0;
        color: #f0f0f0;
        font-weight: 600;
        line-height: 1.2;
    }

    .service-card .card-desc {
        margin: 0;
        font-size: .89rem;
        color: #FFFFF0;
        line-height: 1.5;
        margin-top: auto;
    }

    .service-card:hover,
    .service-card:focus-within {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
    }

@media (max-width: 575.98px) {
    .service-card {
        padding: 18px;
        min-height: 150px;
    }

        .service-card .card-icon {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
}


.material-icons {
    font-size: 28px;
    line-height: 1;
    display: inline-block;
}

.section#company-info .service-cards {
    margin-top: 16px;
}

.rating-card {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 22px rgba(20,20,50,0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

    .rating-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(138, 166, 36, 0.3);
    }

.card-action {
    margin-left: auto; 
}

.open-btn {
    display: inline-block; 
    background-color: #8AA624;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #f0f0f0;
    text-decoration: none;
    max-width: 250px;  
    width: 100%;       
    text-align: center;
}

    .open-btn:hover {
        background-color: #748e17;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .open-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #748e17;
        transform: skewX(-30deg);
        transition: all 0.4s ease;
        z-index: -1;
    }

    .open-btn:hover::before {
        left: 100%;
    }

@media (max-width: 768px) {
    .open-btn {
        max-width: 200px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}


@media (max-width: 768px) {
    .rating-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-action {
        width: 100%;
        margin-top: 12px;
        text-align: center;
    }

    .open-btn {
        width: 100%; 
    }
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    .icon-box.red {
        background: #ef8b86;
    }
    
    .icon-box.dark-blue {
        background: #607D8B;
    }

    .icon-box.orange {
        background: #f7a634;
    }

    .icon-box.yellow {
        background: #eddf75;
    }

    .icon-box.green {
        background: #23d069;
    }

    .icon-box.blue {
        background: #65b3f7;
    }

    .icon-box.purple {
        background: #9c84e3;
    }

    .icon-box.pink {
        background: #f482d8;
    }

    .icon-box.brown {
        background: #b18751;
    }

    .icon-box.gray {
        background: #8e8d8d;
    }


.rating-details {
    text-align: left;
}

.rating-number {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-label {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.stars i {
    font-size: 15px;
    color: #f7d611;
    vertical-align: middle;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0e0e10; 
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #8AA624; 
    border-radius: 6px;
    border: 3px solid #0e0e10; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff6600; 
}

* {
    scrollbar-width: thin;
    scrollbar-color: #8AA624 #0e0e10; 
}



.image-wrapper img {
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05); 
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        border-color: #8AA624; 
    }

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    background-color: #007bff; 
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    background-color: #8AA624; 
}

.icon-box i {
    font-size: 26px;
    color: #fff;
}


.modern-accordion .accordion-item {
    background-color: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

    .modern-accordion .accordion-item:hover {
        border-color: #8AA624;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

.modern-accordion .accordion-header {
    border-bottom: none;
}

.modern-accordion .accordion-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

    .modern-accordion .accordion-button:not(.collapsed) {
        background-color: rgba(255, 255, 255, 0.1);
        color: #8AA624; 
        box-shadow: none;
    }

    .modern-accordion .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem #8AA624;
    }

    .modern-accordion .accordion-button i {
        color: #8AA624; 
        transition: color 0.3s ease;
    }

    .modern-accordion .accordion-button:not(.collapsed) i {
        color: #fff; 
    }

.modern-accordion .accordion-body {
    background-color: rgba(255, 255, 255, 0.02); 
    color: #d1d1d1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238AA624'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.modern-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238AA624'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#mql5-dev
#contact
#learn-forex
#trading-signals
#faq
#copy-trading
#indicators
#calculator
#eas
#tested-brokers
#company-info {
    background: linear-gradient(135deg, #0a0a0f 0%, #151529 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#mql5-dev .section-title,
#calculator .section-title,
#contact-section .section-title,
#learn-forex .section-title,
#trading-signals .section-title,
#forex-analysis .section-title,
#testimonials .section-title,
#faq .section-title,
#copy-trading .section-title,
#indicators .section-title,
#eas .section-title,
#tested-brokers .section-title,
#company-info .section-title {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#mql5-dev p.lead,
#calculator p.lead,
#contact-section p.lead,
#faq p.lead,
#forex-analysis p.lead,
#testimonials p.lead,
#copy-trading p.lead,
#learn-forex p.lead,
#trading-signals p.lead,
#indicators p.lead,
#eas p.lead,
#tested-brokers p.lead,
#company-info p.lead {
    color: rgb(252, 252, 252);
    font-size: 16px;
}

.feature-card2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .feature-card2:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(138, 166, 36, 0.3);
    }

    .feature-card2 i {
        color: var(--primary-color);
        display: block;
    }

.btn-accent {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        box-shadow: 0 6px 16px rgba(254, 164, 5, 0.4);
        transform: translateY(-2px);
    }


.section-title {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


#contact-section .form-label {
    color: #FFFFF0; 
}

#contact-section .form-control {
    background-color: rgba(255, 255, 255, 0.0); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8AA624; 
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

    #contact-section .form-control:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #8AA624; 
        box-shadow: 0 0 0 0.02rem #8AA624;
    }

    #contact-section .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

#contact-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    border-radius: 5px; 
}

    #contact-section .btn-primary:hover {
        background-color: #8AA624;
        border-color: #8AA624;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

#contact-section .form-select {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; 
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem;

    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%238AA624' d='M2 0L0 2h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem auto;
}

#contact-select .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #8AA624;
    box-shadow: 0 0 0 0.02rem #8AA624;
    outline: none;
}

#contact-select .form-select option {
    color: #fff; 
}

#contact-select .form-select:hover {
    border-color: #8AA624;
}


.map-container {
    height: 100%;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }


.divider-wrapper {
    background-color: rgb(33, 37, 41);
    padding: 30px 0;
    text-align: center;
}

.modern-divider {
    border: none;
    height: 2px;
    background-color: #8AA624; 
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(138, 166, 36, 0.4);
    transform: scaleX(0);
    animation: expandDivider 1.5s ease-out forwards;
}

@keyframes expandDivider {
    to {
        transform: scaleX(1);
    }
}


.logo {
    display: flex;
    align-items: center; 
}

    .logo img {
        height: 50px; 
        width: auto; 
    }

        .logo img:hover {
            transform: scale(1.1); 
        }

    .logo span {
        font-size: 1.5rem;
        font-weight: 700;
        color: #333; 
    }

@media (max-width: 768px) { 
    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) { 
    .logo img {
        height: 30px;
    }
}


.chart-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-title {
    font-size: 16px;
    margin: 0;
    color: #8AA624;
}

.copy-btn {
    background: rgb(138, 174, 8);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
}

.chart-container {
    width: 100%;
    height: 100px;
    margin: 12px 0;
}


.positive {
    color: #22c55e;
}

.negative {
    color: #ff4b2b;
}

.chart-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.chart-subtitle {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.0rem; 
    font-weight: bold;
    margin: 0;
}

    .stat-value.positive {
        color: #00c853;
    }

    .stat-value.negative {
        color: #ff416c;
    }

.stat-label {
    display: block;
    font-size: 0.75rem; 
    color: #aaa;
    margin-top: 1px;
}

    .stat-label .material-icons {
        font-size: 16px; 
        vertical-align: middle;
        color: #aaa; 
    }



#userModal .modal-content {
    border-radius: 15px;
    padding: 20px;
    background: #f7f9fc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: none;
}

#userModal .modal-header {
    border-bottom: none;
}

#userModal .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
    color: #222; 
}

#userModal .form-label {
    color: #222; 
    font-weight: 500;
}

#userModal .form-control {
    border-radius: 10px;
    border: 1px solid #d1d7e0;
    padding: 10px 15px;
    transition: all 0.3s;
    color: #222; 
    background-color: #fff; 
}

    #userModal .form-control::placeholder {
        color: #888; 
    }

    #userModal .form-control:focus {
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
    }

#userModal .modal-footer {
    border-top: none;
}

#userModal .btn-primary {
    border-radius: 10px;
    padding: 10px 20px;
    background: #007bff;
    border: none;
    transition: background 0.3s;
    color: #fff;
}

    #userModal .btn-primary:hover {
        background: #0056b3;
    }

#userModal .btn-secondary {
    border-radius: 10px;
    padding: 10px 20px;
    background: #6c757d;
    border: none;
    color: #fff;
}

    #userModal .btn-secondary:hover {
        background: #5a6268;
    }

#userModal .form-select {
    border-radius: 10px;
    border: 1px solid #d1d7e0;
    padding: 10px 15px;
    color: #222;
    background-color: #fff;
    transition: all 0.3s;
    appearance: none; 
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

    #userModal .form-select:focus {
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
        outline: none;
    }

#downloadModal .modal-content {
    background-color: #0e0e10;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #8AA624;
}

#downloadModal .modal-header {
    border-bottom: 1px solid #333;
}

#downloadModal .modal-title {
    color: #8AA624;
    font-weight: bold;
}

#downloadModal .btn-close {
    filter: invert(1);
}



#masterProModal .modal-content, #aurumSentinelModal .modal-content, #scalperProModal .modal-content, #zeroLagMAModal .modal-content, #SuperTrendModal .modal-content, #copyTradingModal .modal-content {
    background-color: #0e0e10;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #8AA624;
}

#masterProModal .modal-header, #aurumSentinelModal .modal-header, #scalperProModal .modal-header, #zeroLagMAModal .modal-header, #SuperTrendModal .modal-header, #copyTradingModal .modal-header {
    border-bottom: 1px solid #333;
}

#masterProModal .modal-title, #aurumSentinelModal .modal-title, #scalperProModal .modal-title, #zeroLagMAModal .modal-title, #SuperTrendModal .modal-title, #copyTradingModal .modal-title {
    color: #8AA624;
    font-weight: bold;
}

#masterProModal .btn-close, #aurumSentinelModal .btn-close, #scalperProModal .btn-close, #zeroLagMAModal .btn-close, #SuperTrendModal .btn-close, #copyTradingModal .btn-close {
    filter: invert(1); 
}




#registerModal .modal-content,
#paymentModal .modal-content,
#qrModal .modal-content {
    background-color: #0e0e10;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #8AA624;
}

#registerModal .modal-header,
#paymentModal .modal-header,
#qrModal .modal-header {
    border-bottom: 1px solid #333;
}

#registerModal .modal-title,
#paymentModal .modal-title,
#qrModal .modal-title {
    color: #8AA624;
    font-weight: bold;
}

#registerModal .form-label,
#paymentModal .form-label,
#qrModal .form-label {
    color: #fff;
}

#registerModal .form-select,
#paymentModal .form-select,
#qrModal .form-select {
    background-color: #1a1a1d;
    color: #fff;
    border: 1px solid #8AA624;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

#registerModal .form-select:hover,
#paymentModal .form-select:hover,
#qrModal .form-select:hover {
    border-color: #8AA624;
}

#registerModal .form-select:focus,
#paymentModal .form-select:focus,
#qrModal .form-select:focus {
    border-color: #8AA624;
    box-shadow: 0 0 0 0.25rem rgba(000, 000, 000, 0.5);
}

#registerModal .form-select option,
#paymentModal .form-select option,
#qrModal .form-select option {
    background-color: #0e0e10;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(000, 000, 000, 0.5);
}

#registerModal .form-select option:checked,
#paymentModal .form-select option:checked,
#qrModal .form-select option:checked,
#registerModal .form-select option:hover,
#paymentModal .form-select option:hover,
#qrModal .form-select option:hover {
    background-color: #8AA624;
    color: #0e0e10;
}

#registerModal a,
#paymentModal a,
#qrModal a {
    color: #8AA624;
    word-break: break-all;
}

#registerModal .btn-outline-primary,
#paymentModal .btn-outline-primary,
#qrModal .btn-outline-primary {
    border-color: #8AA624;
    color: #8AA624;
}

#registerModal .btn-outline-primary:hover,
#paymentModal .btn-outline-primary:hover,
#qrModal .btn-outline-primary:hover {
    background-color: #8AA624;
    color: #0e0e10;
}

/* Input fields */
#registerModal .form-control,
#paymentModal .form-control,
#qrModal .form-control {
    background-color: #1a1a1d; /* Qaranlıq fon */
    color: #fff; /* Mətn rəngi */
    border: 1px solid #8AA624; /* Sərhəd rəngi */
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

#registerModal .form-control:focus,
#paymentModal .form-control:focus,
#qrModal .form-control:focus {
    border-color: #8AA624;
    box-shadow: 0 0 0 0.25rem rgba(138, 166, 36, 0.4);
    outline: none;
}

/* Placeholder rəngi */
#registerModal .form-control::placeholder,
#paymentModal .form-control::placeholder,
#qrModal .form-control::placeholder {
    color: #aaa;
}

/* Input hover effekti */
#registerModal .form-control:hover,
#paymentModal .form-control:hover,
#qrModal .form-control:hover {
    border-color: #8AA624;
}



.custom-modal-content {
    background-color: #0e0e10;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #8AA624;
}

.custom-modal-header {
    border-bottom: 1px solid #333;
}

.custom-modal-title {
    color: #8AA624;
    font-weight: bold;
}

.custom-btn-close {
    filter: invert(1);
}

.custom-form-label {
    color: #fff;
}


.custom-form-select {
    background-color: #0e0e10;
    color: #8AA624;
    border: 1px solid #8AA624;
    border-radius: 6px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

    .custom-form-select:hover {
        border-color: #8AA624;
        box-shadow: 0 0 5px #8AA624;
    }

    .custom-form-select:focus {
        border-color: #8AA624;
        box-shadow: 0 0 0 0.25rem rgba(138, 166, 36, 0.4);
    }

    .custom-form-select option {
        background-color: #0e0e10;
        color: #fff;
    }

        .custom-form-select option:checked {
            background-color: #8AA624;
            color: #0e0e10;
        }

        .custom-form-select option:hover {
            background-color: #8AA624;
            color: #0e0e10;
        }


#loading {
    transition: opacity 0.3s ease;
}
#loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.social-bar {
    position: fixed;
    top: 50%;
    right: 0; 
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.social-item1,
.social-item2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 160px;   
    height: 50px;
    border-radius: 25px 0 0 25px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);

    transform: translateX(110px); 
}

.social-item1:hover,
.social-item2:hover {
    transform: translateX(0);
}

.social-item1 i, 
.social-item2 i {
    min-width: 50px;
    text-align: center;
    z-index: 2;
}

.social-item1 span, 
.social-item2 span {
    white-space: nowrap;
    opacity: 0;
    margin-left: -10px;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
}

.social-item1:hover span, 
.social-item2:hover span {
    opacity: 1;
    margin-left: 0;
}

.whatsapp { background: #25D366; }
.telegram { background: #0088cc; }




.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(33, 37, 41); 
    color: #8AA624; 
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
    transition: transform 0.2s;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
    70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

#tradingTableWrapper table {
    background-color: #1c1c1e; 
    color: #fff;
    border-radius: 10px;
    border: 2px solid #8AA624;
}

#tradingTableWrapper thead {
    border-bottom: 1px solid #333;
}

#tradingTableWrapper thead th {
    color: #8AA624;
    font-weight: bold;
}

#tradingTableWrapper tbody tr:hover {
    background-color: #29292b; 
}

.chart-footer {
  margin-top: auto; 
  padding: 0.75rem; 
}



#education {
    background-color: #0d0d0d; 
    color: #f0f0f0;
}

.text-muted {
    color: #a0a0a0 !important;
}

.feature-card3 {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(40, 40, 40, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out;
    overflow: hidden;
}

.feature-card3:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #8AA624; 
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.feature-card3 .card-body h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-card3 .card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.feature-card3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 166, 36, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    transform: rotate(45deg);
}

.feature-card3:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-card2 {
        padding: 1.5rem;
    }
}

.training-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  padding: 20px;
  gap: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-height: 100%;
  max-width: 100%;
}

.training-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.training-image {
  max-width: 300px;
  margin-left: 0;
  transition: transform 0.3s ease;
}

.training-card:hover .training-image {
  transform: scale(1.03);
}

.training-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: left;
  flex: 1;
}

.training-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.training-card:hover .training-title {
  color: #97c93d;
}

.training-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
}

.old-price {
  position: relative;
  color: #888;
  font-weight: bold;
}

.old-price::before,
.old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px; /* xətt bir az qalın */
  background-color: red;
}

.old-price::before {
  transform: rotate(15deg);
}

.old-price::after {
  transform: rotate(-15deg);
}

.new-price {
  color: #28a745;
  font-weight: bold;
  font-size: 1.6rem;
}

.position-relative {
  position: relative;
}

.price-boxed {
  position: absolute;
  bottom: 20px; 
  right: 30px;  
  background: #FF3D3D;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px; 
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.discount-bar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #8AA624;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 12px 20px;
  margin: 10px auto;
  width: 95%;
  max-width: 1200px;
  color: #fff;
  font-weight: 500;
}

.discount-bar .old-price {
  font-size: 1rem;
  color: #888;
  text-decoration: line-through wavy red;
  margin: 0 0.5rem;
}

.discount-bar .new-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
}
.discount-bar .offer-text {
  font-size: 1.2rem;
  opacity: 0.85;
}

.discount-bar .headline {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.discount-bar .subtext {
  font-size: 1.1rem;
  font-weight: 400;
  color: #aaa;
}


.countdown .time-box {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  min-width: 50px;
}

.countdown span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.7rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .discount-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px 15px;
  }

  .discount-bar .d-flex.align-items-center.gap-3 {
    flex-direction: column;
    gap: 10px;
  }

  .discount-bar .headline {
    font-size: 1.3rem;
    margin-top: 8px;
  }

  .discount-bar .subtext {
    font-size: 1rem;
    padding: 0 5px;
  }

  .countdown {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  .countdown .time-box {
    min-width: 70px;
    padding: 8px 10px;
  }
  
  .discount-bar .badge {
    font-size: 1.3rem !important;
    padding: 12px 20px !important;
    border-radius: 10px;
  }
}


@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); color: #ffc107; }
  100% { transform: scale(1); }
}

.animate-pop {
  animation: pop 0.3s ease-in-out;
}


.contact-btn {
  display: inline-block;
  background-color: #97c93d;
  color: white;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #7fb52f;
}

@media (max-width: 991px) {
  .training-card {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px);
  }
}

@media (max-width: 768px) {
  .training-card {
    flex-direction: column;
    text-align: center;
  }

  .training-info {
    align-items: center;
  }

  .training-price {
    justify-content: center;
  }
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.pulse-icon i.material-icons {
    display: inline-block;
    animation: pulse 2s infinite;
}

.cta-image-wrapper {
    position: relative;
}

.image-zoom {
    transition: transform 0.5s ease;
}

.cta-image-wrapper:hover .image-zoom {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.15);
    border-radius: 1rem;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fadein {
    animation: fadeInUp 1s ease forwards;
}

.btn-telegram {
    background-color: #0088cc;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.btn-telegram:hover {
    background-color: #00aaff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@keyframes pulse-btn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-telegram.pulse {
    animation: pulse-btn 2s infinite;
}

.signal-title {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: inherit;
}

.signal-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px; 
    background: var(--secondary-color);
    transition: width 0.3s ease-in-out;
}

.signal-title:hover::after {
    width: 100%;
}

.btn-read {
    background-color: #8AA624;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.btn-read:hover {
    background-color: #617512;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.testimony-box {
    border: 2px solid #8AA624;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    background-color: #2C2C2C; 
    transition: all 0.3s ease;
}

.testimony-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.6);
}

  .carousel-indicators [data-bs-target] {
    background-color: #fff;
  }

  .carousel-inner .card {
    border: none;
  }
  
  .quote-mark {
  color: #8AA624; 
  font-size: 2.0rem;
  font-weight: bold;
}


.comparison {
  width: 100%;
  max-width: auto;
  margin: auto;
}
.comparison figure { 
  position: relative;
  margin: 0;
}
.comparison figure img {
  width: 100%;
  height: auto;
  object-fit: contain; 
  display: block;
}
.comparison figure .divisor { 
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; 
  height: 100%;
  overflow: hidden;
}
.comparison figure .divisor img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.comparison input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  margin-top: -2rem;
  background: transparent;
}
.comparison input[type=range]:focus { outline: none; }

.comparison input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: #8AA624;
}
.comparison input[type=range]::-moz-range-track {
  height: 6px;
  background: #8AA624;
}

.comparison input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: #fff;
  border: 2px solid #8AA624;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -7px;
}
.comparison input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: #fff;
  border: 2px solid #8AA624;
  border-radius: 50%;
  cursor: pointer;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(to right, #8AA624 0%, #8AA624 0%, #d1d5db 0%, #d1d5db 100%);
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: #8AA624;
  border: 2px solid #fff;
  cursor: pointer;
  margin-top: calc((8px - 18px) / 2); 
}

input[type=range]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background: #8AA624;
  border: 2px solid #fff;
  cursor: pointer;
}

.btn-green {
  color: #fff;
  background-color: #8AA624;
  border: 1px solid #8AA624;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background-color: #768b20; 
  border-color: #768b20;
}

.btn-green.active,
.btn-green:focus {
  background-color:#6C8514;
  border-color: #6C8514;
}

::placeholder {
    color: white !important;
    opacity: 0.8 !important; 
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #ced4da; 
}

.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item .page-link {
    background-color: rgba(255, 255, 255, 0.05); 
    color: #ffffff; 
    border-color: rgba(255, 255, 255, 0.1);
}

.pagination .page-item .page-link:hover {
    background-color: #8AA624; 
    color: #0e0e10; 
}

.pagination .page-item.active .page-link {
    background-color: #8AA624; 
    color: #0e0e10; 
    border-color: #8AA624; 
}

.pagination .page-item .page-link:focus {
    box-shadow: none; 
    outline: none; 
}

.breadcrumb {
    background-color: transparent; 
    border: 1px solid #8AA624; 
    padding: 5px 10px; 
    border-radius: 4px;
    display: flex; 
    align-items: center;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none; 
    font-size: 14px; 
}

.breadcrumb-item a:hover {
    color: #8AA624; 
}

.breadcrumb-item.active {
    color: #8AA624; 
    font-size: 14px; 
}

.share-buttons {
    display: flex;
    flex-wrap: wrap; 
    gap: 8px;        
    margin-top: 10px;
    max-width: 100%; 
    overflow: hidden; 
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;  
    height: 35px; 
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}


.social-btn[data-platform="facebook"] { background-color: #1877F2; }
.social-btn[data-platform="twitter"] { background-color: #62748E; }
.social-btn[data-platform="whatsapp"] { background-color: #25D366; }
.social-btn[data-platform="telegram"] { background-color: #0088cc; }
.social-btn[data-platform="linkedin"] { background-color: #0072b1; }
.social-btn[data-platform="pinterest"] { background-color: #c8232c; }
.social-btn[data-platform="tumblr"] { background-color: #a77dc2; }
.social-btn[data-platform="discord"] { background-color: #7289DA; }
.social-btn[data-platform="reddit"] { background-color: #FF5700; }
.social-btn[data-platform="twitch"] { background-color: #9146FF; }
.social-btn[data-platform="odnoklassniki"] { background-color: #EE8208; }
.social-btn[data-platform="vk"] { background-color: #4C75A3; }

.social-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


.border-start {
    border-left: 1px dashed #8AA624 !important;
}

#videoSlider {
  display: flex;
  flex-wrap: nowrap;
}

.slider-item {
  flex: 0 0 auto;
}

