
.header {
    background-color: #81B71A;
    color: #fff;
}

.card-title {
    font-weight: bold;
}

.nav-link {
    color: #FE9E16;
}

.nav-link:hover {
    color: #81B71A;
    text-decoration: none;
}
.custom-bg-color {
    background-color: #81B71A;
}

.sticky-navbar {
    position: relative;
    top: 0;
    right: 0;
    width: 25%; /* Adjust this value as needed */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scrolling if the content is too tall */
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2 {
    color: black;
}

.search-bar input {
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
}

.card {
    border: none;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: black;
}

.card-text {
    color: black;
}

.brush-stroke {
    font-size: 73px; /* Adjust this value to make the text wider */
    text-align: center;
    font-family: 'Helvetica', 'sans-serif';
    font-weight: 10 !important; /* Adjust this value as needed */
}

.brush-stroke::after {
    content: "";
    position: absolute;
    left: 25%; /* Adjust this value to move the brush stroke left or right */
    right: 25%; /* Adjust this value to move the brush stroke left or right */
    bottom: 0;
    height: 10px; /* Adjust this value to change the thickness of the brush stroke */
    background: url(../img/shape/1.png);
    background-size: cover;
}


.brush-stroke2 {
    position: relative;
    font-size: 73px; /* Adjust this value to make the text wider */
}

.brush-stroke3 {
    position: relative;
    font-size: 80px; /* Adjust this value to make the text wider */
    font-family: Roboto, sans-serif !important;
}
.brush-stroke3::after {
    content: "";
    position: absolute;
    left: 25%; /* Adjust this value to move the brush stroke left or right */
    right: 25%; /* Adjust this value to move the brush stroke left or right */
    bottom: 0;
    height: 20px; /* Adjust this value to change the thickness of the brush stroke */
    background: url(../img/shape/1.png);
    background-size: cover;
}

.brush-stroke2::after {
    content: "";
    position: absolute;
    left: 25%; /* Adjust this value to move the brush stroke left or right */
    right: 25%; /* Adjust this value to move the brush stroke left or right */
    bottom: 0;
    height: 10px; /* Adjust this value to change the thickness of the brush stroke */
    background: url(../img/shape/1.png);
    background-size: cover;
}

.square-frame {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.navbar-link {
    font-size: 20px !important;
}

.app-button {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: left;
}
.app-button img {
    height: 50px;
    width: auto;
}
.app-button a {
    text-decoration: none;
}

/* Custom Banner CSS*/

.banner-area {
    background-image: url('../img/Back/5.svg')!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.device-mockup {
    height: 100%;
    padding: 4rem 0;
}

.phone-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.phone {
    position: absolute;
    width: 280px;
    transition: all 0.3s ease;
}

.phone img {
    width: 600%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.phone-1 {
    right: 0;
    z-index: 2;
}

.phone-1 img  {
    width: 550px !important;/* Adjust as needed */
    max-width: none !important;
    height: auto !important;  /* Maintains aspect ratio */
    margin-left: -200px !important; /* Adjust as needed to move the image left */
    margin-top: 1px !important; /* Moves image upward */
}


/* Responsive adjustments */
@media (max-width: 991.98px) {

    .banner-area {
        background-image: none !important;
        background-color: white !important;
    }
    .banner-content {
        text-align: center;
        padding: 3rem 0;
    }

    .phone-wrapper {
        height: 400px;
    }

    .phone {
        width: 200px;
        display: none !important; /* Hides image on mobile view */
    }
    .phone-1 img{
        display: none !important; /* Hides image on mobile view */
    }

}

@media (max-width: 575.98px) {
    .phone-wrapper {
        height: 300px;
    }

    .phone {
        width: 160px;
        display: none !important; /* Hides image on mobile view */
    }

}

