:root {
    --primary-color: #d33854;
    /* Main button color */
    --secondary-color: #ffffff;
    /* Background color */
    --text-color: #333333;
    --text-color-light: #ffffff;
    /* Main text color */
    --hover-color: #f5f5f5;
    /* Hover background */
    --shadow-color: rgba(0, 0, 0, 0.1);
    /* Shadow color */
    --menu-bg: #ffffff;
    /* Menu background */
    --active-color: #d33854;
    /* Active link color */
}

.navbar-bottom {
    background: var(--secondary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.user-app-btn {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
}

.logo img {
    height: 30px;
    max-width: 100%;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    opacity: 0.9;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Right-sliding mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--menu-bg);
    box-shadow: -2px 0 10px var(--shadow-color);
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--active-color);
}

.mobile-menu i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-list {
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--menu-bg);
    border-radius: 5px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 10px 0;
    min-width: 220px;
    display: none;
    z-index: 1000;
}

.dropdown--btn-hover:hover .dropdown-list {
    display: block;
}

.dropdown-list a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-list a:hover {
    background: var(--hover-color);
    color: var(--primary-color);
}

.dropdown-list i {
    margin-right: 10px;
}

.dropdown-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px 0;
}

.download-app-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    text-align: center;
    margin-top: 83px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--text-color-light);
    font-weight: 700;
}
.tag-line-section-title {
   font-size: 16px; 
    color: var(--text-color-light);
   
}

.signup-card {
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    padding: 40px;
    text-align: center;
}



.signup-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.signup-card p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.5;
}

.signup-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

.app-stores p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-badge img {
    height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .signup-card {
        padding: 30px 20px;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .store-badge img {
        height: 40px;
    }
    
}

.custom_logo img{
    height: 80px;
    max-width: 100%;
}
