.logo {
    width: 70px;
    height: auto;
    display: block;
}

body {
    font-family: 'Muli', sans-serif;
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(180deg, #2b1f61, #1F1645);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.navbar-brand img {
    width: 80px;
    height: auto;
    display: block;
}

.hero-section {
    height: calc(100vh - 15rem);
    background-color: #1c1c1c;
    color: white;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

@media (max-width:768px){
    .hero-section {
        height: auto !important;
    }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.hero-section img {
    max-width: 100%;
}

.hero-section a img {
    transition: transform 0.2s ease;
}

.hero-section a img:hover {
    transform: scale(1.1);
}

.device-mockup {
    max-width: 300px;
}

.feature-icon {
    font-size: 3rem;
    color: #c33764;
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

footer {
    background-color: #1F1645;
    color: white;
    padding: 40px 0;
    text-align: center;
}


/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    background-color: #1F1645;
    color: white;
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#scrollTopBtn:hover {
    background-color: #241a52;
}

.owl-carousel .item {
    padding: 10px;
}

.footer a:hover {
    text-decoration: none;
    color: #f8d33c;
}

.site-footer {
    background-color: #1F1645;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Muli', sans-serif;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-text a {
    color: #f8d33c;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f8d33c;
    text-decoration: underline;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    margin-bottom: 20px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #cccccc;
}

.carousel-wrapper {
    position: relative;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Owl Nav Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    left: -40px;
    /* move left arrow outside */
    right: -40px;
    /* move right arrow outside */
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    width: calc(100% + 80px);
    /* add space for arrows */
    pointer-events: none;
    
}

.owl-nav button {
    pointer-events: all;
    background-color: #1F1645;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.owl-nav button:hover {
    background-color: #f8d33c;
    color: #1F1645;
}

.owl-dots {
    margin-top: 20px;
    /* Adjust this value as needed */
    text-align: center;
}