/* styles.css */

/* Reset default margin and padding */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');

body,
h1,
h2,
h3,
ul {
    margin: 0;
    padding: 0;
    font-family:   sans-serif !important;
    color: #333;
    text-decoration: none; /* Removes underline
    
     from all links */

     
     




}

.topdes{
    color: white;
    font-size: 17px;
    margin-bottom: 30px;
}

strong{
    color:#dd0000;
}
i{
    color:#dd0000 !important;
}
body{
    background: #ffffff;
}

a{
    color: #0077b6;
    text-decoration: none;
}


/* Basic styling for header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #ffffff;
    color: #340027;
    position: relative;
    border-bottom: 0.5px solid rgb(232, 232, 232);
}

.logo {
    font-size: 1.7em;
    margin-left: 10px;
    margin-bottom: -12px;
    margin-top: -12px;
}

.logo img{
    width: 180px;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 100px;
}

.nav-menu li {
    margin-left: 45px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight:600;
    font-size: 15px;
}

/* Toggle button styles */
.toggle-button {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Overlay menu styles */
.nav-overlay {
    position: fixed;
    top: 0;
    left: -250px; /* Hidden off-screen */
    width: 200px;
    height: 100%;
    background-color: #000000;
    color: #fff;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.nav-overlay nav ul {
    list-style: none;
    padding: 0;
}

.nav-overlay nav li {
    margin-bottom: 20px;
}

.nav-overlay nav a {
    color: #fff;
    text-decoration: none;
}

/* Close button styles */
.close-button {
    font-size: 2em;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .toggle-button {
        display: block;
    }
   
}



/* Heading Features */

.content-container {
    background-color: #ffffff;
    padding: 30px;
    max-width: 100%;
    text-align: center;
    position: relative;
    text-align: justify;
    font-family:Assistant !important;


    
}

.content-container h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #112d4e; /* Custom color for heading */
    font-weight: bold;
    text-align: center;

}

.content-container p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #112d4e;
    font-weight: 500;
    font-family:Assistant !important;

}

/* Mobile styles */
@media (max-width: 768px) {
    .content-container {
        padding: 30px;
    }

    .content-container h1 {
        font-size: 1.4em;
    }

    .content-container p {
        font-size: 0.9em;
    }
}

/* Add a unique design element */
.content-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 8px 8px 0 0;
}


/* Features ......................*/
.features-container {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: #eaeaea;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2em;
    margin-right: 15px;
    color: #88F137;; /* Customize icon color */
    animation: pulse 1.5s infinite;
}

.feature-description h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.feature-description p {
    margin: 5px 0 0;
    color: #666;
}

/* Keyframe animation for icon pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}



/* How to Download*/
.container {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 50px;
}

.content-left {
    flex: 1;
    margin-top: 0px;

}

.content-right {
    flex: 1;
    text-align: center;
    margin-top: -35px;
}

.content-right img {
    max-width: 100%;
    height: auto;
    width: 450px;

}

/* Heading and paragraph styling */
.content-left h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #333;
    font-weight: bold;
    line-height: 1.5;

}

.content-left p {
    font-size: 1.1em;
    color: #4a4a4a;
    font-weight: 400;
    text-align: justify;
    line-height: 1.8;

}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 10px;
        padding: 15px;
    }

    .content-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .content-left h2 {
        font-size: 1.8em;
    }

    .content-left p {
        font-size: 0.9em;
    }
}


/* FAQ Section Styling */
.faq-container {
    margin: 40px auto;
    width:94%;
    padding: 20px;
}

.faq-heading {
    font-size: 2rem;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(0, 1fr); /* 4 questions per row */
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    
}

.faq-question {
    padding: 15px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;

}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.arrow {
    font-size: 1.2rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background-color: #f3f3f3;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: 1fr; /* 1 column for small screens */
    }

    .faq-heading {
        font-size: 1.8rem;
    }
}


/* General Footer Styles */
/* Body and general styles */


.footer {
    background: rgb(210, 0, 0);
    color:rgb(255, 255, 255);
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: 100px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: auto;
    margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-logo {
    /* Default flex-basis values to achieve desired widths */
    flex-basis: 50%;
}

.footer-about {
    flex-basis: 40%;
    margin: 10px;
    text-align:justify ;
}

.footer-links {
    flex-basis: 20%;
    margin: 10px;
}

.footer-logo {
    flex-basis: 25%;
    margin: 10px;
    text-align: center;
}

.footer-about h5,
.footer-links h5 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    text-align: left;

}

