
@import url("https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap");

*,
*:after,
*:before {
    box-sizing: border-box;
}

.product_cards {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3vh auto;
}

.product_card {
    border-radius: 16px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    max-width: 300px;
}

.information {
    background-color: #dee0ff;
    padding: 1.5rem;
    min-height: 255px;
}

.information .product_tag {
    display: inline-block;
    background-color: #ffffff;
    color: #ff0101;
    font-weight: 600;
    padding: 0.5em 0.75em;
    line-height: 1;
    border-radius: 6px;
    animation: animate 1.5s linear infinite;
}

.information .product_tag+* {
    margin-top: 1rem;
}


@keyframes animate { 
    0% { 
        opacity: 0.4; 
    } 

    50% { 
        opacity: 1.4; 
    } 

    100% { 
        opacity: 2.5; 
    } 
} 

.information .product_title {
    font-size: 1.2rem;
    color: #141b22;
    line-height: 1.25;
}

.information .product_title+* {
    margin-top: 1rem;
}

.information .product_info {
    color: #000;
    font-weight: 400;
    font-size: 15px;
}

.information .product_info+* {
    margin-top: 1.25rem;
}

.information .product_button {
    font: inherit;
    line-height: 1;
    background-color: #fff;
    border: 2px solid #0264b3;
    color: #0264b3;
    padding: 0.5em 1em;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.information .product_button:hover,
.information .product_button:focus {
    background-color: #114169;
    color: #fff;
}

.information .details {
    display: flex;
    gap: 1rem;
}

.information .details div {
    padding: 0.75em 1em;
    background-color: #f1eeff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.125em;
    flex-basis: 50%;
}

.information .details dt {
    font-size: 0.875rem;
    color: #a69fd6;
}

.information .details dd {
    color: #6558d3;
    font-weight: 600;
    font-size: 1.25rem;
}


.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 49px;
    padding: 3% 5% 3% 5%;
    color: white;
    background: linear-gradient(to right, #389191, #1e5555);
}

.banner-text {
    margin-left: 15px;
    flex: 1;
    max-width: 770px;
    color: white;
    animation: slideInLeft 1s ease-in-out;
}

.project_head {
    color: white;
    margin-bottom: 4px;
}

.project_title {
    color: white;
    font-size: 34px;
    margin-bottom: 12px;
}

.project_description {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}



.banner-image {
    margin-left: 20px;
    height: auto;
    width: 34%;
    /* Add some space between text and image */
}

.banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    animation: slideIn 1s ease-in-out;
}

.project_main {
    margin-top: 71px;
}

/* Define the keyframes for the sliding animation */

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
    }

    .banner-text,
    .banner-image {
        margin: 10px;
        width: auto;
    }
}

@media (min-width: 1000px) and (max-width: 1115px) {

    .banner-text,
    .banner-image {
        margin: 10px;
        width: 43%;
    }
}

@media (min-width: 900px) and (max-width: 1000px) {

    .banner {
        padding: 3% 1% 3% 1%;
    }

    .banner-text,
    .banner-image {
        margin: 10px;
        width: 43%;
    }
}

@media (min-width: 800px) and (max-width: 900px) {

    .banner {
        flex-direction: column;
        padding: 3% 0% 3% 0%;
    }

    .banner-text,
    .banner-image {
        margin: 10px;
        width: auto;
    }
}

@media (min-width: 768px) and (max-width: 800px) {

    .banner {
        flex-direction: column;
        padding: 3% 3% 3% 3%;
    }

    .banner-text,
    .banner-image {
        margin: 10px;
        width: auto;
    }
}


@media screen and (max-width: 480px) {

    .row {
        margin-right: 0px;
        margin-left: 0px;
        padding: 4px;
    }

    .project_title {
        font-size: 24px;
    }

    .btn-lg,
    .btn-group-lg>.btn {
        font-size: 14px;
    }

    .btn-default {
        background-color: #5cb85c;
        color: white;
        border-color: #4cae4c;
    }
}

