@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

:root {

            --accent: #007aff; /* Apple Blue Style */

            --bg: #ffffff;

            --text-main: #1d1d1f;

            --text-sub: #86868b;

            --gray-light: #f5f5f7;

        }



        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: 'Google Sans', sans-serif !important;

        }



        body {

            background-color: var(--bg);

            color: var(--text-main);

            -webkit-font-smoothing: antialiased;
            
            font-family: 'Google Sans', sans-serif !important;

        }



        /* --- UNIQUE HERO SECTION --- */

        .hero {

            padding: 80px 20px;

            display: flex;

            flex-direction: column;

            align-items: center;

            text-align: center;

            border-bottom: 1px solid #e5e5e5;

        }



        .container {

            max-width: 900px;

            width: 100%;

        }



        .app-icon-wrapper {

            margin-bottom: 24px;

            position: relative;

            display: inline-block;

        }



        .app-icon {

            width: 120px;

            height: 120px;

            border-radius: 28px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.08);

            object-fit: cover;

        }



        h1 {

            font-size: clamp(32px, 5vw, 48px);

            font-weight: 700;

            letter-spacing: -0.02em;

            margin-bottom: 16px;

            line-height: 1.1;

        }



        .hero p {

            font-size: clamp(17px, 2vw, 20px);

            color: var(--text-sub);

            max-width: 600px;

            margin: 0 auto 32px;

            line-height: 1.5;

        }



        /* --- STATS BAR --- */

        .meta-bar {

            display: flex;

            justify-content: center;

            gap: 20px;

            margin-bottom: 32px;

            font-weight: 500;

            font-size: 14px;

            color: var(--text-main);

        }



        .meta-item {

            display: flex;

            align-items: center;

            gap: 5px;

        }



        .star-rating {

            color: #ff9500;

        }



        /* --- UNIQUE BUTTON --- */

        .btn-download {

            display: inline-block;

            background: linear-gradient(180deg, #007aff 0%, #005bc5 100%);

            color: #ffffff;

            padding: 18px 48px;

            border-radius: 50px;

            text-decoration: none;

            font-size: 18px;

            font-weight: 600;

            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;

            box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);

            margin-bottom: 40px;

        }



        .btn-download:hover {

            transform: scale(1.03);

            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);

        }



        /* --- SPECS GRID --- */

        .apk-specs {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));

            gap: 15px;

            margin-top: 20px;

        }



        .spec-card {

            background: var(--gray-light);

            padding: 15px;

            border-radius: 16px;

            text-align: center;

        }



        .spec-label {

            display: block;

            font-size: 11px;

            color: var(--text-sub);

            text-transform: uppercase;

            letter-spacing: 0.05em;

            margin-bottom: 4px;

        }



        .spec-value {

            font-size: 14px;

            font-weight: 600;

        }



        /* Responsive */

        @media (max-width: 600px) {

            .hero { padding: 50px 16px; }

            .app-icon { width: 100px; height: 100px; }

            .meta-bar { gap: 10px; font-size: 12px; }

            .btn-download { width: 100%; padding: 16px; }

        }

/* Site Header */
        

.header-outer,.menu-icon,.nav-link {
    position: relative
}



.header-outer {
    background-color: #ffffff;
    padding: 14px 16px;
    
    /* Sticky Magic */
    position: sticky; 
    top: 0;
    z-index: 1000; /* Isse header hamesha sabke upar rahega */
    
    /* Scroll karte waqt depth ke liye shadow */
    border-bottom: 1px solid #f0f0f2;
}