.footer-about p {
    line-height: 1.6;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    text-align: left;


}

.footer-links a {
    color: #f1f0f0;
    text-decoration: none;
    font-size: 14px;

}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-logo .logo-img {
    max-width: 250px; /* Adjust size as needed */
    padding-top: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-logo {
        width: 100%;
        margin: 10px 0;
    }

    .footer-about {
        flex-basis: auto; /* Remove fixed width for mobile */
    }

    .footer-links {
        flex-basis: auto; /* Remove fixed width for mobile */
    }

    .footer-logo {
        flex-basis: auto; /* Remove fixed width for mobile */
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links li {
        margin: 5px 0;
    }
}

/* Footer Styling */
.main-footer {
    background-color: #ffffff; /* Light background to match your theme */
    padding: 10px 10px;
    text-align: center;
}

.footer-line {
    width: 90%;
}

.main-footer p {
    font-size: 0.9rem;
    color: #000000; /* Dark text for readability */
    margin: 0;
}

.main-footer a {
    color: #dd0000; /* Your primary color */
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer a:hover {
    color: #990000; /* Slightly darker shade on hover */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .main-footer {
        padding: 15px 5px;
    }
    .footer-line {
        width: 95%; /* Slightly wider on smaller screens */
    }
    .main-footer p {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }
}



/*blog psge */

.blogg{


    margin: 25px;
    margin-top: 50px;
    font-size: 50px;
}

.blogpara{
    margin: 25px;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.blog-post {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.blog-post img {
    width: 100%;
    height:200px;
}

.blog-post h2 {
    margin: 10px 0;
    font-size: 1.2em;
    text-decoration: none; /* Removes underline from all links */
    color: rgb(3, 0, 89);
    text-decoration: none;
}

.blog-post p {
    margin: 0 0 10px;
    color: rgb(67, 66, 66);

}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.read-more:hover {
    background-color: #555;
}



/*privacy policy page data*/

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy {
    background-color: #fff;
    padding: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2em;
    margin-top: 20px;
}

h4 {
    font-size: 1.1em;
    margin-top: 10px;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

p {
    margin: 10px 0;
}


/*terms */

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.terms-of-service {
    background-color: #fff;
    padding: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
    margin-top: 20px;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

p {
    margin: 10px 0;
}

       


.video-downloader-container {
    padding-top: 3.5rem;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 0.5px solid black;
    background: #000;

    
}

.video-downloader-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.video-downloader-header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #bcbcbc;
    text-align: center;
}

.video-downloader-input {
    max-width: 90%;
    padding: 0.4rem;
    margin-bottom: 1rem;
    border: 2px solid #34b7f1;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    background: #efeff0;
    color: #000000;
    width: 40%;

}


.video-downloader-button {
    max-width: 90%;
    width: 41.2%;
    padding: 0.5rem;
    background-color: #34b7f1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-downloader-button:hover {
    background-color: #023e8a;
    transform: scale(1.05);
}

.video-downloader-error {
    color: #f94144;
    margin: 1rem 0;
    text-align: center;
    font-size: 1rem;
}

.video-downloader-progress {
    display: none;
    margin-top: 1.5rem;
    width: 800px;
    max-width: 90%;
    text-align: center;
}

.video-progress-bar {
    width: 800px;
    max-width: 90%;
    height: 12px;
    background: #ccc;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.video-progress-bar-inner {
    width: 0%;
    height: 100%;
    background: #34b7f1;
    transition: width 0.3s ease;
}

.video-downloader-media-list h3 {
    margin-bottom: 1rem;
    text-align: center;
    width: 800px;
    max-width: 90%;
    font-size: 1.2rem;
    color: whitesmoke;
}

.video-media-item {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 800px;
    max-width: 90%;
    color: rgb(255, 255, 255);
    padding: 0.8rem;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.video-media-item button {
    background-color: #d30505;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-media-item button:hover {
    background-color: #ba1c00;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-downloader-header h1 {
        font-size: 3rem;
    }

    .video-downloader-header p {
        font-size: 1.1rem;
    }

    .video-downloader-input,
    .video-downloader-button,
    .video-progress-bar,
    .video-downloader-media-list h3 {
        width: 90%;
    }

    .video-media-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .video-media-item button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .video-downloader-header h1 {
        font-size: 3.5rem;
    }

    .video-downloader-header p {
        font-size: 1rem;
    }

    .video-downloader-input,
    .video-downloader-button,
    .video-progress-bar,
    .video-downloader-media-list h3 {
        width: 100%;
        font-size: 1rem; /* Adjust input and button font size for smaller screens */
    }

    .video-media-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        width: 100%;
    }

    .video-media-item button {
        width: 100%;
        margin-top: 0.5rem;
        font-size: 1rem; /* Adjust button font size */
    }

    .video-downloader-input {
        font-size: 1rem; /* Adjust input font size */
        padding: 0.8rem;
    }

    .video-downloader-button {
        font-size: 1.1rem; /* Adjust button font size */
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .video-downloader-header h1 {
        font-size: 2.9rem;
    }

    .video-downloader-header p {
        font-size: 1.2rem;
    }

    .video-downloader-input,
    .video-downloader-button,
    .video-progress-bar,
    .video-downloader-media-list h3 {
        width: 100%;
        font-size: 0.9rem;
    }

    .video-media-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        width: 100%;
    }

    .video-media-item button {
        width: 100%;
        font-size: 1rem; /* Adjust button font size for mobile */
        margin-top: 0.5rem;
    }

    .video-downloader-input {
        font-size: 0.9rem; /* Adjust input font size for mobile */
        padding: 0.8rem;
    }

    .video-downloader-button {
        font-size: 1rem; /* Adjust button font size for mobile */
        padding: 0.8rem;
    }
}



.icon-container{
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Features Container Styling */
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for large screens */
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Box Styling */
.feature-box {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.548);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Feature Icons */
.feature-box i {
    font-size: 2.5rem;
    color: #dd0000;
    margin-bottom: 15px;
}

/* Feature Title */
.feature-box h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

/* Feature Description */
.feature-box p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller tablets */
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }

    .feature-box {
        padding: 15px; /* Smaller padding for mobile */
    }

    .feature-box i {
        font-size: 2rem; /* Adjust icon size for mobile */
    }

    .feature-box h3 {
        font-size: 1.25rem; /* Adjust title size */
    }

    .feature-box p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }
}








.download-container {
    text-align: center;
    margin-top: 80px;
    background: #000000;
    padding-top: 80px;
    padding-bottom: 40px;
    padding: 50px;

  

}

.download-heading h2 {
    font-size: 2.5rem;
    font-weight: 600 !important;
    margin-bottom: 10px;
    color: #ffffff;
}

.download-heading p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping of items in smaller screens */
}

