/* Import custom font */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* variables */
:root {
    /* colors */
    --sg0-color-primary-hsl: 250, 84%, 54%;
    --sg0-color-bg-hsl: 0, 0%, 100%;
    --sg0-color-contrast-high-hsl: 230, 7%, 23%;
    --sg0-color-contrast-higher-hsl: 230, 13%, 9%;
    --sg0-color-bg-light-hsl: 0, 0%, 100%;

    /* spacing */
    --sg0-space-sm: 0.75rem;
    --sg0-space-md: 1.25rem;
}

@media(min-width: 64rem) {
    :root {
        /* spacing */
        --sg0-space-sm: 1.125rem;
        --sg0-space-md: 12rem;
    }
}

/* Global styles */
p {
    font-family: "Inter", serif !important;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Audiowide", serif !important;
}

ol,
ul,
menu {
    list-style: none;
}


/* Navbar */

.logo {
    line-height: 60px;
    position: fixed;
    float: left;
    margin: 0 46px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}

.logo img {
    width: 135px;
}

nav {
    position: fixed;
    width: 100%;
    line-height: 60px;
    z-index: 999;
}

nav ul {
    line-height: 60px;
    list-style: none;
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    color: #fff;
    padding: 0 60px;
    text-align: right;
    margin: 0;
    transition: 1s;
    border: 2px solid #626262;
    border-radius: 10px;
    border-top: 0;
}

nav.black ul {
    background: #000;
}

nav ul li {
    display: inline-block;
    padding: 0 10px;
    font-weight: 600;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}

.menu-icon {
    line-height: 60px;
    width: 100%;
    background: #000;
    text-align: right;
    box-sizing: border-box;
    padding: 15px 24px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.black {
    background: #000;
    padding-bottom: 10px;
}

@media(max-width: 786px) {
    .logo {
        position: fixed;
        top: 0;
        margin-top: 16px;
    }

    nav ul {
        max-height: 0px;
        background: #fff;
    }

    nav.black ul {
        background: #fff;
        border-radius: 0;
    }

    .showing {
        max-height: 34em;
        border-radius: 0;
    }

    nav ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 0 24px;
        text-align: center;
    }

    nav ul li a {
        color: black;
    }

    .menu-icon {
        display: block;
    }
}

.menu {
    display: flex;
    justify-content: center;
}

.menu ul {
    width: fit-content;
}

/* Pre-loader styles */

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it covers the whole screen */
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* Light border for spinner */
    border-top: 4px solid #000;
    /* Darker color for the top part of the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Keyframe animation for spinning effect */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Banner Section */

.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    padding-top: 80px;
}

/* Background video */

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video fills the entire section */
    z-index: -1;
    /* Ensures the video is behind the content */
}

/* Content over the video */

.banner-section .container {
    position: relative;
    z-index: 1;
    /* Ensure the container is above the video */
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-section .row {
    width: 100%;
}

.banner-section .col-md-6 {
    color: white;
    /* Change this to a color that contrasts with your video */
    text-align: left;
    padding: 0 20px;
    /* Adjust padding as necessary */
}

.banner-section h1 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 60px;
    color: #fff;
}

.banner-section a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #0023bd;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.banner-section a:hover {
    background-color: #0023bd;
    border: 1px solid #0023bd;
    color: #fff;
    transition: 0.5s;
}

.banner-list {
    padding: 0;
    margin: 0;
}

.banner-list li {
    line-height: 60px;
    list-style: none;
    padding: 0;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: rotateY(-15deg);
    margin-bottom: 5px;
    border-radius: 10px;
    flex: 1;
}

.banner-list li:hover {
    transform: rotateY(-15deg) scale(1.05);
    /* Keeps the tilt and adds scaling on hover */
}

.banner-list li a {
    display: block;
    text-align: left;
    width: 260px;
    padding: 0 20px;
    border: 1px solid #ccc;
    background: #fff;
    box-sizing: border-box;
    color: #000;
    transition: 0.5s;
}

.banner-list li.active a {
    background-color: #0023bd;
    color: #fff;
    transform: scale(1.05);
    border: none;
}

.banner-list li a img {
    max-width: 100%;
    /* Ensures image fits within the container */
}

.banner-list li img {
    width: 25px;
    height: 25px;
    object-fit: scale-down;
    margin-right: 10px;
}

.on-hover-image-change img {
    max-width: 365px;
    min-width: 365px;
    min-height: 350px;
    max-height: 350px;
    object-fit: contain;
}