.header-inner {
    max-width: 1000px; /*950 defalt*/
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.site-title-link {
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

span.site-title {
    font-size: 26px;
    font-weight: 700;
    display: block;
    color: #000;
}

span.site-tagline {
    font-size: 13px;
    font-weight: 600;
    display: block;
    color: #000;
}

@media (max-width: 580px) {
    .site-title-link {
        font-size: 23px;
    }
}

.custom-table td a,
.nav-link {
    text-decoration: none;
    font-size: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    position: relative;
}

.nav-link {
    color: #000000;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: .3rem;
    cursor: pointer;
    color: #000000;
}

.menu-icon {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.menu-line,
.menu-line:after,
.menu-line:before {
    display: block;
    width: 22px;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    transition: .3s ease-in-out;
}

.menu-line {
    top: 50%;
    transform: translateY(-50%);
}

.menu-line:before {
    content: '';
    top: -8px;
}

.menu-line:after {
    content: '';
    bottom: -8px;
}

@media (max-width: 981px) {

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 15px;
        gap: 0;
        background-color: #ffffff !important;
        box-shadow: 0 2px 4px rgba(0,0,0,.15);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity .3s, transform .3s;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 15px;
        color: #000000 !important;
        transition: background-color .3s, padding-left .3s;
    }

    .nav-link:hover {
        background-color: #f2f2f2 !important;
        color: #000000 !important;
        padding-left: 20px;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-toggle[aria-expanded=true] .menu-line {
        background: transparent;
    }

    .mobile-menu-toggle[aria-expanded=true] .menu-line:before {
        top: 0;
        transform: rotate(45deg);
        background: #000000;
    }

    .mobile-menu-toggle[aria-expanded=true] .menu-line:after {
        top: 0;
        transform: rotate(-45deg);
        background: #000000;
    }
}

/* End Site Header */

/* Skip To Main */
.skip-to-content,.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.skip-to-content:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    clip: auto;
    padding: .5rem 1rem;
    background: var(--color-primary);
    color: #fff;
    z-index: 999;
    text-decoration: none;
    border-radius: 4px
}

/* End Skip To Main */

/* CSS FOR FEATURES SECTION */
.features {
    /*padding: 80px 20px; */
    background-color: #ffffff;
}

.container-text {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
}

.features h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 15px;
    color: #1d1d1f;
    letter-spacing: -0.03em;
}

.features p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: #fbfbfd;
    border-radius: 24px;
    border: 1px solid #f0f0f2;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #007aff;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.f-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.feature-box p {
    font-size: 15px;
    color: #86868b;
    line-height: 1.5;
}

@media (max-width: 600px) {
    /*.features { padding: 50px 20px; } */
    .features-grid { gap: 15px; }
    .feature-box { padding: 20px; }
}

/* CSS FOR CONTENT SECTION */
.article-content {
    padding: 20px 20px;
    background-color: #ffffff;
    max-width: 1000px; /* Thinner text for better readability */
    margin: 0 auto;
    text-align: left;
    font-family: 'Google Sans', sans-serif !important;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #222;
}


.article-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 25px; 
  margin-bottom: 10px;
  color: #000000;
  text-align: left; /* white text */
  
}

.article-content h3 {
  font-size: 1.2rem;
  margin-top: 25px;
    margin-bottom: 10px; 
  color: #000000;
}

.article-content p {
 /*  margin-bottom: 15px; */
}

.article-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #3c3c43;
    /*margin-bottom: 20px; */
    text-align: left;
}

.article-content strong {
    color: #000;
}

.info-highlight {
    background: #f5f5f7;
    padding: 25px;
    border-radius: 12px;
    font-size: 16px;
    color: #444;
    margin: 30px 0;
}


@media (max-width: 768px) {
  .article-content {
    padding: 20px 15px;
  }

  .article-content h1 {
    font-size: 1.8rem;
  }

  .article-content h2 {
    font-size: 1.4rem;
  }
}

/* CSS FOR COMPARISON TABLE */
.comparison {
    /*padding: 60px 20px; */
    /*background-color: #fbfbfd;*/ /* Light contrast from content section */
}

.table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto; /* For mobile responsiveness */
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f0f0f2;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 500px;
}

.comparison-table thead tr {
    background-color: #f5f5f7;
    border-bottom: 2px solid #e5e5e7;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f2;
}

