/* ===================================
   TeamUps - Consolidated CSS Styles
   =================================== */

/* Base Styles */
body {
    margin: 0;
    font-family: Inter-Variable, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

*,
:after,
:before {
    border: 0 solid #14111185;
    box-sizing: border-box;
}

li, ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 10px 10px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 50px;
}

.login-btn-small {
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    color: white;
    padding: 0.4rem 1rem;
    font-family: Inter-Variable, Helvetica, Arial, sans-serif;
    font-weight: 330;
    border: none;
    border-radius: 40px;
    padding: 7px 35px;
    text-decoration: none;
}

.login-btn-small:hover {
    color: #fff;
    background-color: #222;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    padding: 4rem 0rem;
    min-height: 90vh;
    /* margin-top: 60px; */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 330;
    letter-spacing: -.01em;
    line-height: 3.78rem;
    font-family: Inter-Variable, Helvetica, Arial, sans-serif;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #fff;
}

.hero h5 {
    color: #fff;
}

/* Buttons */
.login-btn {
    color: white;
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    padding: 0.5rem 1.5rem;
    font-family: Inter-Variable, Helvetica, Arial, sans-serif;
    font-weight: 330;
    border: 1px solid #FFF;
    border-radius: 40px;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #1E40AF;
    color: #fff;
}

.text-primary {
    color: #1E40AF !important;
}

/* Carousel Styles */
.carousel-container {
    perspective: 1200px;
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
}

.carousel-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: left center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: transform 1s ease;
    opacity: 0;
}

.carousel-container img.active {
    opacity: 1;
    z-index: 5;
    transform: rotateX(0deg) translateZ(0);
}

.carousel-container img.next1 {
    opacity: 1;
    z-index: 4;
    transform: rotateX(-10deg) translateX(40px);
}

.carousel-container img.next2 {
    opacity: 1;
    z-index: 3;
    transform: rotateX(-20deg) translateX(80px);
}

.carousel-container img.next3 {
    opacity: 1;
    z-index: 2;
    transform: rotateX(-30deg) translateX(120px);
}

.carousel-container img.next4 {
    opacity: 1;
    z-index: 1;
    transform: rotateX(-40deg) translateX(160px);
}

/* Sections */
.bg-light {
    opacity: 1;
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%) !important;
}

.why-join-us {
    background-color: #f4f4f5;
}

.why-join-us-creator {
    background-color: #fff;
}

.community-section-gap {
    padding: 60px 0;
}

/* Influencer Marketing Page Styles */
.temups_header_top {
    background: #fff;
    height: 70px;
}

.temups_banner {
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
}

.app-button {
    background-color: #1E40AF;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
}

.app-button:hover,
.hero-button:hover {
    border: 1px solid #fff;
}

.social-icons img {
    width: 30px;
    margin: 5px;
}

.mockup-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin-right: 20px;
}

/* .nav-link:hover {
    text-decoration: underline;
} */

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.content-section {
    padding-top: 80px;
}

.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
    transition: background-color 0.3s, box-shadow 0.3s;
    background: transparent;
    padding: 0;
    height: 70px;
}

.fixed-header.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fixed-header .nav-link {
    color: #000;
}

.rounded-pill-bg {
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    border: 1px solid #fff !important;
    color: #fff;
    text-decoration: none;
    padding: 7px 25px;
}

/* Slider Section Styles */
.slider-container {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    margin: 2rem auto;
    gap: 2rem;
}

.slider-images {
    flex: 1;
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    min-height: 240px;
}

.slider-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 10px;
}

.slider-images img.active {
    opacity: 1;
    z-index: 2;
}

.slider-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.slider-card {
    display: flex;
    align-items: flex-start;
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    border-left: 6px solid transparent;
    transition: all 0.3s ease;
    gap: 1rem;
}

.slider-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.slider-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.progress-segment {
    position: relative;
    width: 3px;
    height: 100%;
    background-color: #1602023b;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background-color: #22c55e;
    transition: transform 5s linear;
}

.slider-card.active .progress-fill {
    transform: scaleY(1);
}

.slider_content_section {
    padding: 60px 0;
    background: #f4f4f5;
}

