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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: rgba(39, 64, 139, 0.85);
        }

        html {
            scroll-behavior: smooth;
        }

        #hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: rgba(39, 64, 139, 0.85);
            overflow: hidden;
        }

        .grid-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(74, 222, 128, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(74, 222, 128, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            animation: pulse 8s ease-in-out infinite;
        }

        .orb-1 {
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: rgba(74, 222, 128, 0.15);
        }

        .orb-2 {
            bottom: -10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(59, 130, 246, 0.1);
            animation-delay: 2s;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 10px 6%;
            background: rgba(39, 64, 139, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: rgba(39, 64, 139, 1);
        }

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

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #4ade80;
        }

        .login-btn {
            padding: 10px 24px;
            background: transparent;
            color: #4ade80;
            border: 1px solid #4ade80;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .login-btn:hover {
            background: #4ade80;
            color: rgba(39, 64, 139, 1);
        }
        .logo .hero-img img {
            height: 60px;
            width: 60px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 180px 6% 60px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 72px;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero-text h1 span {
            color: #4ade80;
            position: relative;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4ade80, transparent);
        }

        .hero-text h2 {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 600px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cta-button {
            padding: 16px 32px;
            background: #4ade80;
            color: rgba(39, 64, 139, 1);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #22c55e;
            transform: translateY(-2px);
        }

        .cta-secondary, .cta-performance {
            padding: 16px 32px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
            cursor: pointer;
        }

        .cta-secondary:hover, .cta-performance {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        .hero-visual {
            position: relative;
            height: 500px;
        }

        .floating-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .card-1 {
            top: 20px;
            left: 0;
            width: 250px;
            animation: float 6s ease-in-out infinite;
        }

        .card-2 {
            top: 180px;
            right: 20px;
            width: 280px;
            animation: float 6s ease-in-out infinite;
            animation-delay: 1s;
        }

        .card-3 {
            bottom: 40px;
            left: 60px;
            width: 220px;
            animation: float 6s ease-in-out infinite;
            animation-delay: 2s;
        }

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

        .card-title {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .card-value {
            color: #4ade80;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .card-change {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .chart-bars {
            display: flex;
            gap: 6px;
            align-items: flex-end;
            height: 60px;
            margin-top: 15px;
        }

        .bar {
            flex: 1;
            background: linear-gradient(to top, #4ade80, rgba(74, 222, 128, 0.3));
            border-radius: 3px;
            min-height: 20%;
        }

        .features-strip {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 6% 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-box {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 10px;
            padding: 30px 24px;
            text-align: center;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }

        .feature-box:hover {
            border-color: rgba(74, 222, 128, 0.3);
            background: rgba(15, 23, 42, 0.8);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 36px;
            margin-bottom: 16px;
            display: flex;
        }

        .feature-title {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            line-height: 1.6;
        }

        .trading-widget {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 6% 100px;
        }

        .widget-container {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 16px;
            padding: 40px;
            overflow: hidden;
        }

        .widget-header {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .widget-placeholder {
            background: rgba(10, 14, 39, 0.6);
            border-radius: 10px;
            padding: 60px;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 16px;
        }

        .hero-waves {
            display: none;
        }

        .tradeview_section {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
            height: 400px;
            padding-left: 3em;
            padding-right: 3em;
        }

        .tradingview-widget-container{
            padding-left: 16em;
            padding-right: 16em;
            padding-top: 2em;
            padding-bottom: 2em;
        }
        

        #about {
            padding: 100px 6%;
            background: #ffffff;
        }

        .about-contai1er {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #010483;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: black;
            max-width: 800px;
            margin: 0 auto;
        }

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

        .video-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: #000;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-placeholder {
            position: relative;
            width: 100%;
            height: 700px;
            background: linear-gradient(135deg, rgba(39, 64, 139, 0.9), rgba(74, 222, 128, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: rgba(39, 64, 139, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: #4ade80;
            color: white;
        }

        .text-content {
            padding: 20px 0;
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: black;
            margin-bottom: 24px;
        }

        .about-text.preview {
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #010483;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(39, 64, 139, 0.2);
        }

        .read-more-btn:hover {
            background: rgba(39, 64, 139, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 64, 139, 0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, rgba(39, 64, 139, 0.05), rgba(74, 222, 128, 0.05));
            border-radius: 12px;
            border: 1px solid rgba(39, 64, 139, 0.1);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: rgba(39, 64, 139, 1);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: white;
            max-width: 900px;
            width: 90%;
            max-height: 85vh;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 30px 40px;
            background: linear-gradient(135deg, rgba(39, 64, 139, 1), rgba(39, 64, 139, 0.8));
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        .close-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 40px;
            overflow-y: auto;
            max-height: calc(85vh - 120px);
        }

        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: rgba(39, 64, 139, 0.5);
            border-radius: 4px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: rgba(39, 64, 139, 0.7);
        }

        .modal-text {
            font-size: 17px;
            line-height: 1.9;
            color: #374151;
            margin-bottom: 24px;
        }

        .modal-text:last-child {
            margin-bottom: 0;
        }

        /* Modal Popup Styles Only */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease-in-out;
        }

        .video-modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease-out;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: transform 0.3s ease, color 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
        }

        .modal-close:hover {
            transform: rotate(90deg);
            color: #ff4444;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }


        .about-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

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

        .section-header .subtitle {
            font-size: 1.25rem;
            color: #4ade80;
            font-weight: 500;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .content-card {
            background: #f8f9fa;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(1, 4, 131, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease;
        }

        .content-card:hover {
            transform: translateY(-10px);
            border-color: #010483;
            box-shadow: 0 20px 40px rgba(1, 4, 131, 0.15);
        }

        .content-card h2 {
            color: #010483;
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .content-card p {
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #010483 0%, #4ade80 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .drat-highlight {
            background: linear-gradient(135deg, rgba(1, 4, 131, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            border: 2px solid #010483;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease;
        }

        .drat-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(1, 4, 131, 0.05) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .drat-highlight h2 {
            color: #010483;
            font-size: 2.5rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .drat-highlight p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #4a5568;
            position: relative;
            z-index: 1;
        }

        .drat-highlight p span {
            font-weight: bold;
            color: black;
            font-size: 1.5rem;
        }

        .drat-highlight p span::before {
            content: "• "; /* Add a space after the bullet for spacing */
            color: black;  /* Optional: set bullet color */
            font-weight: bold;
            font-size: 1.5rem;
        }

        .stats-container {
            display: none;
        }

        .stat-box {
            display: none;
        }

        .stat-number {
            display: none;
        }

        .stat-label {
            display: none;
        }

        .services-section {
            background: #f8f9fa;
            border-radius: 20px;
            padding: 50px;
            margin-top: 60px;
            border: 1px solid rgba(1, 4, 131, 0.1);
        }

        .services-section h2 {
            color: #010483;
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-item {
            background: #ffffff;
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #010483;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .service-item:hover {
            background: #f8f9fa;
            transform: translateX(10px);
            box-shadow: 0 4px 12px rgba(1, 4, 131, 0.15);
        }

        .service-item h3 {
            color: #010483;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .service-item p {
            color: #4a5568;
        }

        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, rgba(1, 4, 131, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(1, 4, 131, 0.1);
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #010483;
        }

        .cta-button {
            background: #010483;
            color: white;
            border: none;
            padding: 16px 50px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(1, 4, 131, 0.2);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(1, 4, 131, 0.3);
            border-color: #010483;
        }

        .features-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 80px;
        }

        .feature-item {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            opacity: 0;
            animation: slideIn 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }

        .icon-wrapper {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #010483 0%, #4ade80 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-item:hover .icon-wrapper {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 15px 35px rgba(1, 4, 131, 0.3);
        }

        .icon-wrapper::before {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, #4ade80, #010483);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-item:hover .icon-wrapper::before {
            opacity: 0.3;
            animation: rotate 3s linear infinite;
        }

        .icon-wrapper svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .feature-content {
            flex: 1;
        }

        .feature-content h3 {
            color: #010483;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .feature-item:hover .feature-content h3 {
            color: #4ade80;
        }

        .feature-content p {
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .feature-content a {
            color: #4ade80;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-content a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4ade80;
            transition: width 0.3s ease;
        }

        .feature-content a:hover::after {
            width: 100%;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(1, 4, 131, 0.03) 0%, rgba(74, 222, 128, 0.03) 100%);
            border-left: 4px solid #010483;
            padding: 20px 25px;
            margin-top: 15px;
            border-radius: 0 12px 12px 0;
            transition: all 0.3s ease;
        }

        .highlight-box:hover {
            background: linear-gradient(135deg, rgba(1, 4, 131, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
            border-left-width: 6px;
            transform: translateX(5px);
        }

        .highlight-box p {
            margin: 0;
            color: #2d3748;
            font-weight: 500;
        }

        .products-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
            position: relative;
        }

        .section-label {
            color: #4ade80;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            max-width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #4ade80 0%, transparent 100%);
        }

        .main-heading {
            color: #010483;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .intro-text {
            color: #4a5568;
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 900px;
            font-weight: 500;
        }

        .products-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .product-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 25px;
            padding: 50px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #010483 0%, #4ade80 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            border-color: #010483;
            box-shadow: 0 20px 60px rgba(1, 4, 131, 0.1);
            transform: translateY(-5px);
        }

        .product-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .product-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #010483 0%, #4ade80 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .product-title {
            color: #010483;
            font-size: 2rem;
            font-weight: 700;
        }

        .product-content {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .product-content p {
            margin-bottom: 20px;
        }

        .product-content p:last-child {
            margin-bottom: 0;
        }

        .highlight-text {
            color: #010483;
            font-weight: 600;
        }

        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(1, 4, 131, 0.1);
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: #4ade80;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-icon::after {
            content: '✓';
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .feature-text {
            color: #4a5568;
            font-size: 1rem;
        }

        .cta-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #4ade80;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .cta-link:hover {
            color: #010483;
            gap: 12px;
        }

        .cta-link::after {
            content: '→';
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .cta-link:hover::after {
            transform: translateX(5px);
        }

        .drat-special {
            background: linear-gradient(135deg, rgba(1, 4, 131, 0.03) 0%, rgba(74, 222, 128, 0.03) 100%);
            border: 2px solid #4ade80;
        }

        .drat-special::before {
            background: linear-gradient(90deg, #4ade80 0%, #010483 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
        }

        .testimonials-section {
            background: rgba(1, 3, 131, 0.075);
            padding: 20px 0;
            position: relative;
        }

        .testimonials-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            color: #010483;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #4a5568;
            font-size: 1.15rem;
        }

        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonials-wrapper {
            overflow: hidden;
            position: relative;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .testimonial-content {
            background: rgba(255, 255, 255, 0.85);
            padding: 20px 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            border: 1px solid rgba(1, 4, 131, 0.08);
            backdrop-filter: blur(10px);
        }

        .testimonial-text {
            color: #2d3748;
            font-size: 1.25rem;
            line-height: 1.9;
            text-align: center;
            margin-bottom: 35px;
            font-style: italic;
        }

        .testimonial-author {
            text-align: center;
            padding-top: 10px;
            border-top: 1px solid rgba(1, 4, 131, 0.1);
        }

        .author-name {
            color: #010483;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 55px;
            height: 55px;
            background: white;
            border: 2px solid #010483;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #010483;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(1, 4, 131, 0.15);
        }

        .nav-button:hover {
            background: #010483;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: -80px;
        }

        .nav-button.next {
            right: -80px;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(1, 4, 131, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            background: rgba(1, 4, 131, 0.4);
        }

        .dot.active {
            background: #010483;
            width: 35px;
            border-radius: 5px;
        }

         .faq-section {
            background: #f8f9fa;
            padding: 100px 0;
            position: relative;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-label {
            color: #4ade80;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            max-width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #4ade80 0%, transparent 100%);
        }

        .section-title {
            color: #010483;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(1, 4, 131, 0.1);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 30px;
            cursor: pointer;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
            gap: 20px;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .question-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .question-icon {
            width: 40px;
            height: 40px;
            background: #4ade80;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.3rem;
            color: white;
        }

        .question-text {
            color: #2d3748;
            font-size: 1.1rem;
            font-weight: 600;
            flex: 1;
        }

        .toggle-icon {
            width: 30px;
            height: 30px;
            background: rgba(1, 4, 131, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .toggle-icon::after {
            content: '▼';
            color: #010483;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .toggle-icon {
            background: #010483;
        }

        .faq-item.active .toggle-icon::after {
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #f8f9fa;
        }

        .faq-answer-content {
            padding: 0 30px 0 90px;
            color: #4a5568;
            font-size: 1.05rem;
            line-height: 1.8;
        }

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

        .faq-answer a {
            color: #4ade80;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .faq-answer a:hover {
            color: #010483;
        }

        .contact-section {
            background: #ffffff;
            padding: 100px 0;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-header {
            margin-bottom: 60px;
        }

        .contact-label {
            color: #4ade80;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-label::after {
            content: '';
            flex: 1;
            max-width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #4ade80 0%, transparent 100%);
        }

        .contact-heading {
            color: #010483;
            font-size: 3rem;
            font-weight: 800;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-area {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .contact-info-block {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon-circle {
            width: 50px;
            height: 50px;
            background: rgba(74, 222, 128, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.3rem;
            color: #4ade80;
        }

        .contact-info-text h4 {
            color: #010483;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .contact-info-text p {
            color: #4a5568;
            font-size: 1.05rem;
        }

        .contact-info-text a {
            color: #4ade80;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-text a:hover {
            color: #010483;
        }

        .contact-form-area {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(1, 4, 131, 0.08);
        }

        .php-email-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(1, 4, 131, 0.15);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: #4ade80;
            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
        }

        .form-control::placeholder {
            color: #a0aec0;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn-wrapper {
            text-align: center;
            margin-top: 10px;
        }

        .submit-btn-wrapper button {
            background: #010483;
            color: white;
            border: none;
            padding: 16px 50px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(1, 4, 131, 0.2);
        }

        .submit-btn-wrapper button:hover {
            background: #4ade80;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
        }

        .submit-btn-wrapper button:active {
            transform: translateY(0);
        }

        .recaptcha-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #footer {
            background: linear-gradient(135deg, #010483 0%, #001a4d 100%);
            color: #ffffff;
            padding: 0;
        }

        .footer-top {
            padding: 80px 0 60px;
            position: relative;
        }

        .footer-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4ade80, transparent);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .footer-info {
            display: flex;
            gap: 40px;
        }

        .footer-logo-section {
            flex-shrink: 0;
        }

        .footLogo {
            max-width: 120px;
            height: auto;
        }

        .footer-content-section {
            flex: 1;
        }

        .footer-content-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-content-section em {
            color: #4ade80;
            font-style: italic;
            font-weight: 500;
        }

        .footer-content-section a {
            color: #4ade80;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

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

        .social-links a:hover {
            background: #4ade80;
            transform: translateY(-3px);
        }

        .footer-links {
            padding-left: 40px;
        }

        .footer-links h4 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #4ade80;
        }

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

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

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #4ade80;
            padding-left: 5px;
        }

        .footer-links ul li i {
            font-size: 0.8rem;
            color: #4ade80;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            text-align: center;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .footer-copyright a {
            color: #4ade80;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #4ade80;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.1) rotate(180deg);
            }
        }


        /* Preloader  */
        /* Preloader Styles - Completely isolated */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        #preloader.preloader-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-content {
            text-align: center;
        }

        .preloader-chart-container {
            width: 300px;
            height: 200px;
            position: relative;
            margin-bottom: 30px;
        }

        .preloader-candlestick {
            position: absolute;
            bottom: 0;
            width: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: preloaderFadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .preloader-candlestick:nth-child(1) { left: 10px; animation-delay: 0.1s; }
        .preloader-candlestick:nth-child(2) { left: 70px; animation-delay: 0.2s; }
        .preloader-candlestick:nth-child(3) { left: 130px; animation-delay: 0.3s; }
        .preloader-candlestick:nth-child(4) { left: 190px; animation-delay: 0.4s; }
        .preloader-candlestick:nth-child(5) { left: 250px; animation-delay: 0.5s; }

        .preloader-wick-top {
            width: 2px;
            background: currentColor;
            margin-bottom: -1px;
        }

        .preloader-candle-body {
            width: 100%;
            border-radius: 2px;
            position: relative;
            animation: preloaderGrowCandle 0.8s ease forwards;
            transform-origin: bottom;
            transform: scaleY(0);
        }

        .preloader-wick-bottom {
            width: 2px;
            background: currentColor;
            margin-top: -1px;
        }

        .preloader-bullish {
            color: #10b981;
        }

        .preloader-bullish .preloader-candle-body {
            background: #10b981;
            border: 2px solid #10b981;
        }

        .preloader-bearish {
            color: #ef4444;
        }

        .preloader-bearish .preloader-candle-body {
            background: #1a1f3a;
            border: 2px solid #ef4444;
        }

        @keyframes preloaderFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
            from {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        @keyframes preloaderGrowCandle {
            to {
                transform: scaleY(1);
            }
        }

        .preloader-loading-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-loading-subtext {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #8b92b0;
            letter-spacing: 2px;
        }

        @keyframes preloaderPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .preloader-progress-bar {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 20px;
        }

        .preloader-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #3b82f6, #10b981);
            border-radius: 10px;
            animation: preloaderFillProgress 2s ease forwards;
            width: 0;
        }

        @keyframes preloaderFillProgress {
            to { width: 100%; }
        }

        /* Demo page styles */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        .demo-page {
            min-height: 100vh;
            background: #f5f5f5;
            padding: 50px 20px;
        }

        .demo-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .demo-content h1 {
            color: #333;
            margin-bottom: 20px;
        }

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

        

         /* Medium screens */
        @media (max-width: 1024px) {
            .section-header h1 {
                font-size: 2.8rem;
            }

            .content-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .drat-highlight {
                padding: 40px;
            }

            .drat-highlight h2 {
                font-size: 2rem;
            }

            .features-grid {
                gap: 40px 60px;
            }

            .icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .icon-wrapper svg {
                width: 35px;
                height: 35px;
            }

            .feature-content h3 {
                font-size: 1.5rem;
            }

            .feature-content p {
                font-size: 1rem;
            }

            .products-section {
                padding: 10px 20px;
            }

            .main-heading {
                font-size: 3rem;
            }

            .product-card {
                padding: 40px;
            }

            .product-title {
                font-size: 1.75rem;
            }

            .intro-text {
                font-size: 1.1rem;
            }

             .section-title {
                font-size: 2.5rem;
            }

            .testimonial-content {
                padding: 50px 40px;
            }

            .nav-button.prev {
                left: -60px;
            }

            .nav-button.next {
                right: -60px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .faq-question {
                padding: 22px 25px;
            }

            .question-text {
                font-size: 1.05rem;
            }

             .contact-heading {
                font-size: 2.5rem;
            }

            .contact-grid {
                gap: 50px;
            }

            .contact-form-area {
                padding: 35px;
            }
        }

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

            .section-title {
                font-size: 36px;
            }

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

            .modal-content {
                width: 95%;
            }

            .modal-header {
                padding: 20px 25px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-body {
                padding: 25px;
            }

            #about {
                padding: 60px 5%;
            }
            
             .footer-grid {
                gap: 60px;
            }

            .footer-info {
                gap: 30px;
            }

            .footer-links {
                padding-left: 20px;
            }
            
        }

        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                padding-top: 140px;
                gap: 50px;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-visual {
                height: 400px;
            }

            .nav-links {
                display: none;
            }

            .features-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-button, .cta-secondary,  {
                text-align: center;
            }

            .footer-top {
                padding: 60px 0 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-info {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }

            .footLogo {
                max-width: 100px;
            }

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

            .footer-links {
                padding-left: 0;
                text-align: center;
            }

            .footer-links h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links ul li a {
                justify-content: center;
            }

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

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

        /* Small screens */
        @media (max-width: 768px) {
            .about-section {
                padding: 50px 15px;
            }

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

            .section-header .subtitle {
                font-size: 1.1rem;
            }

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

            .content-card {
                padding: 30px;
            }

            .content-card h2 {
                font-size: 1.5rem;
            }

            .drat-highlight {
                padding: 30px 20px;
            }

            .drat-highlight h2 {
                font-size: 1.8rem;
            }

            .drat-highlight p {
                font-size: 1rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

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

            .services-section {
                padding: 30px 20px;
            }

            .services-list {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 30px 20px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .features-section {
                padding: 50px 15px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-item {
                gap: 20px;
            }

            .icon-wrapper {
                width: 65px;
                height: 65px;
            }

            .icon-wrapper svg {
                width: 32px;
                height: 32px;
            }

            .feature-content h3 {
                font-size: 1.4rem;
            }

            .highlight-box {
                padding: 15px 20px;
            }

            .products-section {
                padding: 60px 15px;
            }

            .main-heading {
                font-size: 2.5rem;
            }

            .intro-text {
                font-size: 1.05rem;
            }

            .product-card {
                padding: 30px;
            }

            .product-header {
                flex-direction: row;
                align-items: center;
            }

            .product-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .product-title {
                font-size: 1.5rem;
            }

            .product-content {
                font-size: 1rem;
            }

            .feature-list {
                grid-template-columns: 1fr;
            }

            .testimonials-section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .testimonial-content {
                padding: 40px 30px;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .author-name {
                font-size: 1.2rem;
            }

            .nav-button {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }

            .nav-button.prev {
                left: -25px;
            }

            .nav-button.next {
                right: -25px;
            }

            .faq-section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .question-icon {
                width: 35px;
                height: 35px;
                font-size: 1.1rem;
            }

            .question-text {
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 20px 0 75px;
                font-size: 1rem;
            }

            .toggle-icon {
                width: 28px;
                height: 28px;
            }

            .contact-section {
                padding: 70px 0;
            }

            .contact-heading {
                font-size: 2rem;
            }

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

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

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

            .contact-info-block {
                gap: 15px;
            }

            .contact-icon-circle {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .contact-info-text h4 {
                font-size: 1.2rem;
            }

            .contact-info-text p {
                font-size: 1rem;
            }
        }

        @media (max-width: 640px) {
            .features-strip {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 1.8rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

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

            .content-card h2 {
                font-size: 1.3rem;
                flex-direction: column;
                align-items: flex-start;
            }

            .feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .feature-content h3 {
                font-size: 1.3rem;
            }

            .feature-content p {
                font-size: 0.95rem;
            }

            .main-heading {
                font-size: 2rem;
            }

            .product-card {
                padding: 25px;
            }

            .product-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .product-title {
                font-size: 1.3rem;
            }

            .section-label {
                font-size: 0.85rem;
            }

             .testimonials-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .testimonial-content {
                padding: 35px 25px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }

            .nav-button.prev {
                left: -15px;
            }

            .nav-button.next {
                right: -15px;
            }
            .faq-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .faq-question {
                padding: 18px 15px;
            }

            .question-content {
                gap: 15px;
            }

            .question-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }

            .question-text {
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 15px 0 62px;
                font-size: 0.95rem;
            }

            .toggle-icon {
                width: 26px;
                height: 26px;
            }

            .contact-section {
                padding: 60px 0;
            }

            .tradingview-widget-container{
                padding-left: 0em;
                padding-right: 0em;
                padding-top: 2em;
                padding-bottom: 2em;
            }

            .tradeview_section {
            padding-left: 0.5em;
            padding-right: 0.5em;
        }

            .contact-heading {
                font-size: 1.75rem;
            }

            .contact-form-area {
                padding: 25px 20px;
            }

            .form-control {
                padding: 12px 16px;
                font-size: 0.95rem;
            }

            .submit-btn-wrapper button {
                padding: 14px 40px;
                font-size: 1rem;
            }

            .contact-icon-circle {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }

            .contact-info-text h4 {
                font-size: 1.1rem;
            }
            .footer-top {
                padding: 50px 0 30px;
            }

            .footer-content-section p {
                font-size: 0.95rem;
            }

            .footer-links h4 {
                font-size: 1.3rem;
            }

            .social-links a {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
        }