.banner-hover-img {
    display: flex;
    gap: 50px;
}

/* About Section */

.about-content {
    text-align: center;
}

.about-section {
    padding: 100px 0;
}

.about-content h2 {
    font-size: 70px;
    font-weight: 800;
}

.about-contents p {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.know-more-common {
    background: #006fff;
    color: #fff;
    padding: 10px 40px 10px;
    font-size: 20px;
    margin: 0;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 3px 0px 27px 9px rgb(26 115 232 / 26%);
    transition: 0.5s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

a.know-more-common:hover {
    background: #355277;
}

.know-more-common:hover {
    box-shadow: none;
    transition: 0.5s;
}

.know-more-btn {
    padding-top: 20px;
    display: inline-block;
}

.image-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    /* Full screen height */
    transition: all 1s ease;
}

.image {
    width: 475px;
    /* Adjust size as needed */
    height: 475px;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease, opacity 1s ease;
    margin: 10px;
    /* Space between images */
    position: absolute;
}


/* Why Choose */

.why-choose h3 {
    font-size: 50px;
    font-weight: 700;
}

.why-choose {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    background: url(../images/bg/bg-image.jpg);
    background-size: cover;
    background-position: center;
}

.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.why-choose * {
    position: relative;
    z-index: 2;
    /* Brings content above the overlay */
}

.why-choose h4 {
    font-size: 55px;
    font-weight: 700;
}

.why-choose h5 {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
    line-height: 35px;

}

.why-choose h4 {
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
}

/* Work Section */


/* component */
.stack-cards {
    --stack-cards-gap: var(--sg0-space-sm);
    --stack-cards-item-ratio: 2.96/1;
}

.stack-cards__item {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: var(--sg0-space-md);
    height: 0;
    padding-bottom: calc(100%/(var(--stack-cards-item-ratio)));
    -webkit-transform-origin: center top;
    transform-origin: center top;
}

.stack-cards__item>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* utility classes */
.sg0-overflow-hidden {
    overflow: hidden;
}

.sg0-radius-lg {
    border-radius: 0.5em;
}

.sg0-bg {
    --sg0-bg-o: 1;
    background-color: hsla(var(--sg0-color-bg-hsl), var(--sg0-bg-o, 1));
}

.sg0-flex-center {
    justify-content: center;
    align-items: center;
}

.sg0-flex {
    display: flex;
}

:where(.sg0-inner-glow) {
    position: relative;
}

.sg0-inner-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
}

.stack-cards.js-stack-cards {
    padding: 0;

    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    width: 100%;
    display: flex;
    position: sticky;
    top: 0;
}

ul.stack-cards.js-stack-cards {
    padding: 0;
}

.work-section {
    padding: 100px 0;
    display: inline-block;
    position: relative;
    width: 100%;
    background: #ececec;
}

.work-item {
    margin: 0 auto;
    background-image: url(../images/bg-image.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 0;
    line-height: 0;
    border-radius: 30px;
    box-shadow: 3px 0px 27px 9px rgb(26 115 232 / 26%);
}

.work-video video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.work-content h4 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -2px;
}

.work-content {
    padding: 30px;
    color: #fff;
    line-height: 30px;
}

.work-content p {
    font-size: 20px;
}

.work-item .row {
    align-items: center;
}

.work-section h3 {
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    padding-bottom: 20px;
}

.testi-content p {
    font-size: 25px;
}

.testimonials_list_wrap {
    width: 100%;
    position: sticky;
    top: 22%;
}

.testimonials_wrap {
    margin-top: -4rem;
}

.testimonials_component {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    width: 100%;
    display: flex;
    position: sticky;
    top: 0;
}

.testimonials_list,
.testimonials_item {
    width: 100%;
    position: relative;
}

/* Add top padding to the testimonials section */

.testimonials {
    padding: 80px 30px 80px;
    background-image: url(../images/bg/bg-testi.jpg);
    position: relative;
}

.testimonials h4 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    padding-bottom: 50px;
}

.testimonials-slider {
    background: #000;
    text-align: left;
    padding: 15px;
    color: #fff;
    border: 1px solid #9d9d9d;
    border-radius: 12px;
}

.testi {
    display: flex;
    justify-content: space-between;
}

.testi .testi-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content p {
    font-size: 15px;
}

.testimonial-content {
    padding-top: 10px;
}