.comparison-table th {
    font-weight: 700;
    color: #1d1d1f;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1d1d1f;
    background-color: #fafafa;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Row highlights */
.comparison-table td:nth-child(3) {
    color: #007aff; /* Highlighting the APK benefits */
    font-weight: 600;
}

@media (max-width: 600px) {
    /*.comparison { padding: 40px 15px; } */
    .comparison-table th, .comparison-table td { padding: 15px 10px; font-size: 13px; }
}

/* --- UPDATED CENTERED & 1000PX LAYOUT --- */
.visual-features {
    /* padding: 80px 20px;*/
    background-color: #ffffff;
    width: 100%;
    padding-top: 50px;
}

.visual-features .container {
    max-width: 1000px; /* Aapki demand ke hisab se 1000px */
    margin: 0 auto;    /* Isse container center mein aa jayega */
    display: flex;
    flex-direction: column;
    gap: 100px;        /* Rows ke beech ka gap */
}

.v-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;         /* Image aur Text ke beech ka gap */
    width: 100%;
}

.v-feature-row.reverse {
    flex-direction: row-reverse;
}

.v-feature-img {
    flex: 1;
}

.v-feature-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    /*box-shadow: 0 15px 35px rgba(0,0,0,0.08);*/
    border: 6px solid #f8f9fa;
}

.v-feature-text {
    flex: 1;
    text-align: left; /* Desktop par text left rahega */
}

.v-badge {
    background: #eef6ff;
    color: #007aff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.v-feature-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.2;
}

.v-feature-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 850px) {
    .visual-features {
        /*padding: 50px 15px;*/
        padding-top: 50px;
    }

    .visual-features .container {
        gap: 60px;
    }

    .v-feature-row, 
    .v-feature-row.reverse {
        flex-direction: column !important; 
        text-align: left; /* Mobile par sab kuch center */
    }

    .v-feature-row.reverse .v-feature-img {
        order: -1; 
    }

    .v-feature-text {
        text-align: left;
    }

    .v-feature-img img {
        max-width: 100%;
        border-radius: 18px;
    }

    .v-feature-text h3 {
        /*font-size: 26px;*/
    }
}

/* CSS FOR HOW TO DOWNLOAD SECTION */
.how-to {
    padding: 50px 0px;
    /*background-color: #f8fafc; */ /* Subtle contrast */
    width: 100%;
}

.container-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.step-badge {
    background: #007aff;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-header h2 {
    /*font-size: 32px;*/
    /*margin: 15px 0;*/
    color: #111;
}

.section-header p {
    color: #64748b;
    font-size: 18px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.step-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #007aff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-number {
    width: 35px;
    height: 35px;
    background: #007aff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Mini Download Bar */
.download-mini-bar {
    background: #1e293b;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    flex-wrap: wrap;
    gap: 20px;
}

.download-mini-bar p {
    font-weight: 600;
    font-size: 18px;
    color: white;
}

.mini-btn {
    background: #ffffff;
    color: #1e293b;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.3s;
}

.mini-btn:hover {
    background: #f1f5f9;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .download-mini-bar {
        text-align: center;
        justify-content: center;
    }
    .mini-btn {
        width: 100%;
        text-align: center;
    }
    .section-header h2 {
        /*font-size: 26px;*/
    }
}

/* CSS FOR INSTALLATION GUIDE */
.install-guide {
    padding: 50px 0px;
    background: #ffffff;
}

.os-section {
    padding: 40px;
    border-radius: 24px;
    background: #f9f9fb;
    margin-bottom: 40px;
}

.os-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.os-icon {
    font-size: 32px;
}

.os-header h2 {
    
    color: #1d1d1f;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.i-step {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #eee;
}

.i-num {
    background: #111;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.i-step p {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.os-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* iOS Specific Style */
.ios {
    background: #f1f1f1;
}

.ios .i-num {
    background: #007aff; /* Apple Blue */
}

/* Mobile Fix */
@media (max-width: 600px) {
    .os-section { padding: 25px 20px; }
    .os-header h2 { font-size: 22px; }
    .install-steps { grid-template-columns: 1fr; }
}

/* CSS FOR APP INFO SECTION */
.app-specs {
    padding: 50px 0px;
    background: #ffffff;
}

.specs-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.specs-table-container {
    flex: 1.2;
}

.specs-table-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #f0f0f2;
    border-radius: 10px;
}

