@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #d6d4d4;
}

body {
    font-family: Bricolage Grotesque;
    background-color: #212121;
    color: #D2CBC6;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: grey;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
}

.logo img {
    width: 150px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
}

.cta-button {
    background-color: #1b1b1b;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    gap: 20px;
}

.hero-content {
    max-width: 60%;
}

.product-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.highlight {
    background-color: #D2CBC6;
    color: #2E1A05;
    padding: 0 10px;
}

p {
    margin-bottom: 30px;
}

.get-shipfast {
    background-color: #ffbe1a;
    color: #000000;
    padding: 12px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.discount {
    color: #4caf50;
    font-size: 14px;
}

.testimonials {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -20px;
    border: 2px solid #1a1a1a;
}

.testimonial-rating {
    margin-left: 20px;
}

.features img {
    max-width: 100%
}

.git-clone {
    position: absolute;
    bottom: -30px;
    right: 0;
    color: #ffd700;
    font-family: monospace;
}

@media (max-width: 768px) {
    nav ul li:nth-child(2),
    /* Hides 'Demo' */
    nav ul li:nth-child(4),
    /* Hides 'Leaderboard' */
    .cta-button {
        /* Hides the CTA button */
        display: none;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content,
    .features {
        max-width: 100%;
    }
    .features {
        margin-top: 50px;
    }
    h1 {
        font-size: 36px;
    }
}


/* carousel */

.video-container .carousel {
    position: relative !important;
    width: 100% !important;
    max-width: 768px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.video-container .carousel-container {
    display: flex !important;
    transition: transform 0.5s ease-in-out !important;
}

.video-container .carousel-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
}

.video-container .carousel-button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border: none !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    z-index: 1 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.video-container .carousel-button.prev {
    left: 10px !important;
}

.video-container .carousel-button.next {
    right: 10px !important;
}


/* Optional: Add a subtle box shadow for depth */

.carousel {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/*  */


/* Featured Section*/

.featured-section {
    background-color: #222;
    padding: 15px 10px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.featured-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-text {
    color: #888;
    font-size: 14px;
    margin-right: 10px;
}

.featured-logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.featured-logo img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .featured-content {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    .featured-logo {
        margin-bottom: 10px;
    }
}


/* Task Breakdown */

.task-breakdown {
    background-color: #2c1e0f;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    margin: 50px auto;
    color: #fff;
    font-family: Arial, sans-serif;
}

.task-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.task-list li {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.time {
    color: #ff6b6b;
    font-weight: bold;
}

.total {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.emoji {
    font-size: 24px;
}

.easier-way {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.arrow {
    font-size: 14px;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .task-breakdown {
        margin: 30px 15px;
        padding: 20px;
    }
}


/* Launch Section */

.launch-section {
    background-color: #222;
    padding: 50px 20px;
    color: white;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.launch-code {
    font-family: monospace;
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 18px;
}

.launch-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.launch-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.services {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.services:hover {
    cursor: pointer;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

.service .icon {
    font-size: 32px;
    /* margin-bottom: 10px; */
}


/* Adjustments for mobile responsiveness */

@media (max-width: 768px) {
    .launch-section h2 {
        font-size: 28px;
    }
    .services {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/*Email Section*/

.service-section {
    background-color: #0f0f0f;
    margin-top: 20px;
    padding: 30px;
}

.service-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.green-text {
    color: #4caf50;
}

.powered-by {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.powered-by img {
    width: 30px;
    margin-right: 10px;
}

.powered-by a {
    text-decoration: underline;
}

.powered-by a:hover {
    color: #ffd700;
}

.container2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}


/*Testimonial Section*/

.testimonial-section {
    background-color: #212121;
    padding: 40px 20px;
    font-family: Bricolage Grotesque;
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 220px;
    height: 220px;
    margin-right: 20px;
    border-radius: 10px;
}

.profile-info h2 {
    margin-bottom: 10px;
}

.tips-section {
    margin-bottom: 30px;
}

.tips-section ol {
    padding-left: 20px;
    margin-top: 10px;
}

.tips-section li {
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio (height / width * 100) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    .profile-pic {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .profile-info br {
        display: none;
    }
    .tips-section ol {
        padding-left: 15px;
    }
}


/*PRICING SECTION*/

.pricing-section {
    min-height: 80vh;
    background-color: #0f0f0f;
    padding: 20px;
    gap: 20px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pricing-card {
    background-color: #282828;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.popular {
    border: 1px solid yellow;
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #ffd700;
    color: #000;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.original-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.currency {
    font-size: 16px;
    color: #888;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #fff;
}

.update-tag {
    background-color: green;
    color: black;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: 5px;
}

.get-shipfast-pricing {
    background-color: #ffd700;
    border: none;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0px;
    width: 100%;
    transition: background-color 0.3s;
}

.get-shipfast-pricing:hover {
    background-color: #ffca00;
}

.pay-once {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.pricing-component {
    background-color: #0f0f0f;
    text-align: center;
    padding: 40px 20px;
}

.pricing-component h2 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
}

.pricing-component h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.promo-offer {
    font-size: 18px;
    color: #90EE90;
}

.gift-icon {
    margin-right: 10px;
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 20px;
    }
    .pricing-cards {
        display: flex;
        flex-direction: column;
    }
    .price {
        font-size: 30px;
    }
    .original-price {
        font-size: 18px;
    }
    .pricing-card ul li {
        font-size: 14px;
    }
}

.black-text {
    color: grey;
}


/*TESTIMONIAL*/

.testimonial-container {
    background-color: #0f0f0f;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial1 {
    background-color: #212121;
}

.quote-symbol {
    font-size: 40px;
    color: #4caf50;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 40px;
}

.author-info {
    display: flex;
    align-items: center;
}

.container3 {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.author-achievement {
    background-color: #4caf50;
    color: #000000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
}

@media (max-width: 480px) {
    .testimonials {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}


/*FAQ*/

.faq-section {
    background-color: #0f0f0f;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto 30px;
}

.faq-section h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-info a {
    color: #4a90e2;
    text-decoration: none;
}

.faq-list {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: bold;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .faq-content {
        margin-bottom: 20px;
    }
    .faq-section h2 {
        font-size: 20px;
    }
    .contact-info {
        font-size: 12px;
    }
    .faq-question span {
        font-size: 14px;
    }
    .toggle-icon {
        font-size: 18px;
    }
}


/*Boost app section*/

.boost-app-section {
    background-color: #0f0f0f;
    padding: 80px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crown-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #a0a0a0;
}

.lightning-icon {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    .section-description {
        font-size: 16px;
    }
    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }
}


/*FOOTER*/

.shipfast-footer {
    background-color: #0f0f0f;
    padding: 20px;
}

.shipfast-footer-content {
    line-break: auto;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shipfast-footer-section {
    margin-right: 40px;
    margin-bottom: 20px;
}

.shipfast-footer-section:last-child {
    margin-right: 0;
}

.shipfast-footer h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #888;
}

.shipfast-footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.shipfast-footer li {
    margin-bottom: 8px;
    font-size: 12px;
}

.shipfast-footer a {
    color: #fff;
    text-decoration: none;
}

.shipfast-footer a:hover {
    text-decoration: underline;
}

.shipfast-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.shipfast-copyright {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.shipfast-built-with {
    display: inline-block;
    background-color: #222;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.shipfast-join-us {
    background-color: #4169E1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
}

.shipfast-maker-section {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .shipfast-footer-content {
        flex-direction: column;
    }
    .shipfast-footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}