* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    margin-top: 20px; */
    background-color: #f8f8f8;
    width: 100%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background: rgb(248, 246, 246);

    /* background: transparent; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: fixed;
    width: 100%;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 30px;
}
.company-name {
    color: black;
    font-size: 22px;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    margin-top: 1rem;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f39c12;
}
.search-bar {
    position: relative;
}
.search-bar input {
    padding: 3px 25px;
    border: none;
    border-radius: 20px;
    outline: none;
    width: 200px;
}
.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    color: #555;
}
.auth-buttons a {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
    transition: background 0.3s;
}
.login {
    color: rgb(146, 139, 139);
    border: 1px solid rgb(146, 139, 139);
}
.login:hover {
    background: rgb(230, 222, 222);
    color: #1e1e1e;
}
.signup {
    background: #f39c12;
    color: white;
    border: none;
}
.signup:hover {
    background: #e67e22;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .auth-buttons {
        margin-top: 10px;
    }
    .search-bar {
        margin-top: 10px;
    }
}


.sidebar-container {
    width: 50px;
    height: 100vh;
    background-color: #2c3e50;
    padding-top: 10px;
    position: fixed;
    left: 0;
    top: 55px;
    color: white;
}
.icon-button {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    color: white;
    text-align: left;
    text-decoration: none;
}
.icon-button:hover {
    background-color: #34495e;
}
.icon {
    width: 24px;
    height: 24px;
}

/* Tabs Container */
.tabs-container {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    margin: 1% 37%;
    margin-top: 7%;
}

/* Tab Button */
.tab {
    padding: 10px 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    position: relative;
    transition: color 0.3s ease-in-out;
    font-weight: bold;
}

/* Active Tab */
.tab.active {
    color: #007B55;
    /* Dark green */
    font-weight: bold;
}

.tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #007B55;
}

/* Mode Selection Tabs */
.mode-tabs {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: center;
    margin: 2% 30%;
}

.mode-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease-in-out;
}

.mode-tab.active {
    color: #E44D26;
    /* Orange Highlight */
    font-weight: bold;
}

.mode-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #E44D26;
}


/* Input Box for YouTube Link */
.input-container {
    background: #fff;
    padding: 25px 15px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-left: 25%;
    margin-bottom: 5%;
}

.input-container input {
    width: 96%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

/* Download Button */
.download-btn {
    width: 100%;
    padding: 10px;
    background: #007B55;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
    margin-top: 15px;
}

.download-btn:hover {
    background: #005b3c;
}

/* Quality Selection Dropdown */
.quality-container {
    margin-top: 15px;
    width: 40%;
    max-width: 30%;
    text-align: center;
    /* margin-left: 33%; */
}

.quality-container select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.containerf {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.top-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.top-text a {
    color: #0073e6;
    text-decoration: none;
}

.top-text a:hover {
    text-decoration: underline;
}

.emoji {
    font-size: 16px;
}

.share-section {
    margin-top: 90px;
    text-align: center;
    margin-bottom: 30px;
}

.share-section h2 {
    font-size: 30px;
    color: #000;
}

.share-section p {
    font-size: 15px;
    color: #666;
}

.social-icons {
    margin-top: 15px;
    font-size: 20px;
}

.social-icons a {
    margin: 0 8px;
    text-decoration: none;
    color: #000;
}

.social-icons a:hover {
    color: #0073e6;
}

:root {
    --base-transition-timing: 0.6s;
    --base-font-family: Arial, sans-serif;
}

.faq-container {
    width: 100%;
    margin: 40px auto;
    text-align: center;
    /* background-color: #eef7fa; */
    place-items: center;
    height: 65rem;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-top: 60px;
    box-shadow: 2px 7px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    width: 60%;

}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.toggle-btn {
    font-size: 22px;
    /* font-weight: bold; */
    cursor: pointer;
    transition: transform var(--base-transition-timing) ease-in-out;
}

/* Smooth expand/collapse */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--base-transition-timing) linear, opacity var(--base-transition-timing) ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    opacity: 1;
}

.h2_head {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container p {
    font-size: 17px;
    color: #444;
}

.faq-container a {
    color: #0073e6;
    text-decoration: none;
}

.faq-container a:hover {
    text-decoration: underline;
}

.testimonial-section {
    background-color: #fff;
    padding: 60px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.testimonial-container {
    max-width: 900px;
    margin: auto;
}

.testimonial-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 25px;
    background-color: #fafafa;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.author {
    font-weight: 600;
    margin-top: 15px;
    color: #222;
}

.avatar-container img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00c4cc;
    margin: 0 5px;
}

.join-button {
    background-color: #00c4cc;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.join-button:hover {
    background-color: #009aa3;
}


.impact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    flex-direction: column;
    width: 100%;
}

.impact-h1 {
    font-size: 3rem;
    margin-bottom: 100px;
}

.btn {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    padding: 20px 70px;
    font-size: 2rem;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.footer {
    background-color: #1e1e1e;
    /* padding-bottom: 30px; */
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    border-top: 1px solid #333;
    border-width: 5%;
    width: 100%;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;

}

.footer a:hover {
    color: white;

}

.footer-term {
    margin-left: 25%;
}

.footer-reserve {
    color: white;
    /* margin-left: 30px; */
}

.container1 {
    /* max-width: 1200px; */
    margin: 50px 75px;
    /* width: 100%; */
    padding: 0 20px;
    margin-bottom: 40px;
}

