
        :root {
            --primary: #ff5722;
            --secondary: #2196f3;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --success: #4caf50;
            --warning: #ff9800;
            --danger: #f44336;
        }
               :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
       body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0 auto;
            background-color: #f5f5f5;
            
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .bt{ 
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    background-color: #92d1f0;
    color: #fff;
    margin: auto;
}
.bt a{
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #051a93;
    border-radius: 50px;
    color: #eeeaea;
    text-decoration: none;
    transition: all 0.3s ease;
}
        
 /* Author Profile Section */
        .author-profile {
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin: 40px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .author-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-color);
            margin-bottom: 20px;
        }
        
        .author-name {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .author-bio {
            color: #666;
            margin-bottom: 20px;
            max-width: 700px;
        }
        
        .author-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .instagram { 
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }
        .linkedin { background-color: #0077b5; }
        .youtube { background-color: #ff0000; }
        .github { background-color: #333; }
        .medium { background-color: #00ab6c; }
        
        /* Social Share Widget */
        .social-share {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .social-share.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .share-toggle {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .share-toggle:hover {
            transform: scale(1.1);
        }
        
        .share-panel {
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: var(--shadow);
            display: none;
            flex-direction: column;
            gap: 15px;
            width: 220px;
        }
        
        .share-panel.active {
            display: flex;
            animation: fadeIn 0.3s;
        }
        
        .share-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .share-icons {
            display: flex;
            gap: 10px;
        }
        
        .share-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            cursor: pointer;
        }
        
        .copy-link {
            display: flex;
            align-items: center;
            background-color: var(--light-color);
            border-radius: 5px;
            padding: 8px 12px;
            margin-top: 10px;
            cursor: pointer;
        }
        
        .copy-link i {
            margin-right: 8px;
            color: var(--dark-color);
        }
        
        .copy-link-text {
            font-size: 0.9rem;
            color: var(--dark-color);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .author-profile {
                padding: 20px;
            }
            
            .author-avatar {
                width: 120px;
                height: 120px;
            }
            
            .author-name {
                font-size: 1.5rem;
            }
            
            .social-share {
                left: 10px;
            }
            
            .share-toggle {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .share-panel {
                left: 60px;
                width: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .social-share {
                bottom: 20px;
                top: auto;
                left: 10%;
                transform: translateX(-50%);
            }
            
            .share-panel {
                left: 50%;
                bottom: 70px;
                top: auto;
                transform: translateX(-50%);
            }
            
            .share-panel.active {
                flex-direction: row;
                flex-wrap: wrap;
                width: auto;
                max-width: 90vw;
            }
            
            .copy-link {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-50%) translateX(-10px); }
            to { opacity: 1; transform: translateY(-50%) translateX(0); }
        }
        


        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
        }
        
        .btn:hover {
            background-color: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
        }
        
        .btn-secondary:hover {
            background-color: #1976d2;
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
        }
        
        .btn-lg {
            padding: 15px 40px;
            font-size: 1.2rem;
        }

    
        h1, h2, h3 {
            color: #ff5722;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 2px solid #ff5722;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 30px;
        }
        h3 {
            font-size: 1.4rem;
        }
      
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th, td {
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f5f5f5;
        }
        .btn {
            display: inline-block;
            background: #ff5722;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
        
            margin: 10px 0;
            font-weight: bold;
        }
        .faq-item {
            margin-bottom: 15px;
        }
        .faq-question {
            font-weight: bold;
            color: #ff5722;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
        }
        
        /* App Info Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .app-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .info-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .info-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Features Section */
        .features {
            background-color: var(--light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-card h3 i {
            color: var(--primary);
        }
        
        /* How To Section */
        .steps {
            counter-reset: step-counter;
        }
        
        .step {
            display: flex;
            margin-bottom: 30px;
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: var(--primary);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom-right-radius: 10px;
        }
        
        .step-content {
            margin-left: 70px;
        }
        
        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-header {
            background-color: white;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background-color: #f5f5f5;
        }
        
        .accordion-header i {
            transition: transform 0.3s ease;
        }
        
        .accordion-content {
            background-color: white;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .accordion-item.active .accordion-header {
            background-color: var(--primary);
            color: white;
        }
        
        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }
        
        .accordion-item.active .accordion-content {
            max-height: 300px;
            padding: 20px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #e64a19;
            transform: translateY(-5px);
        }
        
        /* Download Timer */
        .download-timer {
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .timer-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: conic-gradient(var(--primary) 0%, #f5f5f5 0%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            position: relative;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .timer-circle::before {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            background-color: white;
            border-radius: 50%;
        }
        
        .timer-seconds {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark);
            z-index: 1;
        }
        
        .timer-text {
            font-size: 1rem;
            color: #666;
            text-align: center;
        }
        
        /* New Styles for APK Sections */
        .apk-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .apk-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .apk-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .apk-title {
            flex: 1;
        }
        
        .apk-title h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .apk-title p {
            color: #666;
        }
        
        .download-wrapper {
            text-align: center;
            margin: 30px 0;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .share-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            background-color: #f5f5f5;
            border-radius: 50px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .share-btn i {
            margin-right: 8px;
        }
        
        .facebook-btn { background-color: #3b5998; color: white; }
        .twitter-btn { background-color: #1da1f2; color: white; }
        .whatsapp-btn { background-color: #25d366; color: white; }
        .telegram-btn { background-color: #0088cc; color: white; }
        .copy-btn { background-color: var(--primary); color: white; }
        
        .screenshots {
            margin-top: 40px;
        }
        
        .screenshots h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            text-align: center;
        }
        
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .screenshot-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .screenshot-item:hover {
            transform: scale(1.03);
        }
        
        .screenshot-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        img{width: 100%;height:600px;}
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
                align-items: center;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .step {
                flex-direction: column;
            }
            
            .step::before {
                position: relative;
                margin-bottom: 15px;
                width: 50px;
                height: 50px;
                border-radius: 50%;
            }
            
            .step-content {
                margin-left: 0;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
                bottom: 20px;
                right: 20px;
            }
            
            .apk-header {
                flex-direction: column;
                text-align: center;
            }
            
            .apk-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            img{width: 100%;height:300px;}
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
            
            .btn-lg {
                padding: 12px 30px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .info-card, .feature-card {
                padding: 20px;
            }
            
            .timer-circle {
                width: 60px;
                height: 60px;
            }
            
            .timer-circle::before {
                width: 50px;
                height: 50px;
            }
        }
  