/* Custom CSS for Brand Fast Pro */

/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #1D2126;
}


.logo {
    border-radius: 10px;
    height: 50px;
}

/* Add some space for fixed navbar */
main {
    padding-top: 60px;
}

/* Hero section styling */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

#features i {
    font-size: 28px;
    line-height: 1;
    vertical-align: middle;
}

/* Bootstrap Override */
.bg-primary {
    background-color: #1B9CDD !important;
}

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

.border-primary {
    border-color: #1B9CDD !important;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(27, 156, 221, 0.1) !important;
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #6610f2 0%, #1B9CDD 100%);
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Feature icon circles */
.card-body .rounded-circle {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}

.card-body .material-icons {
    font-size: 28px;
}

/* Button styling */
.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1B9CDD;
    border-color: #1B9CDD;
}

.btn-primary:hover {
    background-color: #1683BC;
    border-color: #1476A9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 156, 221, 0.4);
}

.btn-outline-primary {
    color: #1B9CDD;
    border-color: #1B9CDD;
}

.btn-outline-primary:hover {
    background-color: #1B9CDD;
    border-color: #1B9CDD;
}

/* Ribbon for popular plan */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: #1B9CDD;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.ribbon-top-right {
    top: -10px;
    right: -10px;
}

.ribbon-top-right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

/* Testimonial cards */
.testimonial-card {
    border-radius: 10px;
    overflow: hidden;
}

/* Animations */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}