/* Add Bootstrap Icons CDN in your HTML head */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary-color: #6C63FF;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.wrapper{
overflow-x: hidden;
}

.bg-purple{
    background: #5750e6;
}

.navbar {
    background: white !important;
    height: 80px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    border-radius: 25px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.navbar-nav .nav-link:hover{
    color: #5750e6;
}
.nav-link.active{
    background: #5750e6;
    color: white !important;
}

/* .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after {
    width: 100%;
} */



.hero {
    padding-top: 80px;
    background-color: #fff;

}

.hero h1 {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #5750e6;
    border-color: #5750e6;
}
.app-links{
    display: flex;
    gap: 30px;
}

.app-links img {
    height: 40px;
    object-fit: contain;
}

.hero-image {
    text-align: center;
}
.hero-image img{
    width: 400px;
}

.main-page{
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Replace the existing .app-links styles with: */
.btn-store {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    gap: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-store i {
    font-size: 2rem;
}

.btn-store span {
    text-align: left;
    line-height: 1.2;
    font-size: 0.8rem;
}

.btn-store strong {
    font-size: 1.1rem;
}


/* Features Section Styles */
.features {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background-color: #6867ff;
    border-radius: 50%;
    z-index: 0;
}

.features h1 {
    color: #333;
    font-size: clamp(1rem, 5vw, 3rem);
    font-weight: bold;
    position: relative;
}

.features h1::after, .contact h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

.feature-item {
    padding: 20px;
    position: relative;
}

.feature-number {
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}



.features-app-preview {
    position: relative;
    z-index: 3;
}

.features-app-preview img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
}




/* about us */


.about h1 {
    color: #333;
    position: relative;
}

.about h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}



.about-image img {
    max-width: 100%;
}



.lead {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}



/* ... existing styles ... */
.contact a{
    font-weight: 300;
    font-size: 15px;
    color: #333;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-info {
    max-width: 500px;
}

/* Add these new styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay.show {
    display: block;
}

@media only screen and (max-width:1670px){
    .arrow-box{
        display: none;
    }
}


@media only screen and (min-width: 740px) and (max-width: 992px) {
    .arrow-box{
        display: block !important;
    }
}
.arrow-box{
    
    width: 250px;
    position: absolute;
    bottom: 200px;
    right: 5px;
    z-index: 999;
}
.arrow-box h4{
    font-weight: 600;
}
.arrow-box img{
    width: 100px;
}

[data-aos] {
    z-index: 3;
    position: relative;
}