/* FAQ Styles */
.faq_section {
    background: #f4f4f5;
    padding: 60px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.accordion-button::after {
    display: none;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed) .faq-icon-expand {
    display: none;
}

.accordion-button.collapsed .faq-icon-collapse {
    display: none;
}

.accordion-button {
    background-color: transparent !important;
    border: none;
    padding-left: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.accordion-body {
    padding-left: 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    background: transparent;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #1E40AF;
}

/* Hero Section */
.hero-section {
    background: #fff;
    color: #000 !important;
    text-align: center;
    padding: 50px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-top: 1rem;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hero-button {
    margin-top: 7px;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    text-decoration: none;
}

.hero-link {
    margin-top: 1.5rem;
    display: block;
    font-size: 0.95rem;
}

.hero-link a {
    text-decoration: underline;
    color: #1E40AF;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: #002bbd;
    color: white;
    font-size: 0.95rem;
}

footer .row > div {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
}

footer h6 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

footer ul {
    padding-left: 0;
    margin-bottom: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}

footer a {
    text-decoration: none;
    color: #fff;
}

footer a:hover {
    color: #ccc;
}

footer .d-flex.gap-3 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 1.1rem;
}

footer .text-center img {
    max-width: 200px;
}

footer .text-center ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

footer .text-center ul li {
    display: inline-block;
}

footer .text-center.small {
    text-align: center;
    padding-top: 1rem;
}

footer .col-md-3.mb-4:first-child {
    text-align: center;
}

footer .col-md-3.mb-4:first-child p,
footer .col-md-3.mb-4:first-child .d-flex {
    justify-content: center;
}

footer .col-md-3.mb-4:first-child .d-flex {
    flex-wrap: wrap;
}

.social-media a {
    padding-left: 10px;
}

.android-logo ul li a img {
    width: 125px;
}

.android-logo ul li, .footer-follow ul li {
    display: inline-block;
    margin: 5px;
}

/* Contact Form Styles */
.home-contact-section .form-control {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    border-radius: 0;
    box-shadow: none;
}

.home-contact-section textarea {
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .3) !important;
    box-shadow: none;
    outline: none;
}

.home-contact-section .hvr-bounce-to-bottom:before,
.home-contact-section button:hover {
    background-color: #102ab3 !important;
}

#contactfooter_submit_btn {
    height: 35px;
}

/* Utility Classes */
.fixed {
    width: 20%;
    position: fixed;
    top: 60px;
    padding: 10px;
    height: 90vh;
    scrollbar-width: none;
    overflow-y: scroll;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar h4 {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar ul li {
    border-left-width: 3px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 20px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 7px;
    border-radius: 5px;
    font-size: 15px;
}

.sidebar ul li a.active {
    color: #000;
}

.sidebar ul li a:hover {
    text-decoration-line: underline;
}

.border-black {
    border-color: #000;
}

.content {
    margin-left: 25px;
    padding: 10px 25px;
    flex: 1;
    background-color: #eee;
}

.content section {
    margin-bottom: 50px;
}

.content section h3 {
    font-weight: 600;
    padding-bottom: 15px;
    font-size: 26px;
}

.content section h5 {
    font-weight: 600;
    padding-bottom: 7px;
    font-size: 16px;
}

.terms-hero {
    background: url('https://www.hashcashconsultants.com/wp-content/uploads/2024/07/blockchain-solution-real-state-banner-bg.jpg') center center / cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.terms-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.terms-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    footer .row > div {
        margin-bottom: 2rem;
        text-align: left !important;
    }

    footer .d-flex.gap-3 {
        justify-content: start !important;
    }

    footer .text-center img {
        margin: 0.5rem;
    }

    footer .text-center ul {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .carousel-container {
        height: 300px;
        margin-bottom: 2rem;
    }

    .carousel-container img.active {
        opacity: 1;
        z-index: 5;
        transform: rotateX(0deg) translateZ(0);
    }

    .carousel-container img.next1 {
        opacity: 1;
        z-index: 4;
        transform: rotateX(-10deg) translateY(40px);
    }

    .carousel-container img.next2 {
        opacity: 1;
        z-index: 3;
        transform: rotateX(-20deg) translateY(80px);
    }

    .carousel-container img.next3 {
        opacity: 1;
        z-index: 2;
        transform: rotateX(-30deg) translateY(120px);
    }

    .carousel-container img.next4 {
        opacity: 1;
        z-index: 1;
        transform: rotateX(-40deg) translateY(160px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .slider-images {
        height: 250px;
        order: 1;
    }

    .slider-content {
        order: 2;
    }

    .slider-card {
        flex-direction: row;
        align-items: center;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .progress-segment {
        min-height: 40px;
        width: 4px;
    }
}

/* Smartphones (portrait and landscape) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .sidebar {
        width: 100%;
        position: relative;
        top: 20px;
        padding: 10px;
        height: 80vh;
        scrollbar-width: none;
        overflow-y: scroll;
    }
}

/* Contact Status Messages */
.contact-status {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.contact-status.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-status.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