.testi-name h3 {
    font-weight: 500;
    font-size: 18px;
}

.testi-name p {
    font-size: 16px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.navigation-arrow:after {
    content: "";
    position: absolute;
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
    width: 33%;
    height: 100%;
    top: 0;
    z-index: 1;
}

.navigation-arrow:before {
    content: "";
    position: absolute;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    width: 33%;
    height: 100%;
    top: 0;
    z-index: 2;
}

/* Footer */

.footer-section {
    padding: 100px 0 50px;
    background: linear-gradient(to right, black 30%, #404040 100%);
}

.footer-logo img a {
    color: #fff;
    text-decoration: none;
}

.footer-logo img {
    width: 100%;
}

.footer-nav-list {
    text-decoration: none;
    list-style: none;
    padding: 0;
}

.footer-list {
    color: #fff;
    list-style: none;
    font-size: 17px;
    padding-top: 50px;
    line-height: 25px;
}

.footer-list li {
    margin-bottom: 8px;
    /* Space between items */
}

.footer-list a {
    color: #fff;
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
    /* Hover effect for links */
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    justify-content: end;
}

.footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-nav-list a:hover {
    text-decoration: underline;
    /* Hover effect for navigation */
}

.copy-right {
    margin-top: 10px;
    font-size: 14px;
    text-align: right;
    color: #fff;
}

@media (max-width: 768px) {

    .footer-nav-list {
        justify-content: end;
        gap: 10px;
    }

    .copy-right {
        text-align: right;
        margin-top: 20px;
    }
}

.card-stacks {
    margin-top: 70px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .card-stacks {
        margin-top: 70px;
    }

    .grid-container {
        margin-top: 70px;
    }
}

@media (max-width: 767px) {
    .cardes {
        width: 300px !important;
    }

    .card-stacks {
        width: 300px !important;
    }

    .grid-item img {
        height: auto !important;
    }

    .grid-container {
        padding: 95px 0 60px;
    }

}

.footer-section .row {
    align-items: end;
}

.footer-section .row .col-md-6 .row {
    align-items: unset;
}

.border-bottom-gradiant {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, black 23%, #404040 73%);
    margin-top: 30px;
}


.video-btn {
    display: none;
}

.video-btn:hover {
    background-color: #fff;
    color: #000;
}

.video-btn.is-playing {
    opacity: 0.2;
    pointer-events: none;
}

.work-video img {
    border-radius: 30px;
    width: 100%;
}

/*ABT*/
.about-contents h2 {
    font-size: 40px;
    font-weight: 500;
}

.about-contents p {
    font-size: 18px;
    line-height: 35px;
    padding-top: 15px;
}

/**/
.card-stacks {
    position: relative;
    width: 530px;
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

.cardes {
    position: absolute;
    width: 540px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /*box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);*/
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.twitter {
    /* background-color: #1da1f2;*/
    z-index: 5;
}

.youtube {
    /* background-color: #ff0000;*/
    z-index: 4;
}

.qr {
    /* background-color: #4f4f4f;*/
    z-index: 3;
}

.tiktok {
    /* background-color: #f31559;*/
    z-index: 2;
}

.instagram {
    /* background-color: #c13584;*/
    z-index: 1;
}


/* Grid Layout Section */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.grid-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.grid-item img {
    width: 100%;
    height: 193px;
    object-fit: cover;
}

.grid-item p {
    margin: 10px;
    font-size: 14px;
    color: #333;
}

/* Hide Grid Initially */
.hidden {
    display: none;
}

.cardes img {
    width: 100%;
}

.banner-section p {
    color: #fff;
    padding-bottom: 30px;
}

.know-more-btn a:hover {
    color: #fff;
    text-decoration: none;
}

.what-we-do .know-more-common {
    font-family: 'Audiowide';
}

.what-we-do {
    padding: 80px 0;
}

.proven-results {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    background: url(../images/bg/bg-image.jpg);
    background-size: cover;
    background-position: center;
}

.proven-results::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.proven-results * {
    position: relative;
    z-index: 2;
}

.proven-results h3 {
    font-size: 50px;
    font-weight: 700;
}

.icon-fixed ul li {
    line-height: 90px;
}

.icon-fixed {
    position: fixed;
    z-index: 9;
    bottom: 100px;
    right: 20px;
}
.list-unstyled {
    font-family: 'Inter';
    color: var(--bs-secondary-color) !important;
    padding-bottom: 5px;
}