﻿
body {
    font-family: 'Inter', sans-serif;
    
    line-height: 1.6;
}
a:hover {
    color: #c61928 !important;
}

.feature-intro {
    font-size: large;
    line-height: 1.9;
}

/* Hero Section - Clean White Background */
.hero-section {
    background: white;
    color: #333;
    padding: 80px 0 100px 0;
    margin-bottom: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}
.hero-subtitle-of-title {
    font-size: 0.7em;
    color: #666;
    font-weight: 380;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Download Button - Gradient Style */
/* Alternative versions */
.simple-gradient-btn {
    background: linear-gradient(90deg, #2d3436 0%, #ff4757 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    min-width:400px;
    max-width: 460px; /* instead of 530px */
    margin: auto; /* center button */
}

    .simple-gradient-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        color: white;
        text-decoration: none;
    }

    .simple-gradient-btn i {
        font-size: 20px;
        background: rgba(255, 255, 255, 0.4);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }


/* Phone Mock-up Styling */
.phone-container {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.phone-mockup {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 6px solid #1a1a1a;
    background: #000;
}



/* Feature Cards */


.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #fd1c1c, #7c0c0c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon i {
        color: white;
        font-size: 24px;
    }

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2B2D42;
}

.feature-text {
    color: #2B2D42;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    background: #282934;
    color: white;
    padding: 20px 0;
    margin: 50px 0 30px 0;
    text-align: center;
    border-radius: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}
/* Final Thoughts Section with Simple Hover Effects */
.final-thoughts {
    background: #282934;
    color: white;
    padding: 20px;
    margin: 50px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    /* Main hover effects */
    .final-thoughts:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    }

    .final-thoughts h2 {
        color: #ff4757;
        font-size: 1.8rem;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;
        margin-top: 30px;
        transition: all 0.3s ease;
    }

        /* Icon hover animation with movement */
        .final-thoughts h2 i {
            transition: all 0.3s ease;
        }

    .final-thoughts:hover h2 i {
        color: #ff6b7a;
        transform: translateX(5px) scale(1.1);
    }
    .final-thoughts p {
        font-size: 1.1rem;
        line-height: 1.7;
        opacity: 0.95;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }
/* FAQ Section */
.faq-section {
    background: #282934;
    color: white;
    padding: 40px 0;
    margin: 50px 0;
    border-radius: 15px;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

    .faq-header h2 {
        color: #ff4757;
        font-size: 1.8rem;
        margin: 0;
    }

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .faq-question.active {
        background: rgba(239, 71, 111, 0.2);
    }

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #ff4757;
    transition: transform 0.3s ease;
}

    .faq-toggle.active {
        transform: rotate(45deg);
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

    .faq-answer.active {
        padding: 20px;
        max-height: 200px;
    }

    .faq-answer p {
        margin: 0;
        line-height: 1.6;
        opacity: 0.9;
    }

/* Footer */
.footer {
    background: #1a1c2e;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .app-screenshot {
        max-width: 250px;
        margin-top: 30px;
    }



    .section-title {
        font-size: 1.5rem;
    }
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #ff4757;
    }
