 :root {
            --primary-color: #142850;
            --secondary-color: #27496d;
            --accent-color: #ffa62b;
            --text-color: #333;
            --light-bg: #f0f5f9;
            --white: #ffffff;
            --gradient-bg: linear-gradient(135deg, #142850, #0c7b93);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Stock Ticker Styles */
        .stock-ticker {
            background: var(--primary-color);
            color: white;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 10;
        }
        
        .stock-ticker-content {
            display: inline-block;
            animation: ticker 30s linear infinite;
        }
        
        .stock-item {
            display: inline-block;
            margin-right: 30px;
        }
        
        .stock-item .stock-name {
            font-weight: bold;
        }
        
        .stock-item .stock-price {
            margin-left: 5px;
        }
        
        .stock-item .stock-change.positive {
            color: #4caf50;
        }
        
        .stock-item .stock-change.negative {
            color: #f44336;
        }
        
        @keyframes ticker {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        /* Countdown Timer Styles */
        .countdown-timer {
            background: var(--accent-color);
            color: white;
            padding: 15px 0;
            text-align: center;
            font-weight: bold;
        }
        
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-value {
            font-size: 1.8rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            padding: 5px 10px;
            min-width: 60px;
            text-align: center;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        /* Pulsating Button Styles */
        .pulsating-button {
            animation: pulse 2s infinite;
            box-shadow: 0 0 0 rgba(255, 166, 43, 0.4);
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 166, 43, 0.4);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 20px rgba(255, 166, 43, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 166, 43, 0);
            }
        }
        
        /* Certification Badges Styles */
        .certification-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }
        
        .badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 150px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .badge-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .badge-title {
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .badge-description {
            font-size: 0.8rem;
            color: #666;
        }
        
        /* Stock Chart Styles */
        .stock-charts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .stock-chart {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stock-chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .stock-chart-title {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .stock-chart-change {
            font-weight: bold;
        }
        
        .stock-chart-change.positive {
            color: #4caf50;
        }
        
        .stock-chart-change.negative {
            color: #f44336;
        }
        
        .stock-chart-image {
            width: 100%;
            height: 150px;
            background-color: #f5f5f5;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .stock-chart-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        
        
        .hero {
            background: var(--gradient-bg);
            color: white;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('static/images/bgc.gif');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .hero h1::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            margin: 15px auto 0;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background-color: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: white;
            font-size: 1.5rem;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        .stats-counter {
            background: var(--white);
            padding: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-family: 'Arial', sans-serif;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .features {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }
        
        .features::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--light-bg);
            clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 20px auto 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
        }
        
        .feature-card:hover::before {
            height: 8px;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2);
        }
        
        .about {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-text p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .expertise-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        
        .expertise-item {
            display: flex;
            align-items: center;
        }
        
        .expertise-icon {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        
        .book-cta {
            background: var(--gradient-bg);
            padding: 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .book-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1200/600');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .book-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .book-image {
            max-width: 300px;
            margin: 0 auto 30px;
            transform: perspective(1000px) rotateY(10deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }
        
        .book-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .book-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        
        .testimonials {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
        }
        
        .testimonial-slider {
            max-width: 900px;
            margin: 50px auto 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            margin: 20px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 6rem;
            color: rgba(0, 0, 0, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .portfolio {
            padding: 100px 0;
            background: var(--white);
        }
        
        .performance-graph {
            max-width: 900px;
            margin: 50px auto 0;
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .graph-placeholder {
            width: 100%;
            height: 400px;
            background-image: url('/api/placeholder/800/400');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }
        
        .faq {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .faq-list {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--primary-color);
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            opacity: 0;
        }
        
        .faq-answer.active {
            padding: 0 30px 20px;
            height: auto;
            opacity: 1;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .whatsapp-group {
            padding: 100px 0;
            background: var(--gradient-bg);
            color: white;
            text-align: center;
            position: relative;
        }
        
        .whatsapp-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1200/600');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .whatsapp-content {
            position: relative;
            z-index: 1;
        }
        
        .phone-mockup {
            max-width: 300px;
            margin: 50px auto;
            position: relative;
            transition: all 0.5s ease;
        }
        
        .phone-mockup:hover {
            transform: translateY(-10px);
        }
        
        .phone-mockup img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        
        .steps {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .step {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .step:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            margin-bottom: 20px;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .cta-section {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }
        
        .cta-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .cta-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .cta-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .cta-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .disclaimer {
            max-width: 800px;
            margin: 20px auto;
            font-size: 0.9rem;
            opacity: 0.7;
            text-align: center;
        }
        
        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .expertise-list {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
		.floating-button-container {
		position: fixed;
		bottom: 30px;
		left: 0;
		right: 0;
		display: flex;
		justify-content: center;
		z-index: 1000;
		pointer-events: none;
		}
		@keyframes bounce {
		0%, 100% {
		transform: translateY(0);
		}
		50% {
		transform: translateY(-10px);
		}
		}
		.floating-button {
		position: relative;
		background: #FFA62B;
		color: white;
		padding: 15px 30px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: bold;
		font-size: 18px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		display: flex;
		align-items: center;
		gap: 10px;
		animation: bounce 2s infinite;
		transition: all 0.3s ease;
		white-space: nowrap;
		pointer-events: auto;
		}
		
		.floating-button:hover {
		transform: scale(1.05);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
		}
		
		.floating-button .icon {
		font-size: 24px;
		}
		
		@media (max-width: 768px) {
		.floating-button-container {
		bottom: 20px;
		}
		
		.floating-button {
		font-size: 16px;
		padding: 12px 24px;
		}
		}
		