.specs-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f2;
    font-size: 15px;
    color: #444;
}

.specs-table tr td:first-child {
    background: #fafafa;
    width: 40%;
    color: #111;
}

.specs-table a {
    color: #007aff;
    text-decoration: none;
    font-weight: 600;
}

/* Download Box Right Side */
.download-action-box {
    flex: 0.8;
    background: #f8fafc;
    border-radius: 24px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.action-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.action-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 5px 5px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dl-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.dl-text small {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    text-align: center;
}

.dl-text span {
    font-size: 16px;
    font-weight: 700;
}

.android-dl {
    background: #22c55e;
    color: white;
}

.ios-dl {
    background: #111;
    color: white;
}

.dl-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.safety-badge {
    display: block;
    margin-top: 20px;
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 850px) {
    .specs-wrapper {
        flex-direction: column;
    }
    .specs-table-container, .download-action-box {
        width: 100%;
    }
}

/* CSS FOR FAQ SECTION */
.faq-section {
    padding: 50px 0px;
    background-color: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
  
    color: #111;
}

.faq-header p {
    color: #666;
}

.faq-list {
    max-width: 1000px; /* Text reading focus */
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #f9fafb;
    padding: 20px;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    font-size: 17px;
}

.faq-answer {
    padding: 20px;
    line-height: 1.6;
    color: #4b5563;
    font-size: 15px;
    border-top: 1px solid #e5e7eb;
}

/* Mobile Fix */
@media (max-width: 600px) {
    .faq-section { padding: 50px 0px; }
    .faq-question { font-size: 15px; padding: 15px; }
    .faq-answer { font-size: 14px; }
}

/* CSS FOR APP GALLERY */
.app-gallery {
    padding: 60px 0px;
    /*background-color: #f8fafc; */
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Mobile par ungli se swipe hoga */
    padding-bottom: 20px;
    scrollbar-width: thin;
    /*scrollbar-color: #007aff #f1f1f1;*/
}

/* Scrollbar styling for Chrome/Safari */
.gallery-scroll::-webkit-scrollbar {
    height: 6px;
}
.gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.gallery-scroll::-webkit-scrollbar-thumb {
    background: #007aff;
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 300px; /* Har image ki fixed width desktop par */
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.1);*/
    border: 4px solid #ffffff;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 250px; /* Mobile par thodi choti images */
    }
    .app-gallery {
        padding: 40px 0px;
    }
}

/* CSS FOR VIDEO SECTION */
.video-section {
    padding: 80px 0px;
    background-color: #ffffff;
}

.container-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

