/* Hero Section with Background */
.hero {
    position: relative;
    width: 100%;
    height: 896px;
    background: url('images/Frame141.png') no-repeat right center;
    background-size: cover;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

/* Transparent Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent !important;
    padding: 20px 40px;
}

.navbar-brand img {
    max-height: 40px;
}

.search-bar {
    max-width: 600px;
    width: 100%;
}




.search-bar input {
    border-radius: 30px;
    padding: 6px 20px;
    border: 1px solid #ccc;
}

.search-icon {
    width: 32px;
    height: 32px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content Container */
.hero-content {
    max-width: 1728px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-top: 100px;
}

/* Left Side Content */
.left-content {
    padding: 40px;
    text-align: center;
}

.bonus-img {
    max-width: 400px;
    width: 100%;
    animation: bounce 1.5s infinite;
}

.btn-download {
    background: none;
    border: none;
    margin-top: 20px;
    padding: 12px 30px;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-download:hover {
    transform: scale(1.05);
}

.dnbtn {
    width: 300px;
    max-width: 100%;
}

/* Right Side Content */
.right-content {
    padding: 20px;
    text-align: center;
}



/* Animations */


/* Hover Effects */
.img-fluid:hover {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.border:hover {
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.info-icon {
    transition: transform 0.4s ease;
}

.info-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Tag Color */
.tag {
    color: pink;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        background-position: center;
        background-size: cover;
        height: auto;
        padding-bottom: 50px;
    }

    .hero-content {
        flex-direction: column;
        padding: 120px 20px 0;
        text-align: center;
    }

    .left-content, .right-content {
        padding: 20px;
    }

    .bonus-img {
        max-width: 250px;
    }

    .dnbtn {
        max-width: 100%;
    }

    .girl-img {
        max-width: 300px;
        margin-top: 30px;
    }

    .search-bar,
    .search-icon {
        display: none;
    }
}
