@font-face {
    font-family: "Inter";
    src: url(./fonts/Inter-VariableFont_opsz\,wght.ttf);
}

@font-face {
    font-family: "oswald";
    src: url(./fonts/Oswald-VariableFont_wght.ttf);
}

:root{
    --text-color: #171717;
    --color-white: #ffffff;
    --color-orange: #FB7349;
    --primary-color: #D85D27;
}


body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: linear-gradient(133.95deg, #FFFFFF 12.35%, #FFE9D2 71.54%);
    color: var(--text-color);
    /* min-height: 100vh; */
 }

.btn-link:hover {
    color: var(--primary-color);
}

h1,h2{
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 h1 {
     font-size: clamp(1.875rem, 1.2102rem + 2.9545vw, 3.5rem);
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: -1px;
 }
h2{
    font-size: clamp(1.25rem, 1.0455rem + 0.9091vw, 1.75rem);
}
 p {
    font-family: "Inter", sans-serif;
     font-size: 16px;
     line-height: 1.6;
 }

 .buttons {
     margin-top: 30px;
     display: flex;
     gap: 15px;
 }

 .btn {
    padding: 10px 20px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    min-width: 192px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    border-radius: 8px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .btn-primary {
    background: linear-gradient(98.97deg, #D85D27 25.02%, #D83027 107.72%);
    color: var(--color-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* box-shadow: 0px 5px 28px rgba(216, 59, 39, 0.5); */
 }
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0px 5px 28px rgba(216, 59, 39, 0.5);
    background: linear-gradient(98.97deg, #D83027 25.02%, #D85D27 107.72%);
}
 .btn-secondary {
     background: transparent;
     border: 2px solid var(--text-color);
     color: var(--text-color);
 }
.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.min-dvh-100{
    min-height: 100dvh;    
}


@media (min-width: 720px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .card.wide {
        grid-column: span 2;
        aspect-ratio: 5.3 / 2;
    }
    .container-new {
        padding: 30px 60px;
    }
}

@media (max-width: 1200px) {
    .container-new {
        padding: 0px 50px;
    }
    .btn {
        padding: 8px 20px;
        font-size: 16px;
        min-height: 48px;
        min-width: auto;
    }
}
@media (max-width: 991px) {
    .container-new {
        padding: 20px 40px;
    }
}
.card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 5 / 5;
    text-decoration: none;
    background: transparent;
    transition: transform 0.5s, box-shadow 0.5s;
    border: none;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

}


.card::before {
    content: '';
    position: absolute;
    height: 257px;
    background: linear-gradient(180.54deg, rgba(0, 0, 0, 0) 0.32%, rgba(0, 0, 0, 0.92) 46.16%);
    z-index: 1;
    bottom: -100px;
    top: auto;
    left: 0;
    right: 0;
    z-index: 99;
}

.card:hover .card-image {
    transform: scale(1.05);
}
.card.wide::before{
background: linear-gradient(260.84deg, rgba(0, 0, 0, 0) 13.04%, rgba(0, 0, 0, 0.92) 72.03%);
height: 100%;
bottom: 0;
}
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(16px, 12.7273px + 0.9091vw, 24px);
    color: white;
    z-index: 99;
}

.card-content h3 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
}

.view-now {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    transition: gap 0.3s;
}

.card:hover .view-now {
    gap: 16px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.card-image{
    position: absolute;
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: top;
    transition: transform 0.7s;
    z-index: 9;
}
.card-image1{
    background-image: url(./images/img1.png);
}
.blur-effect::after{
    content: "";
    position: absolute;
    inset: -20px;
    background-image: url(./images/img-blur1.png);
    background-size: cover;
}
.blur-effect {
    background: linear-gradient(113.55deg, rgba(255, 255, 255, 0.16) 7.78%, rgba(255, 255, 255, 0.04) 72.13%);
    backdrop-filter: blur(12px);
    position: absolute;
    inset: 0;
}

.card-image2 {
    background-image: url(./images/img2.png);

}
.card-image3 {
    background-image: url(./images/AI.jpg);
}
.card-image4 {
    background-image: url(./images/WEB3.jpg);
}


/************/

.portfolio-outer{
    position: relative;
}
.portfolio-wrap{
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
}

.portfolio-wrap::before{
    content: "";
    background-image: url(./images/line1.png);
    height: 100%;
    position: absolute;
    background-size: 100% 100%;
    width: 25px;
    left: 20px;
    top: 0;
    bottom: 0;
}
.portfolio-wrap::after {
    content: "";
    background-image: url(./images/line2.png);
    height: 100%;
    position: absolute;
    background-size: 100% 100%;
    width: 27px;
    right: 0;
    top: 0;
    bottom: 0;
}

.play-btn{
        background: var(--primary-color) !important;
        min-height: 50px;
        min-width: 50px;
        max-width: 50px;
        max-height: 50px;
        border-radius: 100px;
        outline: 5px solid rgba(255, 255, 255, 0.2196078431);
        animation: pulseGlow 1.8s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
}
@keyframes pulseGlow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

/*****************************/
form{
    font-family: "Inter", sans-serif;
}
.form-control{
    min-height: 54px;
    background: #FFFFFF;
    border: 1px solid #E8D4C0;
    box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
}

.contact_left {
    background: #fff;
    padding: 30px;
    box-shadow: 1px 0px 0px #D8BEA6;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_left::after {
    content: "";
    position: absolute;
    height: 80%;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, #171717 66.22%);
    width: 100%;
    left: 0;
    bottom: 0;
}
.contact_left img{
    max-width: 100%;
}

.contact_right {
    padding: 40px 50px;
}

.btn-submit{
    min-width: 264px;
}
.portfolio-outer-contact {
    background: linear-gradient(133.95deg, #FFFFFF 12.35%, #FFE9D2 71.54%);
}

.portfolio-outer-contact .portfolio-wrap {
    background-image: url(./images/bg_android.jpg);
    background-size: cover;
}

/********************/

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;    
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.back-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
}



/* Card */
.app-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.app-card:hover {
    transform: scale(1.02);
}

.image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.overlay::after{
    content: "";
    position: absolute;
    background: linear-gradient(354.37deg, #000 17.37%, rgba(0, 0, 0, 0) 64.1%);
    border-radius: 0px 0px 16px 16px;
    width: 100%;
    bottom: 0;
    height: 100%;
}
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: inset -0.608522px 0.608522px 0.608522px -1.21704px rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(2px);
    border-radius: 100px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    z-index: 9;
}
.play-button > img{
    max-width: 36px;
    object-fit: contain;
}
.image-wrapper h3 {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.tabs_wrap .nav-pills {
    background: linear-gradient(90deg, rgba(241, 233, 226, 0) 0%, #F1E9E2 23.08%, #F1E9E2 75%, rgba(241, 233, 226, 0) 100%);
    border-radius: 8px;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    position: relative;
    flex-wrap: nowrap;
    overflow: auto;
}
.tabs_wrap .nav-pills .nav-link{
    color: var(--text-color);
    padding: 10px 12px;
    width: 100%;
}
.tabs_wrap .nav-pills .nav-link.active{
    background-color: transparent;
    color: var(--color-white);
    min-height: 48px;
    border-radius: 8px;
}
 .qr_info h2 {
     color: var(--color-white);
 }
/*****************/

.tabs_wrap .nav-pills {
    position: relative;
    display: flex;
}

.tabs_wrap .nav-pills li {
    position: relative;
    min-width: 164px;
    list-style: none;
}

.nav-pills .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    position: relative;
}

.nav-pills .nav-link.active {
    font-weight: bold;
    color: var(--primary-color)
}

.nav-pills .glider {
    position: absolute;
    height: 48px;
    background:var(--primary-color);
    border-radius: 8px;
    transition: transform 0.3s ease, width 0.3s ease;
    z-index: 1;
    left: 0;
}
.tabs_wrap .tab-content {
    padding-bottom: 12px;
}



.contact_left.qr_left::after {
    display: none;
}

.contact_left.qr_left h2 {
    color: #000;
    font-size: clamp(20px, 15.0909px + 1.3636vw, 32px);
}

.contact_left.qr_left h2 span {
    color: var(--primary-color);
    font-size: clamp(24px, 17.4545px + 1.8182vw, 40px);
}
.qr_left .qr_info{
    position: static;
}


.qr_info {
    position: absolute;
    bottom: 30px;
    z-index: 9;
    left: 0;
    right: 0;
    text-align: center;
}
.z-index-3 {
    z-index: 9;
}
.cross-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
    background: #2D2D2DE5;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
}
.cross-icon img{
    max-width: 14px;
}
.modal-dialog-xl {
    background-color: #fff;
}

.modal-dialog.modal-dialog-xl {
    max-width: 100%;
    margin: 0;
}

.tabs_wrap .nav-pills {
    display: none;
}


/* Thanks Card */
.thank_card.portfolio-wrap::before,
.thank_card.portfolio-wrap::after {
    display: none;
}

.thank_card .container-new {
    min-height: 91vh;
    max-height: 91vh;
    padding: 0px;
}

.thank_card .container-new .future_wrapper_thank {
    padding: 0px;
}

.thank_card .logo_thank img {
    max-width: 80px;
}

.thank_card .thanks_wrap .dwn_details h2 {
    font-size: 28px;
    line-height: 32px;
}

.thank_card .thanks_wrap .dwn_details p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
}

.thank_card .thanks_wrap img {
    max-width: 250px;
}
 .back-btn-home {
     background-color: transparent;
     border: none;
     padding: 0;
 }
 /* .thank_card{
    background-image: url(./images/bg_android.jpg);
 } */
@media(max-width: 991.98px){
    .portfolio-wrap::before {
        left: 5px;
    }
    .contact_left img {
        width: 100%;
    }
    .image-wrapper h3{
        font-size: 16px;
        margin-bottom: 0;
    }
    .play-button>img {
        max-width: 24px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }
    .portfolio-wrap.app-wrap::before,
    .portfolio-wrap.app-wrap::after {
        display: none;
    }
    .portfolio-wrap.app-wrap .container-new{
        padding: 20px;
    }
   :has(.portfolio-wrap.app-wrap) body {
        background: linear-gradient(133.95deg, #ffebd6b8 12.35%, #FFE9D2 71.54%);
    }
    .header .breadcrumbs {
        order: 2;
        background: #ffffff;
        padding: 10px 8px;
        border-radius: 4px;
        width: 100%;
    }
    .header {
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 0;
        padding-bottom: 0;
    }
        .back-btn {
            border-radius: 4px;
        }
}
@media(max-width: 767.98px) {
   .portfolio-outer-contact .portfolio-wrap{
        background-image: url(./images/bg_android_mob.jpg);
        max-width: 100%;
    }
    .header .breadcrumbs {
        order: 2;
    }
    .form-control{
        min-height: 40px;
        padding: 10px 16px;
    }
    /***********/
    .card{
        aspect-ratio: 6/5;
    }
    .card.wide::before {
        background: linear-gradient(180.54deg, rgba(0, 0, 0, 0) 0.32%, rgba(0, 0, 0, 0.92) 46.16%);
        height: 257px;
        bottom: -100px;
    }
    .contact_right{
        padding: 40px 30px;
    }
    .card-image{
        background-position:  right;
    }
   
    .back-btn {
        min-height: 34px;
        max-height: 34px;
        min-width: 34px;
        max-width: 34px;
    }
    .back-btn img{
        max-width: 16px;
    }
    .breadcrumbs {
        gap: 5px;
    }
    .tabs_wrap .tab-content{
        padding-bottom: 0;
    }
    .breadcrumbs{
        font-size: 13px;
    }
    .tabs_wrap .nav-pills {
        justify-content: start;
    }
    .image-wrapper{
        aspect-ratio: 5 / 3;
    }
    

    .back-btn img {
        max-width: 14px;
    }

    span.chevron img {
        max-width: 13px;
    }
}




/****************/
 @media(min-width: 1200px){
.contact_left img{
    width:400px;
}
} 
 

@media screen and (min-height: 714px) and (orientation: landscape)
{
    .card{
        aspect-ratio: 5/5;
    }
}


@media only screen and (max-width:991px) {
    .thank_card .container-new {
        min-height: auto;
        max-height: none;
    }

    .thank_card .thank_inner_wrap .logo_wrap {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:580px) {
    .thank_card .thanks_wrap img {
        max-width: 200px;
    }

    .thank_card .thanks_wrap .dwn_details h2 {
        font-size: 24px;
        line-height: 34px;
    }   
   .header .breadcrumbs {
       font-size: 12px;
   }
    .back-btn {
        min-height: 20px;
        max-height: 20px;
        min-width: 20px;
        max-width: 20px;
        padding: 4px;
    }

               
} 

/*****************************/

