  :root {
            --primary-color: #4361ee;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary-color: #f72585;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --gradient-blue: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            --gradient-green: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #3a56e8;
            border-color: #3a56e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        /* Breadcrumb Area */
        .breadcumb-area {
            background: url('../InvestmentHero.jpg') no-repeat center center/cover;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
        }

        .breadcumb-area:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .breadcumb-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .breadcumb-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .breadcumb-inner ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            flex-wrap: wrap;
        }

        .breadcumb-inner ul li {
            margin: 0 10px;
            color: #fff;
        }

        .breadcumb-inner ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcumb-inner ul li a:hover {
            color: var(--primary-light);
        }

        .breadcumb-inner ul li i {
            margin-right: 10px;
        }

        .brpt h2 {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Trust Badge */
        .trust-badge-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
            flex-direction: column;
            align-items: center;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            position: relative;
        }

        .trust-title-text {
            font-size: 14px;
            font-weight: 600;
            color: silver;
            text-align: center;
            line-height: 1.2;
            min-width: 80px;
        }

        .trust-leaf-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf {
            width: 44px;
            height: 44px;
            background-image: url('../badge.webp');
            background-size: contain;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf-left {
            transform: scaleX(-1);
        }

        .trust-subtitle {
            font-size: 14px;
            color: var(--gray-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trust-subtitle::before,
        .trust-subtitle::after {
            content: "";
            height: 1px;
            width: 50px;
            display: inline-block;
            background: var(--primary-light);
        }

        .trust-subtitle::before {
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
        }

        .trust-subtitle::after {
            background: linear-gradient(to left, var(--primary-light), var(--primary-color));
        }

        /* Modern Investment Section Styles */
        .investment-section {
            padding: 80px 0;
        }

        .investment-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .investment-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .investment-header h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .investment-header p {
            color: var(--gray-color);
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Modern Category Card */
        .category-card {
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin-bottom: 40px;
            transition: var(--transition);
            background: white;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .category-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            cursor: pointer;
            position: relative;
        }

        .category-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .category-header h3 i {
            transition: var(--transition);
        }

        .category-header.collapsed h3 i {
            transform: rotate(-90deg);
        }

        .category-body {
            padding: 0;
        }

        .category-description {
            padding: 20px;
            background: rgba(67, 97, 238, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 1rem;
            color: var(--dark-color);
        }

        /* Modern Media Grid */
        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .media-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .media-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .media-card iframe,
        .media-card video {
            width: 100%;
            height: 200px;
            border: none;
        }

        .media-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .media-content {
            padding: 15px;
        }

        .media-content h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .media-content p {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 0;
        }

        /* Articles List */
        .articles-section {
            padding: 20px;
            background: rgba(67, 97, 238, 0.03);
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .section-title i {
            margin-right: 10px;
        }

        .article-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .article-item {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
        }

        .article-item:last-child {
            border-bottom: none;
        }

        .article-item a {
            color: var(--dark-color);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .article-item a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .article-item i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 0.8rem;
        }

        /* Instruments List */
        .instruments-section {
            padding: 20px;
            background: white;
        }

        .instruments-list {
            display: grid;
            /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
            gap: 15px;
        }

        .instrument-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-left: 3px solid var(--primary-color);
            cursor: pointer;
        }

        .instrument-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
            background: rgba(67, 97, 238, 0.03);
        }

        .instrument-card h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
            display: flex;
            align-items: center;
        }

        .instrument-card h4 i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .instrument-card p {
            font-size: 0.8rem;
            color: var(--gray-color);
            margin-bottom: 0;
        }

        /* Instrument Details Section */
        .instrument-details {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 30px;
            margin-top: 40px;
            margin-bottom: 40px;
            position: relative;
        }

        .instrument-details.active {
            display: block;
            animation: fadeIn 0.5s ease forwards;
        }

        .details-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .details-header h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 0;
        }

        .close-details {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .close-details:hover {
            color: var(--secondary-color);
            transform: rotate(90deg);
        }

        .details-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .details-main {
            padding-right: 20px;
            border-right: 1px solid rgba(0, 0, 0, 0.1);
        }

        .details-sidebar {
            padding-left: 20px;
        }

        .detail-section {
            margin-bottom: 25px;
        }

        .detail-section h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
        }

        .detail-section h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient-green);
        }

        .detail-section p {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .detail-media {
            margin-top: 20px;
        }

        .detail-media iframe,
        .detail-media video {
            width: 100%;
            height: 250px;
            border-radius: 8px;
        }

        .detail-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .detail-gallery img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
        }

        .detail-gallery img:hover {
            transform: scale(1.05);
        }

        .sidebar-card {
            background: rgba(67, 97, 238, 0.03);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            border-left: 3px solid var(--primary-color);
        }

        .sidebar-card h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .sidebar-card h5 i {
            margin-right: 10px;
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list a {
            color: var(--dark-color);
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .sidebar-list a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .sidebar-list i {
            margin-right: 8px;
            font-size: 0.7rem;
            color: var(--primary-color);
        }

        /* Animation Classes */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }
        
        
        .how-to-invest {
            background-color: #f9f9ff;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 4px solid #6c5ce7;
        }
        
        .how-to-invest h4 {
            color: #6c5ce7;
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .how-to-invest-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .invest-step {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        
        .invest-step h5 {
            color: #2d3436;
            margin-bottom: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .invest-step h5:before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #6c5ce7;
            margin-right: 10px;
            border-radius: 50%;
        }
        
        .website-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .website-link {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #f1f1fe;
            border-radius: 6px;
            color: #6c5ce7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .website-link:hover {
            background: #6c5ce7;
            color: white;
            transform: translateY(-3px);
        }
        
        .website-link i {
            margin-right: 8px;
        }
        
        .video-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .video-link {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .video-link p {
            padding: 15px;
            margin: 0;
            font-size: 15px;
            color: #636e72;
        }
        
        .featured-article .article-card {
            background: linear-gradient(135deg, #f6f7ff 0%, #f1f3ff 100%);
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid #6c5ce7;
        }
        
        .featured-article h6 {
            color: #2d3436;
            font-size: 17px;
            margin-bottom: 10px;
        }
        
        .featured-article p {
            color: #636e72;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .read-more {
            color: #6c5ce7;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        @media (max-width: 768px) {
            .how-to-invest {
                padding: 15px;
            }
            
            .website-links {
                grid-template-columns: 1fr;
            }
            
            .video-links {
                grid-template-columns: 1fr;
            }
        }
        

        /* Comparison Section */
        .comparison-section {
            padding: 60px 0;
            background: var(--gradient-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .comparison-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
            z-index: 0;
        }

        .comparison-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .comparison-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .comparison-title p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .comparison-table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .table thead th {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 15px;
            text-align: center;
            border: none;
        }

        .table tbody tr:nth-child(even) {
            background-color: rgba(248, 249, 250, 0.5);
        }

        .table tbody td {
            padding: 15px;
            vertical-align: middle;
            border: none;
        }

        .table tbody td:first-child {
            font-weight: 600;
        }

        .table tbody td i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* CTA Section */
        .investment-cta-section {
            padding: 60px 0;
            background: white;
            position: relative;
        }

        .investment-cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .investment-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .investment-cta-text {
            font-size: 1.25rem;
            margin-bottom: 30px;
            color: var(--gray-color);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .details-content {
                grid-template-columns: 1fr;
            }

            .details-main {
                padding-right: 0;
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .details-sidebar {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .media-grid {
                grid-template-columns: 1fr;
            }

            .instruments-list {
                grid-template-columns: 1fr;
            }

            .instrument-details {
                padding: 20px;
            }
        }

        @media (max-width: 1199.98px) {
            .brpt h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .brpt h2 {
                font-size: 2.5rem;
            }

            .detailed-investment-img {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .breadcumb-area {
                padding: 120px 0 60px;
            }

            .brpt h2 {
                font-size: 2rem;
            }

            .investment-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 575.98px) {
            .breadcumb-area {
                padding: 100px 0 40px;
            }

            .brpt h2 {
                font-size: 1.8rem;
            }

            .investment-cta-title {
                font-size: 2rem;
            }
        }