/* Mobile Responsiveness */
@media (max-width: 768px) 
{
    
    .simple-gradient-btn 
    {
        min-width: auto;
        width: 95%;
        max-width: 400px;
        padding: 12px 30px;
        font-size: 18px;
        gap: 10px;
    }

    .simple-gradient-btn i 
    {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .simple-gradient-btn {
        width: 95%;
        max-width: 300px;
        padding: 10px 25px;
        font-size: 16px;
        border-radius: 20px;
    }

        .simple-gradient-btn i {
            width: 24px;
            height: 24px;
            font-size: 14px;
        }
}

@media (max-width: 375px) {
    .simple-gradient-btn {
        width: 90%;
        max-width: 280px;
        padding: 10px 20px;
        font-size: 15px;
    }
}
/* -------------------FOr System Requrements------------------------*/

.feature-card-requirement {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    max-width: 660px; /* limits card size on big screens */
    width: 100%; /* takes full width on small screens */
    margin: 0; /* removes extra margin */
}

.requirements-table {
    width: 100%;
    border-collapse: collapse;
}

    .requirements-table td {
        padding: 8px 10px;
        border-bottom: 1px solid #f1f1f1;
        
    }

.req-label {
    font-weight: 600;
    color: #495057;
    width: 40%; /* keeps labels aligned on small screens */
}

.req-value {
    color: #6c757d;
}

/* 🔹 Mobile adjustments */
@media (max-width: 576px) {
    .feature-card-requirement {
        padding: 15px;
        border-radius: 10px;
    }

    .requirements-table td {
        display: block; /* stack label + value */
        width: 100%;
        text-align: left;
        border-bottom: none;
        padding: 6px 0;
    }

    .req-label {
        font-weight: bold;
        display: block;
        margin-bottom: 2px;
    }
}

.feature-card-requirement:hover 
{
    transform: translateY(-8px);
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff4757;
}
/* ------------------- Pros ans Cons ------------------------*/
.pros-cons-section {
    background: #252630;
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    color: #fff;
}

.pros-cons-header {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff394a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.pros-box, .cons-box {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pros-title, .cons-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-title {
    color: #0dcaf0; /* cyan */
}

.cons-title {
    color: #FF9999; /* red */
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pros-list li, .cons-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.6;
    }

        .pros-list li i {
            color: #ffc107; /* gold star */
        }

        .cons-list li i {
            color: #ffcc00; /* warning yellow */
        }

.pros-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff4757;
}
.cons-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff4757;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
    .pros-cons-wrapper {
        grid-template-columns: 1fr;
    }
}
 
/* -------------------For PC------------------------ */
/* Image  Mock-up Styling */
.phone-container-PC {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.phone-mockup-PC {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}
/* -------------------For iOS------------------------ */
.feature-card-requirement-iOS {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    max-width: 920px; /* limits card size on big screens */
    width: 100%; /* takes full width on small screens */
    margin: 0; /* removes extra margin */
}
    .feature-card-requirement-iOS:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #ff4757;
    }

.pros-list-iOS li, .cons-list-iOS li {
    margin-bottom: 12px;
     
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}
.pros-list-iOS, .cons-list-iOS {
    list-style: none;
    padding: 0;
    margin: 0;
}



    .pros-list-iOS li i {
        color: #ffc107; /* gold star */
    }

    .cons-list-iOS li i {
        color: #ffcc00; /* warning yellow */
    }


/* Privacy specific styles */
.privacy-list {
    list-style: none;
    padding: 0;
}

    .privacy-list li {
        padding: 10px 0;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

        .privacy-list li i {
            color: #ff4757;
            margin-top: 5px;
        }

.privacy-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-card {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

    .contact-card a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        display: inline-block;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

        .contact-card a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }


/* DMCA specific styles */
.dmca-list {
    list-style: none;
    padding: 0;
    counter-reset: dmca-counter;
}

    .dmca-list li {
        padding: 15px 0;
        border-bottom: 1px solid #f1f1f1;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        counter-increment: dmca-counter;
    }

        .dmca-list li::before {
            content: counter(dmca-counter);
            background: linear-gradient(45deg, #fd1c1c, #7c0c0c);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            margin-top: 2px;
            flex-shrink: 0;
        }

.dmca-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-card {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

    .contact-card a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        display: inline-block;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

        .contact-card a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

.info-highlight {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #2196f3;
}

    .info-highlight h4 {
        color: #1565c0;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .info-highlight p {
        color: #1565c0;
        margin: 0;
    }

.process-steps {
    list-style: none;
    padding: 0;
}

    .process-steps li {
        background: #f8f9fa;
        margin: 10px 0;
        padding: 15px 20px;
        border-radius: 10px;
        border-left: 4px solid #ff4757;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .process-steps li i {
            color: #ff4757;
            font-size: 18px;
        }

.hero-section-contactUS {
    background: white;
    color: #333; 
    margin-bottom: 0;
}
.hero-section-privacy {
    background: white;
    color: #333; 
    margin-bottom: 0;
}
.hero-section-DMCA {
    background: white;
    color: #333;
    margin-bottom: 0;
}


/*--------------------*/
/* Toggle Header Styles */
.App-title {
    color: #616060;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease;
}

.toggle-btnn {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 30px;
    background: linear-gradient(30deg, #303334 0%, #ff4757 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .toggle-btnn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .toggle-btnn i {
        transition: transform 0.3s ease;
    }

    .toggle-btnn.active i {
        transform: rotate(45deg);
    }

.card-app {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
    margin-bottom: 20px;
}

    .card-app.show {
        max-height: 2000px;
        opacity: 1;
    }

.card-app-header {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%) !important;
    padding: 25px;
    border-bottom: 3px solid #f5576c;
}

    .card-app-header h2 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .card-app-header p {
        font-size: 1rem;
        opacity: 0.9;
    }

.table {
    margin-bottom: 0;
}

    .table th {
        background: #f8f9fa;
        color: #495057;
        font-weight: 600;
        padding: 15px;
        white-space: nowrap;
        width: 40%;
        border-bottom: 2px solid #dee2e6;
    }

    .table td {
        padding: 15px;
        vertical-align: middle;
        border-bottom: 1px solid #dee2e6;
    }

    .table tbody tr {
        transition: all 0.3s ease;
    }

        .table tbody tr:hover {
            background-color: #f8f9fa;
            transform: translateX(5px);
        }

.badge {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.mod-features {
    list-style: none;
    padding-left: 0;
}

    .mod-features li {
        padding: 5px 0;
        position: relative;
        padding-left: 25px;
    }

        .mod-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

.rating-stars {
    font-size: 1.1rem;
}

.download-count {
    font-weight: bold;
    color: #dc3545;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@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);
    }
}

/* Mobile Responsive Styles for App Info Section */
@media (max-width: 768px) {
    .App-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .toggle-btnn {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .card-app-header {
        padding: 20px 15px;
    }

        .card-app-header h2 {
            font-size: 1.5rem;
        }

        .card-app-header p {
            font-size: 0.9rem;
        }

    .table th {
        padding: 10px 8px;
        font-size: 0.85rem;
        width: 35%;
        white-space: normal;
    }

    .table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .table tbody tr:hover {
        transform: translateX(2px);
    }

    .badge {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

     
    .rating-stars {
        font-size: 1rem;
    }

    .download-count {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .App-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .toggle-btnn {
        padding: 8px 16px;
        font-size: 13px;
        width: 90%;
        max-width: 280px;
    }

    .card-app-header {
        padding: 15px 10px;
    }

        .card-app-header h2 {
            font-size: 1.3rem;
        }

        .card-app-header p {
            font-size: 0.85rem;
        }

    .table th {
        padding: 8px 6px;
        font-size: 0.8rem;
        width: 30%;
    }

    .table td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    .badge {
        padding: 3px 6px;
        font-size: 0.75rem;
    }

    .mod-features li {
        font-size: 0.8rem;
        padding: 2px 0;
        padding-left: 20px;
    }

        .mod-features li:before {
            font-size: 0.8rem;
        }

    .rating-stars {
        font-size: 0.9rem;
    }

    /* Make table more mobile-friendly */
    .table-responsive {
        border-radius: 8px;
        overflow-x: auto;
    }

    .table {
        min-width: 300px;
    }
}


.nav-item a:hover {
    color: #ff4757 !important;
    
}
.nav-item a {
    font-size: 18px;
}
.social-icon {
    margin-right: 15px;
    transition: transform 0.3s ease;
}

    .social-icon:last-child {
        margin-right: 0;
    }

    .social-icon.threads {
        color: #ffffff;
    }

        .social-icon.threads:hover {
            color: #666666;
        }

     
    /* Pinterest Red */
    .social-icon.instagram i {
        color: #E4405F;
         
    }
    .social-icon.instagram i:hover {
        color: #666666;
    }
    /* Instagram Pink */
    .social-icon.youtube i {
        color: #FF0000;
         
    }
    .social-icon.youtube i:hover {
        color: #666666;
    }

/* If you only want footer links black */
footer a {
    color: black;
    text-decoration: none;
}

    /* Optional hover effect */
    footer a:hover {
        color: #ff4757; /* your theme red */
    }

a {
    color: blue;
      /* remove underline if you want */
}

/*-----------------------Slider--------------------*/

    /* Mobile Screenshot Specific Styling */
.mobile-carousel {
    background: #000;
    border-radius: 20px !important;
    overflow: hidden;
    max-width: 350px; /* or adjust as needed */
    margin: 0 auto; /* centers the carousel */
    max-height: 600px;
}
    
    
    .carousel-inner {
        border-radius: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
        opacity: 0.7;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

 
    .carousel-indicators {
        bottom: -3rem;
    }
    
    .carousel-indicators [data-bs-target] {
        background-color: #007bff;
        border: 2px solid #fff;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0;
    }
    
    .carousel-indicators .active {
        background-color: #0056b3;
        transform: scale(1.2);
    }
    
    /* Responsive Design for Different Screen Sizes */

.mobile-screenshot {
    width: 100%; /* fill container width */
    height: 90%; /* preserve natural aspect ratio */
    object-fit: contain; /* fit inside container without distortion */
    transition: opacity 0.3s ease; /* existing loading effect */
}
@media (max-width: 767.98px) {
    .mobile-carousel {
        max-width: 280px;
        max-height: 450px; /* smaller height for mobiles */
    }
}

    


/* Blog Content Styling */
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #222;
}

.blog-content h2 {
    font-size: 1.8rem;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: #343a40;
}

.blog-content p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.6rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.blog-content blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-left: 5px solid #007bff;
    font-style: italic;
    color: #555;
}

.blog-content strong {
    color: #000;
}

.section-title-slider {
    font-size: 2.5rem;
    position: relative;
}

    .section-title-slider::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        border-radius: 2px;
    }
 
/* Blog Card Hover Effect */
.blog-card {
    transition: all 0.3s ease-in-out;
    background-color: #ebebeb73;
}
/*    .blog-card:hover 
    {
        transition: all 0.3s ease-in-out;
        background-color: #ebebeb73;
        transform: translateY(-8px);
        & .feature-card-blog
        {
            box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #ff4757;
        }
    }*/

    .blog-card:hover {
        transition: all 0.3s ease-in-out;
        background-color: #ebebeb73;
        transform: translateY(-8px);
    }

        .blog-card:hover .feature-card-blog {
            box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #ff4757;
        }
.feature-card-blog {
    background: white;
    border-radius: 0px 0px 15px 15px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
}
.toggle-btnn-blog {
    display: block;
    margin: 0 auto 10px;
    padding: 10px 20px;
    background: linear-gradient(30deg, #303334 0%, #ff4757 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}
.toggle-btnn-blog-post {
    display: block;
    
    padding: 10px 20px;
    background: linear-gradient(30deg, #303334 0%, #ff4757 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

    .toggle-btnn-blog :hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }



.f-icon {
    color: #ff4757;
}
.nav-link {
    color: #f8f9fa !important; /* default = light */
}

    .nav-link:hover,
    .nav-link.nav-active {
        color: #ff4757 !important; /* accessible red */
    }
.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 8px;
}

    .blog-content img:not([src]),
    .blog-content img[src=""],
    .blog-content img[src*="undefined"] {
        display: none;
    }

.btn-voice {
    background: linear-gradient(30deg, #303334 0%, #ff4757 100%);
}
.voice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.3), 0 15px 40px rgba(255, 71, 87, 0.2), 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff4757;
}

.rating-box .star {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

    .rating-box .star.active {
        color: gold;
    }
    .rating-box .star.disabled {
        opacity: 0.6;
        cursor: default;
    }


/* slider basics */
.scrolling-wrapper {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .scrolling-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .scrolling-wrapper::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 4px;
    }

.hover-shadow:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* responsive cards */
@media (max-width: 576px) {
    .scrolling-wrapper .card {
        width: 85% !important;
    }
}

.alarm-icon {
    font-size: 1.5rem;
    color: white;
}