.v-label {
    background: #ff0000; /* YouTube Red */
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.video-wrapper {
    max-width: 1000px; /* Video ko thoda narrow rakha hai professional dikhne ke liye */
    margin: 0 auto;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    /*box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);*/
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-footer-text {
    text-align: center;
    margin-top: 30px;
    color: #64748b;
    font-size: 15px;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .video-section {
        padding: 50px 0px;
    }
    .video-wrapper {
        border-radius: 10px;
        padding: 5px;
    }
    .video-container {
        border-radius: 15px;
    }
    .section-header h2 {
        /*font-size: 24px;*/
    }
}

/* SIMPLE BULLET CSS */
.simple-features-box {
    background: #fcfcfd;
    padding: 20px 10px;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid #edf2f7;
}

.simple-features-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.clean-list {
    list-style: none; /* Default hata diya */
    padding: 0;
}

.clean-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* Custom Simple Dot */
.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #007aff; /* Blue dot */
    border-radius: 50%;
}

@media (max-width: 768px) {
    .simple-features-box {
        padding: 20px 10px;
    }
}

/* CSS FOR WHATS NEW SECTION */
.whats-new {
    padding: 80px 0px;
    /*background-color: #fbfbfd;*/
}

.update-header {
    text-align: left;
    margin-bottom: 40px;
}

.version-tag {
    background: #eef6ff;
    color: #007aff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.changelog-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 10px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.log-entry {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.log-entry:last-child {
    border-bottom: none;
}

.log-label {
    background: #111;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Color Coding for Labels */
.log-entry:nth-child(1) .log-label { background: #22c55e; } /* Green for New */
.log-entry:nth-child(3) .log-label { background: #64748b; } /* Gray for Fix */

.log-content h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 5px;
    font-weight: 700;
}

.log-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .log-entry {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    .update-header h2 {
        /*font-size: 26px;*/
    }
}

/* CSS FOR COMMUNITY SECTION */
.community-join {
    padding: 60px 0px;
    background-color: #ffffff;
}

.community-card {
    background: linear-gradient(135deg, #0088cc 0%, #0072ff 100%);
    border-radius: 32px;
    padding: 50px;
    color: white;
    /*box-shadow: 0 20px 40px rgba(0, 136, 204, 0.2);*/
    position: relative;
    overflow: hidden;
}

/* Background Abstract Circle Decor */
.community-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.community-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.comm-text {
    flex: 1.2;
}

.comm-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.comm-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff !important; /* Force white */
}

.comm-text p {
    font-size: 18px;
    opacity: 0.9;
    color: #fff !important;
}

.comm-action {
    flex: 0.8;
    text-align: right;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #0088cc;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.telegram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.tg-icon {
    width: 28px;
    height: 28px;
}

/* Responsive Mobile */
@media (max-width: 850px) {
    .community-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .comm-action {
        width: 100%;
    }
    .telegram-btn {
        width: 100%;
        justify-content: center;
    }
    .community-card {
        padding: 40px 25px;
    }
    .comm-text h2 {
        font-size: 25px;
    }
}

.disclaimer-area { padding: 40px 0px; }
.disclaimer-box { 
    background: #fff5f5; 
    border: 1px solid #feb2b2; 
    padding: 20px; 
    border-radius: 12px; 
    font-size: 13px; 
    color: #c53030; 
}

.embox {
    color: white;
    text-decoration: none;
}

/* Site footer */
.contact,.footer-widget {
    display: flex;
    flex-wrap: wrap
}

.copyright,.footer-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.footer-outer {
    background-color: #121212;
    padding: 60px 30px 90px
}

.footer-inner {
    border-bottom: 1px solid #414141
}

.footer-widget {
    justify-content: space-between;
    gap: 60px 20px;
    margin-bottom: 60px
}

@media (min-width: 721px) {
    .about-us {
        max-width:45%
    }
}

.about-us,.site-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-widget-heading {
    font-size: 23px;
    font-weight: 700;
    color: #fff
}

p.about {
    color: #f3f3f3;
    font-size: 17px
}

.site-links ul {
    display: block;
    list-style-type: none
}

.site-links li {
    margin-bottom: 0
}

.site-links a {
    color: #c6c6c6;
    text-decoration: none;
    height: 14px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px
}

.contact>a,.copyright span,.site-links a:hover {
    color: #fff
}

.contact {
    background-color: #363535;
    padding: 5px 10px;
    margin-top: 25px;
    color: #f3f3f3;
    gap: 5px;
    width: fit-content;
    align-items: center;
    border-radius: 5px;
}

.copyright {
    color: #c6c6c6;
    margin-top: 50px
}

.copyright,.copyright a,.copyright p {
    font-size: 15.5px
}

.contact>a {
    font-size: 17px;
    margin-bottom: 2px
}

.contact>a:hover {
    color: #d7d9e9
}


/* End Site footer */

/* SEO Image CSS */
.article-visual {
    margin: 30px 0;
    text-align: center;
}

.seo-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.seo-featured-img:hover {
    transform: translateY(-5px);
}

.img-caption {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 12px;
    font-style: italic;
}

/* Link Styling */
.internal-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #d2e3fc;
}

.external-link {
    color: #34a853; /* Green for Official External Link */
    text-decoration: none;
    font-weight: 600;
}

.internal-link:hover, .external-link:hover {
    border-bottom: 2px solid currentColor;
}