.download-button {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 70px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Added margin for spacing in mobile view */
}

.download-button:hover {
    background-color: #0056b3;
}

.store-icon {
    font-size: 30px;
    margin-right: 10px;
}

.button-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Google Play Button */
.download-button.google {
    background-color: #dd0000;
}

.download-button.google:hover {
    background-color: #be0000;
}

/* Apple App Store Button */
.download-button.apple {
    background-color: #333;
}

.download-button.apple:hover {
    background-color: #1a1a1a;
}
.store-icon {
    color: white !important;
}

/* Mobile View (below 768px) */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;    /* Center the buttons */
    }

    .download-button {
        padding: 15px 40px; /* Reduced padding for smaller screens */
        width: 80%; /* Ensure buttons take up full width */
        max-width: 400px; /* Limit the width of the buttons */
    }

    .store-icon {
        font-size: 25px; /* Slightly smaller icons for mobile */
    }

    .button-text {
        font-size: 0.9rem; /* Smaller text for mobile */
    }
}















.support-platforms-container {
    text-align: center;
    border-radius: 10px;
    padding-top: 50px;
    padding-bottom: 50px ;
}

.support-heading h2 {
    color: #dd0000; /* Red Heading */
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.support-heading p {
    color: #000; /* Black Text */
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;

}

.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #dd0000; /* Red Background */
    color: #fff; /* White Text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.platform-button:hover {
    background-color: #b30000; /* Darker Red on Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.platform-button .store-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.platform-button.mp4 {
    background-color: #dd0000; /* Red for MP4 */
}

.platform-button.mp3 {
    background-color: #000; /* Black for MP3 */
}

