/* Modern Design Overrides for Briefly */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
span {
    font-family: 'Outfit', sans-serif !important;
}

/* Floating Glass Pill Navbar */
#navbar.default,
.navbar.default.shrink {
    background: #008B76 !important;
    /* Solid Main Teal */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Floating Pill styles */
    margin: 20px auto !important;
    width: 95% !important;
    max-width: 1200px !important;
    border-radius: 50px !important;
    padding: 5px 20px !important;
    left: 0;
    right: 0;
}

/* Fix flex layout for the new container (Desktop Only) */
@media (min-width: 769px) {
    .premium-navbar-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    #myNavbar {
        flex-grow: 1;
        display: flex !important;
        justify-content: flex-end;
    }
}

#navbar.default .navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
}

#navbar.default .navbar-nav>li {
    margin: 0 5px;
}

#navbar.default .navbar-nav>li>a {
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#navbar.default .navbar-nav>li.active>a,
#navbar.default .navbar-nav>li>a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {

    #navbar.default,
    .navbar.default.shrink {
        border-radius: 20px !important;
        margin: 10px auto !important;
        padding: 10px !important;
    }

    #navbar.default .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 15px;
    }
}

/* Typography Enhancements */
h1,
h2 {
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

.bolder {
    font-weight: 800 !important;
    background: linear-gradient(90deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modernizing Buttons */
.colored-button:not(.available-btn),
.btn:not(.available-btn) {
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    padding: 12px 24px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.colored-button:not(.available-btn):hover,
.btn:not(.available-btn):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Spacing and Cards */


/* Circular Stats */
.mob-circle {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.mob-circle:hover {
    transform: translateY(-10px);
}

.circle-user {
    background: #f8f9fa !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Features List */
.amazing-feature-text p {
    font-size: 1.1em;
    color: #555;
}

.icon-color {
    background: #eef2f5;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Screenshots Carousel adjustments */
.main-item-list .item img {
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Smooth gradients for background overlays */
.bg-opacity-layer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
}

/* Footer & Contact */
.twitter-main {
    background-color: #fafafa !important;
}

#footer {
    background: #ffffff !important;
    border-top: 1px solid #eaeaea;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* News Feed Styles */
.news-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
}

.news-filter-btn {
    background: #E0F2F1 !important;
    /* Secondary teal */
    color: #008B76 !important;
    /* Main teal */
    border: none !important;
    padding: 10px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

.news-filter-btn.active,
.news-filter-btn:hover {
    background: #008B76 !important;
    /* Main teal */
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 139, 118, 0.25) !important;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.news-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.news-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.news-card-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 10px;
}

.news-action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-card-content {
    padding: 16px 18px 14px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-family: 'Outfit', sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 17px;
    font-weight: 500 !important;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2196F3;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.news-card-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.news-website {
    font-weight: 600;
    color: #555;
}

.news-date,
.news-views {
    color: #999;
}


/* Highlighted Navbar Item (Lajmet) */
#navbar.default .navbar-nav>li.nav-cta {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

#navbar.default .navbar-nav>li.nav-cta>a {
    background: #008B76 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    margin: 10px 0 !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 10px rgba(0, 139, 118, 0.2) !important;
    line-height: normal !important;
}

#navbar.default .navbar-nav>li.nav-cta>a:hover,
#navbar.default .navbar-nav>li.nav-cta.active>a {
    background: #006C4C !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 139, 118, 0.3) !important;
}

/* Fix and modernize the download buttons */
.available-btn {
    display: inline-flex !important;
    align-items: center !important;
    text-align: left !important;
    padding: 6px 16px 6px 12px !important;
    border-radius: 50px !important;
    background: #008B76 !important;
    color: #fff !important;
    min-height: auto !important;
    border: none !important;
    margin: 5px !important;
    box-shadow: 0 4px 15px rgba(0, 139, 118, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    text-decoration: none !important;
}

.available-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 139, 118, 0.4) !important;
}

.available-btn i {
    font-size: 24px !important;
    margin-right: 10px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding-right: 10px !important;
    position: static !important;
    align-items: center !important;
    height: 100% !important;
}

.available-btn .text-wrap {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    line-height: 1.2 !important;
}

.available-btn em {
    display: block !important;
    font-size: 11px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Premium Banner Redesign */
.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.premium-mesh-bg {
    background-color: #f8fafc;
    position: relative;
    z-index: 1;
}

/* Animated Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 191, 165, 0.3);
    /* Light Teal */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 139, 118, 0.2);
    /* Main Teal */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

.blob-3 {
    top: 20%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: rgba(232, 245, 233, 0.8);
    /* Very light green */
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, -50px) rotate(180deg);
    }

    100% {
        transform: translate(-50px, 50px) rotate(360deg);
    }
}

/* Floating Animation for Phone */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Gradient Typography */
.gradient-text {
    background: linear-gradient(135deg, #004d40 0%, #00bfa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glowing Buttons */
.glowing-btn {
    position: relative;
    overflow: visible !important;
}

.glowing-btn::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: inherit;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.glowing-btn:hover::after {
    opacity: 0.7;
    filter: blur(15px);
}

@media (max-width: 768px) {
    .premium-text-col {
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-align: center !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .cta-buttons .available-btn {
        margin: 5px auto !important;
        display: inline-flex !important;
        width: auto !important;
        max-width: fit-content !important;
        justify-content: flex-start !important;
        padding: 8px 20px 8px 15px !important;
    }

    .cta-buttons .available-btn span.text-wrap {
        font-size: 13px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .gradient-text {
        font-size: 40px !important;
    }

    .premium-mesh-bg {
        padding-top: 160px !important;
        padding-bottom: 50px !important;
    }
}
/* Global Font Override */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, textarea {
    font-family: 'Outfit', sans-serif !important;
}


/* About Us Page Sections */
#features {
    background-color: #f9f9f9;
    padding: 160px 0 60px 0;
}
#screenshots {
    background-color: white;
    margin-top: 3em;
    padding: 60px 0 20px 0;
}
#categories {
    background-color: white;
    padding: 20px 0 60px 0;
}
#premium-experience {
    background-color: #f9f9f9;
    padding: 60px 0;
}
#reliability {
    background-color: white;
    padding: 60px 0;
}
#final-cta {
    background-color: #008B76;
    color: white;
    padding: 60px 0;
}