/* Responsive styles */
@media screen and (max-width: 767px) {
    .container {
        padding: 10px;
    }

    .course-description,
    .course-content,
    .instructor {
        margin-bottom: 10px;
    }

    .instructor-profile {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .price-card {
        max-width: 300px;
    }
}

body,
html {
    margin: 0;
}

/* Style tab links */
.tablink {
    background-color: #0264b3;
    color: white;
    float: left;
    border: 1px solid white;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 33.3%;
    font-weight: 600;
}

.tablink:hover {
    background-color: #1d6cab;
}

.tabcontent {
    color: black;
    display: none;
    padding: 80px 0px;
    height: 100%;
    font-size: 18px;
}

.tablink.active {
    background-color: white;
    color: #2196F3;
}

.buyer-supporth4 {
    font-size: 25px;
    color: #53a583;
}

.pricelist_p {
    text-align: center;
    color: #004dfb;
    font-weight: 500;
    font-size: 16px;
}

.abt_p {
    margin-top: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.abt_p:hover {
    cursor: pointer;
    color: #0049f3;
}


.pricelist_p1 {
    text-align: center;
    color: #000000;
    font-size: 16px;
    margin-top: 10px;
}

.buyer-supportp {
    margin-top: 25px;
    font-size: 16px;
    margin-top: 35px;
    font-weight: 500;
}

.abt_software {
    font-size: 20px;
    color: #53a583;

}

.pricedetails_ttl {
    text-align: center;
    color: #53a583;
    font-size: 31px;
}


.tab1 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-align: center;
}

.tab2 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.container_tab {
    border: 1px solid #555;
    margin-top: 40px;
}

.description {
    text-align: left;
    max-width: 50%;
    animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.description h2 {
    text-align: center;
}

.product_video {
    margin-left: 10px;
    width: 35%;
}

.product_video iframe,
.product_price {
    animation: slideIn 1s ease-in-out;
}

.screenshot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image {
    max-width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 10px;
    animation: slideBottomToTop 1s ease-in-out;
}

@keyframes slideBottomToTop {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.buyerimage,
.productimage {
    width: 300px;
    height: auto;
    animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}


.product_price {
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_logo img {
    display: flex;
    align-items: center;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    object-fit: cover;
}

@media (max-width:425px) {
    .product_logo img {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 700px) {
    .screenshot {
        flex-direction: row;
    }

    .image {
        max-width: 240px;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
        height: auto;
        margin-bottom: 10px;
    }

    .buyerimage {
        width: 350px;
        height: auto;
    }

    .productimage {
        width: 450px;
        height: auto;
    }
}

@media (min-width: 1024px) {
    .screenshot {
        flex-direction: row;
    }
}

@media screen and (min-width: 320px) and (max-width: 340px) {
    .product_video iframe {
        width: 255px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 16px;
    }
}

@media screen and (min-width: 340px) and (max-width: 370px) {
    .product_video iframe {
        width: 275px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 15px;
    }
}

@media screen and (min-width: 370px) and (max-width: 440px) {
    .product_video iframe {
        width: 297px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        padding: 50px 15px;
        font-size: 17px;
    }
}

@media screen and (min-width: 440px) and (max-width: 600px) {
    .product_video iframe {
        width: 350px;
    }

    .tablink {
        width: 100%;
        float: none;
    }

    .product_video {
        margin-left: 0px;
    }

    .tabcontent {
        font-size: 17px;
    }
}

@media screen and (min-width:600px) and (max-width: 747px) {
    .tablink {
        font-size: 11.3px;
    }
}

@media screen and (min-width:747px) and (max-width: 787px) {
    .tablink {
        font-size: 13px;
    }
}

@media screen and (min-width:600px) and (max-width: 680px) {
    .product_video iframe {
        width: 500px;
    }
}

@media screen and (max-width: 900px) {

    .tab1,
    .tab2 {
        flex-direction: column;
    }

    .reverse_tab {
        flex-direction: column-reverse;
    }

    .description,
    .product_price {
        max-width: 100%;
    }

    .product_video {
        margin-left: 0px;
        margin-top: 30px;
        width: 100%;
    }
}

@media screen and (min-width:900px) and (max-width: 1065px) {

    .tab1,
    .tab2 {
        flex-direction: column;
    }

    .reverse_tab {
        flex-direction: column-reverse;
    }

    .description,
    .product_price {
        max-width: 100%;
    }

    .product_video {
        margin-left: 0px;
        margin-top: 30px;
        width: 100%;
    }
}

@media screen and (min-width:1024px) {
    .tabcontent {
        font-size: 17px;
    }

    .product_video iframe {
        width: 550px;
    }
}

@media screen and (min-width:1440px) {
    .tabcontent {
        font-size: 20px;
    }

    .product_video iframe {
        width: 550px;
    }
}

.price-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    width: 300px;
    padding: 20px;
    text-align: center;
}

.price-header {
    background-color: #0f7777;
    color: #fff;
    border-radius: 8px 8px 0 0;
    padding: 10px 0;
}

.price-header h2 {
    margin: 0;
}

.price-details {
    padding: 20px 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.price span {
    font-size: 14px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 5px 0;
}

.price-footer {
    padding: 20px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0f7777;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

/*.btn:hover {
    background-color: #0c6666;
}*/

.btn-ban {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #0f7777;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.btn-ban:hover {
    background-color: #0f7777;
    color: #fff;
}

.view_btn {
    padding: 5px 10px;
    background-color: #0000FF;
    text-decoration: none;
    border: none;
    color: white;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
}

.view_btn:hover {
    background-color: #5757f7;
    color: white;
}

/* Style for the horizontal cards */
.card {
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px;
    padding: 20px;
    display: inline-block;
    vertical-align: top;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* Style for the card headings */
.card h2 {
    margin-top: 0;
    color: #000000;
}

/* Style for the card descriptions */
.card p {
    color: #000;
}

.links_p {
    text-decoration: none;
    color: #0264b3;
}

.links_p:hover {
    text-decoration: underline;
    color: #000;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader.hidden {
    display: none;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 7px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
    from {}

    to {
        transform: rotate(360deg);
    }
}


.cont_container {
    max-width: 90%;
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.cont_contact_info {
    margin-top: 20px;
}

.contact_item {
    margin-bottom: 25px;
    font-size: 15px;
}

.contact_item i {
    margin-right: 10px;
    font-size: 20px;
    color: #007bff;
}

.whatsapp_link,
.upi_link,
.payment_link {
    color: #2131f3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp_link:hover,
.upi_link:hover,
.payment_link:hover {
    text-decoration: underline;
    color: #000;
}

.card_button_a {
    text-decoration: none;
}

@media (max-width:1065px) {
    .description {
        margin-top: 30px;
    }
}

.card_des_div {
    min-height: 80px;
}

.des_div {
    margin-top: 10px;
    margin-bottom: 10px;
}

.des_div p {
    margin-top: 12px;
    font-size: 15px;
}

.company_name {
    font-size: large;
}

.support_p {
    font-size: 15px;
    font-weight: 500;
}

.cont_contact_info_course {
    margin-top: 15px;
    animation: slideIn 1s ease-in-out;
    text-align: left;
}

.contact_item_course {
    margin-bottom: 25px;
    font-size: 15px;
}

.contact_item_course i {
    margin-right: 10px;
    font-size: 20px;
    color: #007bff;
}

.whatsapp_link_course,
.upi_link_course,
.payment_link_course {
    color: #2131f3;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .buyerimage {
        height: 270px;
        width: auto;
    }
}

