/* Custom styles for SaaS Fast Pro landing page */

.highlight-text {
    color: #F6543C;
    font-weight: 600;
    font-size: 1.2rem;
}

.info-text {
    color: #009AE3;
    font-weight: 500;
}

.kicker {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #60b6e1;
    margin-bottom: 10px;
}


/* Section spacing */
section {
    scroll-margin-top: 40px; /* Modern browsers */
    padding-top: 40px;
}

/* Navbar styling */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-logo {
    width: 50px;
    height: 50px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.navbar-brand:hover {
    color: #eee;
}

.navbar.scrolled .navbar-brand {
    color: #1a1a1a;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #1a1a1a !important;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-1px);
}

.navbar.scrolled .nav-link:hover {
    color: #1985BA !important;
}

.navbar-toggler {
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.hero-content {
    z-index: 1000;
}

/* Gradient background */
.bg-gradient-primary {
    background: linear-gradient(135deg, #092646 0%, #F6543C 100%);
    /* background: linear-gradient(135deg, #5D91B3 0%, #000F28 100%); */
}

.bg-primary {
    background: #1985BA !important;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.2rem rgba(0,0,0,.175)!important;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

article {
    position: relative;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 1rem;
   border: 1px solid rgba(0,0,0,.195);
}

.post-title {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.post-date {
    background: linear-gradient(135deg, #092646 0%, #F6543C 100%);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 10px 8px 15px;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    color: #fff;
}

.article-content {
    padding-top: 30px;
    padding-bottom: 30px;
}

.article-footer {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    padding-top: 2rem;
    width: 100%;
}

/* Icon box styling */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
}

/* Button styling */
.btn-primary {
    background-color: #1985BA;
    border-color: #1985BA;
}

.btn-primary:hover {
    background-color: #19152f;
    border-color: #19152f;
}

.btn-outline-primary {
    color: #1985BA;
    border-color: #1985BA;
}

.btn-outline-primary:hover {
    background-color: #19152f;
    border-color: #19152f;
}

header.header {
    min-height: 200px;;
}

/* Hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
}

.hero li {
    list-style: none;
    margin-bottom: 10px;
}

.hero .lead {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Pricing cards */
.pricing-card {
    border-radius: 1rem;
}

.pricing-card.popular {
    border: 2px solid #1985BA;
}

/* Feature icons */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    color: #1985BA;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero img {
    animation: float 6s ease-in-out infinite;
} 

.footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
    background: #212529;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer .copyright {
    font-size: 0.8rem;
    color: #ccc;
}

.text-primary {
    color: #130717 !important;
}

/* a {
    color: #130717;
} */

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: #E5503C;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top:hover {
    background-color: #d13d2a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(229, 80, 60, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

/* Blog post styling */
.text-gradient-primary {
    background: linear-gradient(135deg, #092646 0%, #F6543C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}