/* Elegant Floating Sticky CTA */
.sticky-cta-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 150%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 139, 118, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: auto;
    white-space: nowrap;
}

.sticky-cta-banner.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-banner .available-btn {
    margin: 0 !important;
    padding: 6px 12px 6px 10px !important;
    border-radius: 30px !important;
}
.sticky-cta-banner .available-btn span.text-wrap {
    font-size: 11px !important;
}
.sticky-cta-banner .available-btn i {
    font-size: 18px !important;
    margin-right: 6px !important;
    padding-right: 6px !important;
}


@media (max-width: 768px) {
    .sticky-cta-banner {
        bottom: 20px;
        padding: 8px;
        gap: 8px;
    }
    .sticky-cta-banner {
        width: auto;
        max-width: 95%;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 10px;
        padding: 8px 12px;
    }
    .sticky-cta-banner .available-btn {
        width: auto !important;
        justify-content: center !important;
        padding: 8px 15px !important;
    }
    .sticky-cta-banner .available-btn span.text-wrap {
        font-size: 12px !important;
    }
    .sticky-cta-banner .available-btn i {
        font-size: 18px !important;
    }
}

/* Sticky Icon Buttons */
.sticky-cta-banner .sticky-icon-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important; /* Circular buttons */
    margin: 0 !important;
    background: #008B76 !important;
    color: #fff !important;
}

.sticky-cta-banner .sticky-icon-btn i {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: block !important;
    height: auto !important;
    width: auto !important;
    position: static !important;
}

.sticky-label {
    font-size: 15px;
}

@media (max-width: 768px) {
    .sticky-label {
        font-size: 14px;
    }
    .sticky-cta-banner .sticky-icon-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .sticky-cta-banner .sticky-icon-btn i {
        font-size: 18px !important;
    }
}
