:root{
    --main-color:#001f3f;
    --btn-color:#001f3f;
    --supportive-color:#222;
    --footer-color:#111;
    --blue-color:#007bff;

    --white-color:#ffffff;
    --supportive-white:#ddd;
    --faq-color:#f1f1f1;
    --main-font:"Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*h1,h2,h3,h4,h5,h6 {
    font-family: var(--main-font);
    
}*/

.unoder-list {
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
}

img {
    width: auto;
}

/* Output images code */
.responsive-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
}

.thumbnail {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.download-btn {
    background-color: var(--btn-color) !important;
    font-weight: 700;
    display: block;
    width: 80%;
    margin: 10px auto;
}

.download-btn:hover {
    text-decoration: none;
}

/* END */


/* Header Styles */
header {
    background: var(--main-color);
    color: var(--white-color);
    padding: 15px 0;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px 0px 20px;
}

/*Logo CSS*/
.logo img {
    height: 30px!important;
}


nav {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: var(--white-color);
    height: 3px;
    width: 25px;
    margin: 5px;
    display: block;
}

/* Banner */
.build_banner {
    font-family: var(--main-font);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 40px 0px;
}

.main_banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.main_banner .banner_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main_banner .banner_text strong {
    font-size: 18px;
    color: #000;
}

.main_banner .banner_text span {
    font-size: 16px;
    color: #666;
}

.emoji {
    margin-right: 10px;
}

.banner_btn {
    background-color: #ffb30b;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

.banner_btn:hover {
    background-color: #ff8c00;
}

@media (max-width: 600px) {
    .build_banner {
        margin: 0px 20px 0px 20px;
    }

    .main_banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .banner_btn {
        width: 100%;
        text-align: center;
    }
}

/* How To download */
.download_section {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    /*margin: 40px 0px;*/
    padding: 60px 0px;
}

.download_main {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.download_heading {
    font-size: 28px;
    color: #1c1c1c;
}

p.description {
    font-size: 16px;
    color: #666;
    /*margin-bottom: 40px;*/
    padding: 0px 20px;
}

.download_features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.download_card {
    max-width: 300px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.download_card i {
    font-size: 40px;
    color: #34495e;
    margin-bottom: 15px;
}

.download_card h3 {
    font-size: 20px;
    color: #2c3e50;
}

.download_card p {
    font-size: 16px;
    color: #666;
}
@media (max-width: 480px) {
    .download_card {
    max-width: 300px;
    /*padding: 20px;*/
    border-radius: 8px;
    text-align: center;
}
}

@media (max-width: 768px) {
    .download_features {
        flex-direction: column;
        align-items: center;
    }

}

/* Table css */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
}

tr:hover {
    background-color: #f1f1f1;
}

.feature {
    font-weight: bold;
}

.our-tool {
    color: green;
}

.others {
    color: red;
}

/* END */
/* FAQs */
.faqs_header p {
    font-weight: 400;
}

.faq {
    border-bottom: 1px solid var(--supportive-white);
    padding: 10px;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background: var(--faq-color);
    border-radius: 5px;
}

.question:hover {
    background: var(--supportive-white);
}

.answer {
    display: none;
    padding: 10px;
    margin-left: 10px;
    background: var(--white-color);
}

.answer.active {
    display: block;
}

.toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.question.active .toggle-icon {
    transform: rotate(180deg);
}

/* END */

/* Share Icon Code */
.share-title {
    color: #007bff;
    font-size: 20px;
    font-weight: bold;
}

.share-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

.icon a {
    color: var(--white-color);
}

.icon.copy {
    position: relative;
}

.popup {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: none;
}

.feedback {
    font-size: 16px;
    color: #6c757d;
    cursor: pointer;
}

@media (max-width: 600px) {
    .icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* END Share Icon Code */

/* Read More Post Style */
.more-post {
    border: 1px dashed #9b1717;
    border-radius: 5px;
    position: relative;
    padding: 15px 9px 0px 9px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 12px;
    background-color: #fff9ee;
}

.more-post:before {
    content: 'Read More';
    position: absolute;
    top: -12px;
    font-size: 14px;
    color: #cb0000;
    left: 10px;
    background: #fff;
    padding: 0 4px;
    font-weight: 500;
    border-radius: 50px;
}

/*END */

/* Coffee */
.support-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.support-button a {
    color: #3d3d3d;
}

.support-text {
    font-size: 18px;
    color: #333;
    white-space: nowrap;
}

.support-button {
    background: #ffdd00;
    color: #3d3d3d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.support-button:hover {
    background: #ffd000;
}

@media (max-width: 600px) {
    .support-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* copyright section */
.lyrics-correction {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* End */

/* Scrol to TOP */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTop i {
    font-size: 20px;
}

#scrollToTop:hover {
    background-color: var(--main-color);
}

/* END Scrol to TOP */


/* footer START */
footer {
    background: var(--supportive-color);
    color: var(--white-color);
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: var(--supportive-white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: var(--supportive-white);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin: 5px;
    font-size: 20px;
    color: var(--white-color);
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--blue-color);
}

.footer-bottom {
    background: var(--footer-color);
    padding: 10px;
    font-size: 14px;
    color: var(--supportive-white);
}

/* Footer END */


/* PAGES CSS */


.highlight {
    color: #870b0b;
    font-weight: bold;
}


/* BLOG INDEX CSS */

/* h1 {
    margin: 0;
    font-size: 28px;
} */

/* Blog Content Styling */
.blog-content {
    margin: 20px auto;
    padding: 20px;
}

.main-heading h1 {
    margin-top: 50px;
}

.home-page h2 {
    color: #0056b3;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

h3 {
    color: #007bff;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

/* List Styling */
ul {
    padding-left: 20px;
}

ul li {
    margin: 5px 0;
}

/* Links Styling */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-content {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }
}


/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
} */

/* header {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
} */

.blog-container {
    width: 80%;
    max-width: 900px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.blog-post {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
}

.blog-post h2 {
    font-size: 18px;
    margin: 10px 0;
}

.blog-post a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

/* h1 {
    margin: 0;
    font-size: 28px;
} */

/* Blog Content Styling */


p {
    font-size: 16px;
    margin: 10px 0;
}

/* List Styling */
ul {
    padding-left: 20px;
}

ul li {
    margin: 5px 0;
}

/* Links Styling */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-content {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }
}

/* END */


/* Responsive design */
/* Header */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active {
        display: flex;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--main-color);
        width: 100%;
        text-align: center;
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* header END */
/* Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer END */


/* END */