.platform-button.mp3:hover {
    background-color: #333333; /* Slightly Lighter Black */
}











/* Container Styling */
.steps-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 20px auto;
    max-width: 900px;
    color: #000000;
}

/* Heading Styling */
.steps-container h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.steps-container p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 30px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Step Card Styling */
.step-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

/* Step Icon */
.step-icon {
    width: 50px;
    height: 50px;
    background-color: #dd0000;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 10px;
    }

    .steps-container {
        padding: 20px;
    }

    .steps-container h2 {
        font-size: 2rem; /* Smaller heading for mobile */
    }

    .steps-container p {
        font-size: 1rem; /* Smaller paragraph for mobile */
    }

    .step-card {
        padding: 15px; /* Smaller padding for cards */
    }

    .step-card h3 {
        font-size: 1.25rem; /* Adjust heading size in cards */
    }

    .step-card p {
        font-size: 0.9rem; /* Adjust paragraph size in cards */
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem; /* Smaller icon */
    }
}















/* Input and Button Container */
.video-downloader-input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px; /* Space between input and button */
    margin-bottom: 50px;
  }
  
  /* Input Field (80% Width) */
  .video-downloader-input {
    flex: 8; /* 80% of the space */
    padding: 10px;
    padding-left: 100px;
    padding-right: 100px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 15px;
  }
  
  /* Download Button (20% Width) */
  .video-downloader-button {
    flex: 2; /* 20% of the space */
    background-color: #be0000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding-top:  10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-align: center;
  }
  
  .video-downloader-button:hover {
    background-color: #a00000;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .video-downloader-input-container {
      flex-direction: column; /* Stack input and button on smaller screens */
      gap: 10px;
    }
  
    .video-downloader-input,
    .video-downloader-button {
      flex: unset;
      width: 100%; /* Full width for both input and button */
      gap: 5px;

    }
  }




/* Wrapper for Features Section */
.features-container-wrapper {
    padding: 0px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Features Heading Section */
.features-heading h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.features-heading p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Features Container Styling */
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for large screens */
    gap: 20px;
}

/* Feature Box Styling */
.feature-box {
    text-align: center;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Feature Icons */
.feature-box i {
    font-size: 2.5rem;
    color: #dd0000;
    margin-bottom: 12px;
    margin-top: 10px;
}

/* Feature Title */
.feature-box h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

/* Feature Description */
.feature-box p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablets */
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller tablets */
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }

    .feature-box {
        padding: 15px; /* Smaller padding for mobile */
    }

    .feature-box i {
        font-size: 2rem; /* Adjust icon size for mobile */
    }

    .feature-box h3 {
        font-size: 1.25rem; /* Adjust title size */
    }

    .feature-box p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }
}




.blog-card {
    border: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card h5 {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 5px;
    font-weight: 600;
}

.blog-card p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
}

.read-more-btn {
    background-color: #ffffff !important;
    color: #ba0000 !important;
    border: none;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #ffffff !important;
}

/* Blog Header Styling */
.blog-header-container {
    text-align: center; /* Center-align all text */
    margin: 0 auto; /* Center the container */
    max-width: 800px; /* Limit the container width for better appearance */
    margin-bottom: 30px; /* Add space below the header */
}

.blog-title {
    font-size: 2.5rem; /* Large font size for the title */
    color: #000000; /* Red color for the title */
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 90px;
}

.blog-subtitle {
    font-size: 1.2rem; /* Slightly smaller font for the subtitle */
    color: #333333; /* Dark gray color for the subtitle */
    margin-bottom: 0; /* Remove extra margin */
    line-height: 1.5; /* Improve readability */
}






    /* New wrapper for centering content */
    .center-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
      }
  
      /* Main container */
      .savefrom-container {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        max-width: 100%;
        width: 95%;
        text-align: justify;
      }
  
      .savefrom-heading {
        font-size: 2.4rem;
        color: #000000; /* Red accent */
        margin-bottom: 40px;
        text-align:center;
        margin-top: 20px;

      }
  
      .savefrom-short-description {
        font-size: 1rem;
        color: #333333;
        line-height: 1.5;
        margin-bottom: 20px;

      }
  
      .savefrom-long-description {
        font-size: 1rem;
        color: #555555;
        line-height: 1.6;
        margin-top: 20px;
      }
  
      .savefrom-long-description p {
        margin-bottom: 15px;
      }