body.lenis.lenis-smooth {
    overflow-x: hidden;
}


html,
body {
    margin: 0;
    font-family: 'raleway-regular', sans-serif !important;
    background: #ffffff;
    color: rgb(0, 0, 0);
    overflow-x: clip;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    scroll-behavior: auto !important
}

/* font family */

@font-face {
    font-family: 'raleway-regular';
    src: url('../fonts/Urbanist-Regular.ttf');


}

@font-face {
    font-family: 'manrope-medium';
    src: url('../fonts/Urbanist-Medium.ttf');

}

@font-face {
    font-family: 'manrope-bold';
    src: url('../fonts/Urbanist-Bold.ttf');

}

@font-face {
    font-family: 'manrope-semibold';
    src: url('../fonts/Urbanist-SemiBold.ttf');

}

@font-face {
    font-family: 'Oswald-Regular';
    src: url('../fonts/Urbanist-Medium.ttf');
}

.oswald-font {
    font-family: 'Oswald-Regular', sans-serif !important;
}

#menu-button {
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    box-sizing: border-box;
    background-color: #ffffff;
    width: 100%;
    transition: all .2s ease;
    height: 70px;

}

#menu-button.menu-header.active {
    height: 50px;
    /* background: rgba(0, 0, 0, 0.5); */
}

#menu-button.menu-header.active .logo {
    opacity: 1;
}

#menu-button.menu-header.active #lets_connect_btn {
    opacity: 1;
}

#menu-button.menu-header.active .logo img {
    width: 65%;
    transition: all .2s;
}

#menu-button.menu-header.active .hamburger-icon span {
    /* background-color: #ffffff; */
}

.menu-text {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    font-size: 10px;
    display: none;
}

.menu-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 2px;
    width: 0%;
    background-color: #000000;
    /* bottom border color */
    transition: width 0.4s ease-in-out;
}

.menu-text:hover::after {
    width: 100%;
}

.error {
    color: red;
    margin-top: 5px;
}


/* Hide hamburger icon on desktop */



.menu-text {}



.hamburger-icon {
    width: 50px;
    height: auto;
    display: block;
}

.hamburger-icon span {
    display: block;
    height: 0.1rem;
    background-color: #000000;
    margin: 0.5rem 0;
}


#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: #000; */
    background-image:
        radial-gradient(circle at 50% 0%, rgba(222, 255, 154, 0.6), transparent 45%),
        linear-gradient(to bottom, #70C39C 0%, #63b894 40%, #DEFF9A 100%),
        radial-gradient(circle at 15% 15%, rgba(222, 255, 154, 0.4), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(112, 195, 156, 0.4), transparent 55%),
        radial-gradient(circle at 70% 65%, rgba(112, 195, 156, 0.3), transparent 60%);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    transform: translateY(-100%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}

.menu-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/menu-bg-home-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: -1;
    opacity: 1;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    color: black;
    margin-top: -25px;
}

.menu-top .logo {
    font-weight: 500;


}

#close-btn {
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 20px;
    position: relative;
    color: #000000;
    padding-bottom: 4px;
}



#close-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    display: none;
}

#close-btn:hover::after {
    transform: scaleX(1);
    display: none;
}

#ABOUT {
    color: white;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0px auto 0 auto;
    font-size: 48px;
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding-left: 200px;
    gap: 1rem;
}

.nav-links li a {
    display: inline-block;
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
}

.nav-links li span {
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(to top, #323232 50%, #DEFFA9 50%);
    background-size: 100% 200%;
    background-position: bottom;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.4s ease;
    font-family: 'Oswald-Regular', sans-serif !important;
}

.nav-links li:hover span {
    background-position: top;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform-origin: bottom;
    transform: scaleY(0);
    z-index: 0;
    transition: none;
}


.menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding: 30px 0 0 0;
}


.info-row-container {
    display: flex;
    gap: 5px;
    flex-direction: row;

}

.column {
    flex: 1;
    min-width: 180px;
}

.right-video {
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.video-preview {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: inline-block;

}

.video-preview video {
    width: 100%;
    height: auto;


}

#videoCloseBtn {
    position: fixed;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    z-index: 10000;
    display: none;
    user-select: none;
    backdrop-filter: blur(5px);
}

.social-heading {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.socials-column a {
    display: block;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    margin-bottom: 4px;
    transition: color 0.3s ease;

}

.socials-column a:hover {
    color: #ffffff;
}

.contact-info,
.address-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    color: #000000;
}

.contact-info h4,
.address-info h4 {

    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.address-info {
    line-height: 25px;
}

.contact-info span,
.address-info span {
    display: block;
    font-weight: 500;
    color: #000000;
}

.social-heading,
.contact-info h4,
.address-info h4 {
    margin-bottom: 4px;
}



#menuVideo {
    width: 320px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    position: relative;
    z-index: 1;
}



.video-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: black;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-fullscreen video {
    max-width: 100%;
    max-height: 100%;
}

.cursor-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    z-index: 10000;
}

.right-video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}






#menuVideo {
    width: 100%;
    height: auto;
    display: block;
}


.play-reel-btn {
    margin-top: 8px;
}


.play-reel-btn button {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.play-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: none;
}

.play-icon .triangle {
    font-size: 12px;
    margin-left: 2px;
    display: inline-block;
    transform: translateX(1px);
    color: #fff;
}

.play-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.play-text .main-text {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}

.play-text .sub-text {
    font-size: 12px;
    color: #fff;
    padding-right: 50px;

}


.index {
    background-color: #B15C2F;
    height: 100vh;
    width: 100%;
}

.home-banner-section {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-banner-div {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    background-color: #28242180;
}

.video-box {
    position: absolute !important;
    display: inline-block;
    top: 0;
}

.home-banner-section video {
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    object-fit: cover;
}

.banner-content-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.banner-content-row .banner-content {

    position: relative;
    left: 85px;
    top: 35px;
    z-index: 200;
}

.banner-content-row .banner-content h1 {
    color: #fff;
    /* font-size: 6rem;
    line-height: 96px; */
    font-size: 60px;
    line-height: 85px;
    margin-bottom: 30px;
}

.banner-content-row .banner-content p {
    line-height: 35px;
}

.common-heading {
    color: #000;
}

@font-face {
    font-family: 'Manrope-Bold';
    src: url('../fonts/Urbanist-Bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Container setup */
.branding-marquee {
    overflow: hidden;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;

}

/* Track area */
.marquee-track {
    display: flex;
    overflow: hidden;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Moving content */
.marquee-content {
    display: flex;
    animation: marqueeScroll 165s linear infinite;
}

/* Single marquee item */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-right: 5vw;
}


.marquee-item h1 {
    font-family: 'CellofyBold', sans-serif;
    font-size: clamp(24px, 6vw, 180px);
    line-height: 1;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

/* Logo */
.marquee-logo {
    width: clamp(32px, 6vw, 160px);
    height: auto;
    display: block;
}

/* Animation keyframes */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item span {
    display: block;
    white-space: nowrap;
}


/* clients section video and image section */


.case-studies-section {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0rem;
    padding-bottom: 4rem;

}

/* Visually Hidden Heading for Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}


.case-studies-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Responsive Grid for Larger Screens (apply to .case-studies-row) */


.case-study-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: transparent;
}

.case-study-item:hover {
    transform: translateY(-5px);
}


.case-study-image-wrapper {
    position: relative;
    width: 100%;
    height: auto !important;
    overflow: hidden;
}

/* Ensuring consistent fixed height for mobile */

.case-study-img {
    position: relative;

}

/* Video Overlay Styles */
.case-study-video-overlay {
    width: calc(100% + 1px);
    height: 115%;
    position: absolute;
    top: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(0%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
    background-color: transparent;
}

/* Hide video overlay on medium and smaller screens */


.case-study-video {
    width: 100%;
    height: 100%;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: -1;
    background-color: transparent;
}

/* Hover effects for the case study item */
.case-study-item:hover .case-study-video-overlay {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
}

.case-study-item:hover .case-study-video {
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
}

/* Fade out the image on hover to reveal video */
.case-study-item:hover .case-study-img {
    opacity: 0;
    z-index: 1;
}

/* Case Study Title */
.case-study-title {
    color: #1a202c;
    font-size: 1.125rem;
    margin-top: 0.75rem;
    /* font-weight: 600; */
}

.case-study-title a {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: block;
    transition: color 0.2s ease;
}



.case-study-title a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Case Study Tags Container */
.case-study-tags-container {
    margin-top: 0.25rem;
    flex-grow: 1;
}



.tag-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4a5568;
    font-size: 0.875rem;
}

.tag-list li {
    white-space: nowrap;
}

.tag-list .tag-separator {
    display: inline-block;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    color: #a0aec0;
}

/* Hide the last separator */
.tag-list li:last-child .tag-separator {
    display: none;
}

/* More Work Button */
.more-work-container {
    display: flex;
    justify-content: center;
    margin-top: 0rem;
    padding-top: 2rem;
}

.more-work-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9999px;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: #000000;
    color: #ffffff;
    padding: 0 1.5rem;
    height: 60px;
    min-width: 150px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.more-work-button:hover {
    background-color: #1a202c;
    color: #ffffff;
}



/* work section starts*/


.pt-3 {
    padding-top: 0.75rem;

}

.sm\:pt-8 {
    @media (min-width: 640px) {
        padding-top: 2rem;

    }
}

.pb-8\/10 {
    padding-bottom: 0.8rem;

}

/* Container Styles */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-3\/5 {
    padding-left: 0.6rem;

    padding-right: 0.6rem;

}

.max-w-\[1920px\] {
    max-width: 1920px;
}


.pt-\[\.1em\] {
    padding-top: 0.1em;
}

.text-4xl {
    font-size: 2.25rem;

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-4xl p {
    text-align: center;
    width: 70%;

}

.text-base {
    font-size: 1rem;

    line-height: 1.5rem;

}

.mr-8\/10 {
    margin-right: 0.8rem;

}

.float-left {
    float: left;
}

.tracking-normal {
    letter-spacing: 0;
}

/* Paragraph Styles */
.text-3xl {
    font-size: 2rem;
    line-height: normal;
    width: 75%;
    margin: 0 auto;
    text-align: center;
}

.mt-\[-0\.1em\] {
    margin-top: -0.1em;
}

/* Responsive Adjustments */
@media (min-width: 640px) {
    .sm\:pt-8 {
        padding-top: 2rem;
    }

    .px-3\/5 {
        padding-left: 1.2rem;

        padding-right: 1.2rem;
    }
}


.clearfix::after {
    content: "";
    display: table;
    clear: both;
}



.bg-primary {
    background-color: var(--primary);
}

.text-text-dark {
    color: var(--text-dark);
}


/* what our client says */
:root {
    --card-height: auto;
}





.staggered-card {
    background-color: #fceb72;
    color: #000;
    padding: 50px;
    margin-bottom: 100px;
    position: sticky;
    top: calc(50vh - var(--card-height) / 2);
    transform-origin: center top;
    will-change: transform;
    z-index: 1;
    transition: transform 0.2s ease;
}

.staggered-card:nth-child(even) {
    background-color: #fceb72;
    color: #000;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.6;
}

.flex-items-center-justify-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}

.flex-items-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.What-Our-Client-Says-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 40px;

}

.request-quote-wrapper {
    text-align: center;
    margin-top: 40px;

}

.request-quote-button {
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;


}

.request-quote-button a {
    text-decoration: none;
    list-style: none;
    color: rgb(255, 255, 255);
}

.request-quote-button:hover {

    background-color: #000;
    color: #eceae5;
}




.our-clients-logo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px 60px 20px;
}

.grid-section {
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.brand_hover {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0px;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 20px;
    border: 0.1px solid #bfbfbf26;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;

}

.brand_hover img {
    max-width: 100%;
    max-height: 150px;
    transition: all 0.4s ease;

}


.black {
    color: #000;
}

.brand_hover:hover {
    background-color: #043A27;
}

.logo-wrapper:hover {

    background-color: #043A27;
}

.logo-wrapper-two:hover {

    background-color: #2B3847;


}

.logo-wrapper-three:hover {
    background-color: #AC8D4B;
}

.logo-wrapper-four:hover {
    background-color: #231F20;
}

.logo-wrapper-five:hover {
    background-color: #E82B2E;
}

.logo-wrapper-six:hover {
    background-color: #49AA42;
}

.logo-wrapper-seven:hover {
    background-color: #FACF30;
}

.logo-wrapper-eight:hover {
    background-color: #BA2031;
}

.logo-wrapper-nine:hover {
    background-color: #2B64B0;
}

.logo-wrapper-ten:hover {
    background-color: #52725F;
}

.logo-wrapper-eleven:hover {
    background-color: #2D2E74;
}

.logo-wrapper-twelve:hover {
    background-color: #B49050;
}

.logo-wrapper-thirteen:hover {
    background-color: #24B2E7;
}

.logo-wrapper-fourteen:hover {
    background-color: #FFE9CF;
}

.logo-wrapper-fifteen:hover {
    background-color: #0083C0;
}

.logo-wrapper-sixteen:hover {
    background-color: #312F2C;
}

.logo-wrapper-seventeen:hover {
    background-color: #4C4C4E;
}

.logo-wrapper-eighteen:hover {
    background-color: #0C193A;
}

.logo-wrapper-nineteen:hover {
    background-color: #0095CE;
}

.logo-wrapper-twenty:hover {
    background-color: #7C8B9C;
}

.logo-wrapper-twentyone:hover {
    background-color: #77777B;
}

.logo-wrapper-twentytwo:hover {
    background-color: #BA9C61;
}

.logo-wrapper-twentythree:hover {
    background-color: #EC1C3C;
}

.logo-wrapper-twentyfour:hover {
    background-color: #2B64B0;
}



/* Banner Video Section Style Divya 26-6-25 */
.home-banner-section video {
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    object-fit: cover;
}

/* what we do section */
.what-we-do-sec {
    position: relative;
    padding: 100px 100px;
    background-color: #000000;
    color: #ffffff;
}

.card-service {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .card-service {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.card-service::after {
    content: '';
    width: 0;
    height: 0.55px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 1s ease;
}

.card-service .service-row {
    position: relative;
    align-items: center;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;

}

@media (min-width: 768px) {
    .card-service .service-row {
        text-align: left;
    }
}

.card-service .service-row .icon-col {
    text-align: center;
}

.card-service .service-row .icon-col img,
.card-service .service-row .icon-col svg {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.card-service .service-row .title-col {
    margin-top: 1.875rem;
    flex: 1;
}

@media (min-width: 768px) {
    .card-service .service-row .title-col {
        margin-top: 0;
        padding-right: 5%;
        padding-left: 5%;
    }
}

.card-service .service-row .title-col h3 {
    margin-bottom: 1rem;
}

.card-service .service-row .title-col .description-container {
    overflow: hidden;
    position: relative;
}

.card-service .service-row .title-col .description-container .description {
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
}

@media (min-width: 1200px) {
    .card-service .service-row .title-col .description-container .description {
        transform: translateY(100%);
    }

    .card-service .service-row .title-col .description-container .description.has-projects {
        transform: translateY(0);
    }
}

.card-service .service-row .description-col {
    font-size: 1.0625rem;
    opacity: 0.7;
    display: none;
}

@media (min-width: 1200px) {
    .card-service .service-row .description-col {
        display: block;
    }
}

.card-service .related-projects-row {
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
    .card-service .related-projects-row {
        margin-top: 4.75rem;
    }
}

.card-service hr {
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    border: none;
    transition: width 1.4s linear;
}

.card-service hr.in-screen {
    width: 100%;
}

/* hover animation */
@media (hover: hover) and (pointer: fine) {
    .card-service:hover::after {
        width: 100%;
    }

    .card-service:hover .title-col .description-container .description {
        transform: translateY(0);
    }
}


/* Base style for the image container */
.featured-animate-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Apply animation to each image */

.top-0 {
    top: 0
}

.left-0 {
    left: 0
}

.w-full {
    width: 100%;
}

.inset-0 {
    inset: 0;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative
}

.custom-reset *,
.custom-reset ::backdrop,
.custom-reset :after,
.custom-reset :before {
    border-spacing: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scale utilities (without vars) */
.scale-60 {
    transform: scale(0.6);
}

.scale-70 {
    transform: scale(0.7);
}

.scale-80 {
    transform: scale(0.8);
}

.scale-90 {
    transform: scale(0.9);
}

.featured-animate-wrapper .feature-image-2 {
    animation: sequentialImages1 3s infinite
}

.featured-animate-wrapper .feature-image-3 {
    animation: sequentialImages2 3s infinite
}

.featured-animate-wrapper .feature-image-4 {
    animation: sequentialImages3 3s infinite
}

.featured-animate-wrapper .feature-image-5 {
    animation: sequentialImages4 3s infinite
}



@keyframes sequentialImages1 {
    0% {
        opacity: 0
    }

    18% {
        opacity: 0;
        scale: .9
    }

    20% {
        opacity: 100%;
        scale: 1
    }
}

@keyframes sequentialImages2 {
    0% {
        opacity: 0
    }

    20% {
        opacity: 0
    }

    38% {
        opacity: 0;
        scale: .9
    }

    40% {
        opacity: 100%;
        scale: 1
    }
}

@keyframes sequentialImages3 {
    0% {
        opacity: 0
    }

    40% {
        opacity: 0
    }

    58% {
        opacity: 0;
        scale: .9
    }

    60% {
        opacity: 100%;
        scale: 1
    }
}

@keyframes sequentialImages4 {
    0% {
        opacity: 0
    }

    60% {
        opacity: 0
    }

    78% {
        opacity: 0;
        scale: .9
    }

    80% {
        opacity: 100%;
        scale: 1
    }
}


.what-we-do-new-section {
    position: relative;
    background-color: #000000;
    color: #ffffff;
    padding: 100px 150px;
}

.what-we-do-new-section .staggered-card {
    padding: 3rem;
    border-radius: 3rem;
    background-color: #ffffff;
}

.what-we-do-new-section .custom-reset img {
    border-top-right-radius: 12.5rem;
}

.what-we-do-new-section .card-service {
    color: #000;
    padding: 0;
}

.what-we-do-new-section .card-service .service-row {
    color: #000;
}

.what-we-do-new-section .card-service:hover::after {
    display: none;
}

.home-feature-card-right-line {
    /* background-color: #000000; */
    height: 1px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.home-feature-card-right-content-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    display: flex;
}

.home-card-feature-list-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    box-sizing: border-box;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    outline: none;

}

.home-feature-card-right-list-item-icon {
    width: 100%;
    max-width: 1.2rem;
}

.what-we-do-new-section .card-service .service-row .title-col h3 {
    /* margin-bottom: 1rem;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase; */

    /* font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0;
    width: 48%; */

    font-weight: normal;
    font-size: 5rem;
    text-transform: capitalize;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    margin: 0;
}

.content-list {
    /* padding: 0 4rem !important; */
}

.what-we-do-new-section .card-service .service-row .title-col {
    margin-top: 0px;
    padding-right: 3rem;
    padding-left: 10px;
}

.title-flex-end-row {
    display: flex;
    align-items: center;
}

.what-we-do-new-section .staggered-card:nth-child(even) {
    background-color: #ffffff;
}

.what-we-do-new-section .staggered-card:nth-child(odd) {
    background-color: #ffffff;
}

/* .what-we-do-new-section .staggered-card:nth-child(1) {
    background-color: #ffec89;
}

.what-we-do-new-section .staggered-card:nth-child(2) {
    background-color: #23d2a0;
}

.what-we-do-new-section .staggered-card:nth-child(3) {
    background-color: #46a0fa;
}

.what-we-do-new-section .staggered-card:nth-child(4) {
    background-color: #b387ff;
}

.what-we-do-new-section .staggered-card:nth-child(5) {
    background-color: #ffec89;
}

.what-we-do-new-section .staggered-card:nth-child(6) {
    background-color: #23d2a0;
}

.what-we-do-new-section .staggered-card:nth-child(7) {
    background-color: #46a0fa;
}

.what-we-do-new-section .staggered-card:nth-child(8) {
    background-color: #b387ff;
} */


/* TN new website Button Stle */

.btn-div-bottom {
    position: relative;
    padding-top: 1.5rem;
}

:root {
    --easeOutQuart: cubic-bezier(.165, .84, .44, 1)
}

.btn-primary {
    display: inline-flex;
    gap: 0.2rem;
    color: #ffffff;
    cursor: pointer;
    border-radius: 32rem;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary-inner {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
    background-color: transparent;
    transition: transform 0.4s var(--easeOutQuart) 25ms;
}

.btn-primary-content {
    background-color: #000;
    border-radius: 4rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-primary-ic {
    background-color: #000;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: transform 0.25s var(--easeOutQuart);
}

.btn-primary-ef {
    position: absolute;
    left: -3rem;
    transform: scale(0);
}

.btn-primary-ic:not(.btn-primary-ef) {
    transform: scale(1);
}

.ic-16 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-16 svg {
    width: 1rem;
    height: 1rem;
}

/* Hover animation */
.btn-primary:not([btn-type=default]):hover .btn-primary-inner {
    transform: translateX(3rem);
}

.btn-primary:not([btn-type=default]):hover .btn-primary-inner .btn-primary-ef {
    transform: scale(1);
}

.btn-primary:not([btn-type=default]):hover .btn-primary-inner .btn-primary-ic:not(.btn-primary-ef) {
    transform: scale(0);
}

/* Touch fallback (optional) */
.btn-primary:not([btn-type=default]).hover .btn-primary-inner {
    transform: translateX(3rem);
}

.btn-primary:not([btn-type=default]).hover .btn-primary-inner .btn-primary-ef {
    transform: scale(1);
}

.btn-primary:not([btn-type=default]).hover .btn-primary-inner .btn-primary-ic:not(.btn-primary-ef) {
    transform: scale(0);
}

/* White btn secondary */
.btn-secondary {
    display: inline-flex;
    gap: 0.2rem;
    color: #000;
    cursor: pointer;
    border-radius: 32rem;
    overflow: hidden;
    text-decoration: none;
}

.btn-secondary-inner {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
    background-color: transparent;
    transition: transform 0.4s var(--easeOutQuart) 25ms;
}

.btn-secondary-content {
    background-color: #fff;
    border-radius: 4rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-secondary-ic {
    background-color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: transform 0.25s var(--easeOutQuart);
}

.btn-secondary-ef {
    position: absolute;
    left: -3rem;
    transform: scale(0);
}

.btn-secondary-ic:not(.btn-secondary-ef) {
    transform: scale(1);
}


.btn-secondary:not([btn-type=default]):hover .btn-secondary-inner {
    transform: translateX(3rem);
}

.btn-secondary:not([btn-type=default]):hover .btn-secondary-inner .btn-secondary-ef {
    transform: scale(1);
}

.btn-secondary:not([btn-type=default]):hover .btn-secondary-inner .btn-secondary-ic:not(.btn-secondary-ef) {
    transform: scale(0);
}

/* Touch fallback (optional) */
.btn-secondary:not([btn-type=default]).hover .btn-secondary-inner {
    transform: translateX(3rem);
}

.btn-secondary:not([btn-type=default]).hover .btn-secondary-inner .btn-secondary-ef {
    transform: scale(1);
}

.btn-secondary:not([btn-type=default]).hover .btn-secondary-inner .btn-secondary-ic:not(.btn-secondary-ef) {
    transform: scale(0);
}


.common-tn-para {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.common-tn-head {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem
}


/* capabliities section style */
.capablities-sec {
    position: relative;
    padding: 100px 100px;
}

.capabilities-image-div {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.hover-effect:hover {
    transform: scale(1);
    font-weight: 500;
}

.capablities-sec .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 2rem;
}

.bg-video.active {
    opacity: 1;
    z-index: 2;
}

.capabliities-content-div {
    position: relative;
    padding: 0rem 3rem;
}

.capabliities-content-div ul {

    width: 100%;
    list-style: none;
    padding-right: 0;
    padding-left: 0;
}

.capabliities-content-div ul li {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    cursor: pointer;
    font-size: 1.23rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;

}



.capabliities-content-div ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    height: 1px;
    background-color: #ddd;
}

.more-work-container-view {
    display: flex;
    justify-content: left;
    margin-top: 2rem;
    padding-top: 2rem;
}


/* style for contact page 30-06-2025 */




.contact-banner-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
    height: 400px;
}

.contact-icon,
.element_svg {
    height: 100px;
    width: auto;
    vertical-align: text-bottom;
    animation: fadeInLeft 1s ease-out both;
    margin-top: 40px;
}

.contact-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out both;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    animation: fadeInUp 1.2s ease-out both;
}

.contact-heading i {
    font-style: italic;
    color: #000000;
    font-weight: 500;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);

    }

    to {
        opacity: 1;
        transform: translateX(0);

    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* img section contact us img */
.container-fluid {
    width: 100%;

}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.animatedParent {
    overflow: hidden;
}

.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.animated.go {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn {
    /* handled via transform + opacity above */
}

.slower {
    transition-duration: 1.5s !important;
}



.contact_us_links_big_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;

}

.contact_us_links_wrapper {
    width: 23%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    flex-direction: column;



}

.contact_us_links h1 {
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact_us_links h4 {
    font-size: 18px;
    color: #444;
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact_link_btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border: 2px solid #000000;
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.contact_link_btn img {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact_link_btn:hover {
    background-color: #000000;
    color: #fff;
}

.contact_link_btn:hover img {
    transform: translateX(4px);
    filter: brightness(10);
}



/* form section */


.contact-form-section {
    width: 1170px;
    margin: auto;
    padding: 10px 10px;
}

.form-group h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 24px;
    font-family: sans-serif;
}

.form-group {
    margin-bottom: 30px;
}

.form-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;

}

.form-control {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #72c29b;
    font-size: 16px;
    width: 100%;

}

.contact-form-section .form-control:focus {
    outline: none !important;
    border: none !important;
}

textarea.form-control {
    width: 100%;
    margin-top: 10px;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.left-checkboxes,
.right-other {
    flex: 1;
    min-width: 280px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #67b38c;
    cursor: pointer;
}

textarea#otherText {
    margin-top: 10px;
    background-color: #f0f0f0;
}

textarea#otherText:enabled {
    background-color: #ffffff;
}

.center {
    text-align: center;
}

.submit-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #000000;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}




/* careers page  30-06-2025 */

.container-careers {
    width: 1170px;
    padding: 0;
    margin: 0 auto;

}

.home_second_section-careers {
    padding: 90px 20px 40px;
}

.home_second_section-careers .col-md-10 {
    width: 83.3333%;
    margin: 0 auto;
}

.element_svg {
    height: 100px;
    width: auto;
    vertical-align: bottom;
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInLeftcareers 1s ease-out both;
}

.element_heading {
    display: inline-block;
    font-size: 2.5em;
    font-weight: 400;
    color: #000;

}



.text-left {
    text-align: left;
    display: block;
}

.text-right {
    text-align: right;
    display: block;
    animation: fadeInrightcareers 1s ease-out both;
}

@keyframes fadeInLeftcareers {
    from {
        opacity: 0;
        transform: translateX(-100px);

    }

    to {
        opacity: 1;
        transform: translateX(0);

    }
}

@keyframes fadeInrightcareers {
    from {
        opacity: 0;
        transform: translateX(100px);

    }

    to {
        opacity: 1;
        transform: translateX(0);

    }
}

/* Work Page Design Divya 2-7-25 */
.first-section {
    padding-top: 150px;
}

.container-wrapper {
    max-width: 1500px;
    width: 100%;
}

.work-banner-section {
    position: relative;
    padding: 150px 100px 100px 100px;
}

.work-banner-heading h6 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.work-banner-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.work-banner-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-banner-logo-col {
    display: flex;
    justify-content: flex-end;
}

.work-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.work-video-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.work-descriptions-section {
    position: relative;
    padding: 100px 100px;
}

.work-description-head-col h4 {
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.work-descriptions-col h6 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.work-descriptions-col p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.work-services-div h6 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
}

.services-flex-div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
}

.border-rect {
    border: 1px solid #ddd;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.border-round {
    border: 1px solid #ddd;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 50px;
}

.work-full-width-img-sec {
    position: relative;
}

.work-center-image-sec {
    position: relative;
    padding: 100px 100px 0px 100px;
}

.work-center-image-row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}





/* Industries section */
.v2-section-team {
    background-image: url('./../img/industires-sec-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 300vh;
    position: relative;
    z-index: 9;
}


.flex-block-38 {
    z-index: auto;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    margin-top: 100px;
    position: relative;
    padding-left: 100px;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.v2-heading-1-team {
    color: #ffffff;
    text-align: left;
    align-self: stretch;
    width: 570px;
    font-size: 2.5rem !important;

}

.v2-heading-1-team {
    width: 770px;
}

.heading-smll---white--left {
    color: #fff;
    text-align: left;
    align-self: flex-start;
    margin-top: 10px;

    width: 570px;
}

.flex-block-39 {
    margin-top: 40px;
    display: block;
}


.click-through {
    z-index: 1;
    max-width: none;
    height: 100vh;
    margin-top: -100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    pointer-events: none;
}

.w-layout-blockcontainer {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-container {
    margin-left: auto;
    margin-right: auto;
}

.flex-block-40 {
    z-index: 3;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100vh;
    position: relative;
    inset: 0% 0% 0% 264px;
    left: 0;
}

.image-32 {
    height: 85vh;
}

.div-block-37 {
    z-index: 1;
    height: 100vh;
    margin-top: -100vh;
    position: relative;
}

.wrap {
    width: 100%;
    height: 100vh;
    position: relative;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.wb-video-styles-controller {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}


.horizontal-section-through {
    pointer-events: none;
    height: 300vh;
    margin-top: -100vh;
    display: block;
}

.sticky {
    z-index: 3;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
}


.list1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-self: center;
    width: 100%;
    display: flex;
}

.horizontal-item {
    flex: none;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.div-block---card {
    border-radius: 25px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 285px;
    height: 380px;
    padding: 30px;
    display: flex;
    color: #000;
    background-color: #ffffff;
}

/* .div-block---card-1,
.div-block---card-4,
.div-block---card-5,
.div-block---card-8,
.div-block---card-9,
.div-block---card-12 {
    background-color: #DEFF9A;
} */
.div-block---card-1 {
    background-color: #45B5A9;
}

/* green */
.div-block---card-2 {
    background-color: #D94F70;
}

/* green-2 */
.div-block---card-3 {
    background-color: #DC4123;
    color: #ffffff;
}

/* green-3 */
.div-block---card-4 {
    background-color: #AD5D98;
}

/* yellow */
.div-block---card-5 {
    background-color: #B57170;
}

/* yellow-3 */
.div-block---card-6 {
    background-color: #B4CEE5;
}

/* blue */
.div-block---card-7 {
    background-color: #88B14B;
}

/* bluesky */
.div-block---card-8 {
    background-color: #5F4A8B;
}

/* purple */
.div-block---card-9 {
    background-color: #FF7062;
}

/* purple-2 */
.div-block---card-10 {
    background-color: #0F4C82;
    color: #ffffff;
}

/* purple-3 */
.div-block---card-11 {
    background-color: #F5DF4D;
}

/* purple-4 */
.div-block---card-12 {
    background-color: #6768AB;
}

/* pink */
.div-icon-1 {
    background-image: url('./../img/industry-card-icon-img.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    align-self: flex-start;
    width: 45px;
    height: 45px;
}

.flex-block-41 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.heading-smll---white---cards {
    text-align: left;
    justify-content: flex-start;
    align-self: flex-start;
    font-size: 2rem;
    font-weight: 500;
    display: block;
}

.paragraph-card {
    text-align: left;
    align-self: stretch;
    font-size: 1rem;
}

.container.sticky-container {
    padding-left: 50%;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;

}

.v2-container-normal {
    z-index: 2;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
}


/* About Us Page Style Divya 14-7-25 */
.about-banner-section {
    position: relative;
    padding: 150px 100px 30px 100px;
}

.about-contents-sec {
    position: relative;
    padding: 100px 100px;
}

.about-contents-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-fourth-sec-heading {
    padding-left: 100px;
    padding-bottom: 50px;

}

.about-journey-sec {
    position: relative;
    padding: 0px 0px;
}

.about-journey-row {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

.journey-img-item img {
    position: relative;
    border-radius: 1.5rem;
}

.journey-img-item:nth-child(odd) img {
    height: 28.125rem;
    min-width: 20rem;
}

.journey-img-item:nth-child(even) img {
    height: 21.125rem;
    min-width: 20rem;
}

.about-journey-container {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.about-contents-div {
    position: relative;
    padding: 0rem;
    margin-right: 5rem;
}

.about-contents-div.accordion-contents-new-div {
    margin-left: 5rem;
}

.about-contents-row:nth-child(odd) {
    margin-top: 0px;
}

.about-contents-row:nth-child(even) {
    margin-top: 100px;
}

.about-clients-sec {
    position: relative;
    background-color: #f2f2f2;
    padding: 100px 100px;
}

.about-clients-sub-head {
    position: absolute;
}

.about-clients-sub-head h6 {
    font-size: 2rem;
    margin-bottom: 1rem;
}


.clients-log-flip-container {
    position: relative;
    margin-top: 0rem;
}

.clients-log-flip-div.grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1400px;
    width: 100%;
}

.clients-log-flip-div .card,
.clients-log-flip-div .flip-card,
.clients-log-flip-div .empty {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.clients-log-flip-div .card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 0;
    border: none;
    background-color: #f2f2f2;
}

.clients-log-flip-div a {
    text-decoration: none;
}

.clients-log-flip-div .flip-card,
.clients-log-flip-div .card {
    transition: 0.2s all ease;
}

.clients-log-flip-div .card:hover,
.clients-log-flip-div .flip-card:hover {
    background-color: #000000;
    color: #ffffff;
}

.clients-log-flip-div .card h6,
.clients-log-flip-div .flip-card h6 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.clients-log-flip-div .card p,
.clients-log-flip-div .flip-card p {
    font-size: 1rem;
}

.clients-log-flip-div .green {
    background: #67b38c;
    color: #000;
}

.clients-log-flip-div .black {
    background: #000;
    color: #67b38c;
}

.clients-log-flip-div .white {
    background: #f2f2f2;
    color: #000;
}

.clients-log-flip-div .card img {
    max-width: 80%;
    height: auto;
}

.clients-log-flip-div .empty {
    background: transparent;
}

/* Flip card */
.clients-log-flip-div .flip-card {
    perspective: 1000px;
}

.clients-log-flip-div .flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.clients-log-flip-div .flip-front,
.clients-log-flip-div .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.clients-log-flip-div .flip-front {
    background: #000;
    color: #fff;
}

.clients-log-flip-div .flip-back {
    background: #f2f2f2;
    color: #000;
    transform: rotateY(180deg);
}

/* Odd/even flip direction */
.clients-log-flip-div .flip-card:nth-child(odd) .flip-inner {
    animation: flip-left 8s infinite ease-in-out;
}

.clients-log-flip-div .flip-card:nth-child(even) .flip-inner {
    animation: flip-right 8s infinite ease-in-out;
}

@keyframes flip-left {
    0% {
        transform: rotateY(0deg);
    }

    20% {
        transform: rotateY(-180deg);
    }

    50% {
        transform: rotateY(-180deg);
    }

    70% {
        transform: rotateY(-360deg);
    }

    100% {
        transform: rotateY(-360deg);
    }
}

@keyframes flip-right {
    0% {
        transform: rotateY(0deg);
    }

    20% {
        transform: rotateY(180deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    70% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.about-contents-sec.black-bg.white {
    background-color: #000000;
    color: #ffffff;

}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    padding-bottom: 24px;
    margin-bottom: 24px;

}

.accordion-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    transition: background-color 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .icon-wrapper {
    background-color: #eee;
}

.icon-svg {
    width: 16px;
    height: 16px;
}

.icon-svg line {
    stroke: black;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .icon-svg .vertical {
    transform: translateY(-6px);
    opacity: 0;
}

.accordion-title {
    font-size: 1.45rem;
    font-weight: bold;
    color: #000;
}

.accordion-content {
    margin-left: 56px;
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-btn[aria-expanded="true"]+.accordion-content {
    max-height: 500px;
}

.what-we-do-page-sec {
    position: relative;
    padding: 0px 100px 100px 100px;
}


.brand-descriptions-section {
    position: relative;
    padding: 50px 100px 0px 100px;
}

.case-studies-section.work-page-section {
    position: relative;
    padding: 0px 100px 100px 100px;
}











/* What We Do Page New Design Divya - 17-7-25 */
.what-we-do-banner-sec {
    position: relative;
    height: 100vh;
    overflow: hidden;
}



.what-we-do-second-sec {
    position: relative;
    padding: 100px 100px;
}


.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 2rem;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    /* border: 1px solid #000; */
    border: .03125rem solid #b8b8b8;
    border-radius: 9999px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #000;
    color: #fff;
}

.tag:active {
    background-color: #000;
    color: #fff;
}

.what-we-do-video-div video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-second-row {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.what-we-do-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
}

.stats-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 35px;
    flex-wrap: wrap;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}




.what-we-do-content h4 {
    font-size: 2rem;
}

.case-card {
    position: relative;
}



.case-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 16;
    overflow: hidden;
    border-radius: 20px;
}

.case-image,
.case-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.case-image {
    opacity: 1;
    z-index: 1;
}

.case-video {
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.case-card:hover .case-image {
    opacity: 0;
}

.case-card:hover .case-video {
    opacity: 1;
}

.case-description {
    font-size: 2.5rem;
    padding: 1rem 0px;

}

.what-we-do-page-list-sec {
    position: relative;
    padding: 0px 100px 100px 100px;
}

.what-we-do-page-list-sec a {
    text-decoration: none;
    color: #000000;
}

.what-we-do-page-list-col {
    display: flex;
    flex-direction: column;
    row-gap: 160px;
}

.padding-top-space {
    padding-top: 400px;
}

.what-we-do-page-list-row {
    display: flex;
    justify-content: space-between;
}

.what-we-do-page-list-row .what-we-do-page-list-col.col-md-6 {
    flex: 0 0 auto;
    width: 45%;
}

/* What We Do Page New Design Divya - 17-7-25 */






/* About Us Page Meet the founders sections style Divya 24-7-25 */
.founders-container-sec {
    position: relative;
    margin-top: 5rem;
}

.founders {
    padding: 10vh 10vw
}

.founders,
.founders-content {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content
}

.founders-content {
    display: flex;
    flex-direction: column;
    gap: 5vh
}

.founders-container {
    width: 100%;
    display: flex;
    justify-content: space-between
}

.founders-container-item {
    width: 39.5vw;
    height: 39.5vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative
}

.founders-container-item-content {
    width: 39.5vw;
    height: 39.5vw;
    pointer-events: all;
    perspective: 5000px;
    cursor: pointer
}

.founders-container-item-content.flipped .founders-container-item-content-inside {
    transform: rotateX(180deg)
}

.founders-container-item-content-inside {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s ease;
    transform-style: preserve-3d
}

.founders-container-item-content-inside-back,
.founders-container-item-content-inside-front {
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5vw;
    background-color: #0f1011;
    box-shadow: inset 0 0 0 calc(1px + 0px) hsla(0, 0%, 100%, .05);
    transition: .5s ease;
    background-image: radial-gradient(140% 107.13% at 50% 10%, transparent 40%, hsla(0, 0%, 100%, .05) 75%, hsla(0, 0%, 100%, .075) 100%);
    overflow: hidden
}

.founders-container-item-content-inside-front-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain
}

.founders-container-item-content-inside-front:hover {
    filter: brightness(1.1)
}

.founders-container-item-content-inside-front-content {
    position: relative;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: .5vh
}

.founders-container-item-content-inside-front-content-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 100%;
    border: 1px solid hsla(0, 0%, 100%, .05);
    background-color: hsla(0, 0%, 100%, .1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease
}

.founders-container-item-content-inside-front-content-box-icon {
    width: 1.25vw;
    height: 1.25vw;
    color: #fff;
    transition: .5s ease
}

.founders-container-item-content-inside-back {
    justify-content: flex-start
}

.founders-container-item-content-inside-back-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.founders-container-item-content-inside-back {
    transform: rotateX(180deg)
}

.founders-container-item-content-inside-back-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 39.5vw;
    height: 39.5vw;
    background-image: linear-gradient(90deg, hsla(0, 0%, 100%, .05) 1px, transparent 0), linear-gradient(180deg, hsla(0, 0%, 100%, .05) 1px, transparent 0);
    background-size: 4vw 4vw;
    background-position: 50%;
    z-index: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #010101 20%, #010101 80%, transparent), linear-gradient(180deg, transparent, #010101 20%, #010101 80%, transparent);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(90deg, transparent, #010101 20%, #010101 80%, transparent), linear-gradient(180deg, transparent, #010101 20%, #010101 80%, transparent);

    mask-composite: intersect
}

.founders-container-item-content-inside-front:hover .founders-container-item-content-inside-front-content-box {
    background-color: #fff
}

.founders-container-item-content-inside-front:hover .founders-container-item-content-inside-front-content-box-icon {
    transform: rotate(90deg);
    color: #000
}

.white {
    color: #fff;
}

.founders-container-item-content-inside {
    transition: transform 1s ease;
    transform-style: preserve-3d;
}

.founders-container-item-content.flipped .founders-container-item-content-inside {
    transform: rotateX(180deg);
}

.meet-team-section {
    position: relative;
    padding: 100px 100px 40px 100px;
    background-color: #ffffff;
    color: #000000;
}

.meet-team-card {
    position: relative;
    margin-bottom: 3rem;
}

.meet-team-card h6 {
    font-size: 1.75rem;
    font-weight: 500;
}

.meet-team-card .common-tn-para {
    color: #323232;
}

.about-fifth-section .meet-team-card .common-tn-para {
    color: #ACACAC;
}

.meet-team-card img {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

/* About Us Page Meet the founders sections style End Divya 24-7-25 */




.testimonials-swiper-new-sec .testimonials-swiper-new-head p {
    padding-top: 20px;
}


/*Careers Inner Page Styles - 10-09-2025*/
.job-description-sec {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.job-title-div {
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    background: #000;
    color: #fff;
    padding: 100px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.job-desc-div {
    width: 50%;
    background: #fff;
    overflow-y: auto;
    padding: 100px;
}

.career-btn-div {
    position: relative;
}

.career-btn-div .btn-primary-ic {
    background-color: #ffffff;
}

.career-btn-div .btn-primary-content {
    background-color: #ffffff;
    color: #000;
}

.desc-wrapper ul li {
    margin: 12px 0;
    padding-left: 2rem;
    position: relative;
    list-style: none;
}

.desc-wrapper ul li::after {
    content: "—";
    left: 0;
    position: absolute;
    top: 0;
}

.careerModal {
    background: #000;
}

.careerModal .btn-close {
    background: none;
    right: 1rem;
    top: 1rem;
    position: absolute;
    opacity: 1;
    width: 20px;
    color: #fff;
}

.careerModal .btn-close:hover {
    color: #fff;
    opacity: 1;
}

.careerModal .modal-header {
    border-bottom: none;
}

.careerModal .form-control {
    border-radius: 4px;
    height: 44px;
    background-color: #eeeeee;
    border: none;
}

.careerModal textarea.form-control {
    border-radius: 4px;
    height: auto;
    background-color: #eeeeee;
    border: none;
}

.careerModal .form-control.file {
    background-color: #eeeeee;
    border: none;
    border-radius: 4px;
    height: auto;
}

.careerModal .form-group {
    margin-bottom: 15px;
}

.career-form-btn {
    box-shadow: rgba(0, 0, 0, 0.04) 1px 1px 3px;
    transition: border-radius 200ms;
    height: unset;
    padding: 10px 16px;
    margin-top: 32px;
    min-height: 56px;
    border-radius: 28px;
    line-height: 20px;
    font-size: 20px;
    background-color: rgb(0, 0, 0);
    border: 0px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-family: inherit;
    font-style: normal;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    outline: none;
}

.careerModal .common-tn-para {
    font-size: 18px;
    margin-bottom: 10px;
}

.careerModal .form-control:focus {
    border-color: #000;
    box-shadow: none;
    background-color: #eeeeee;
}

.careerModal .form-control.file {
    height: auto;
}


/* Career Modal Bg video with animation Divya 22-1-26 */

.career-modal-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.career-modal-video-bg .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    object-fit: cover;
    width: auto;

}


.modal.fade.careerModal.show {
    padding-right: 0px !important;
}

.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    /* adjust width as needed */
}

.custom-file-upload input[type="file"] {
    display: none;
    /* hide the default file input */
}

.custom-file-upload label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eeeeee;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    height: 44px;
}

.custom-file-upload label:hover {
    background-color: #eeeeee;
}

.file-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 1rem;
}

.file-icon img {
    width: 18px;
    height: 18px;
}

@media only screen and (max-width: 319.5px) {
    .job-description-sec {
        width: 100%;
        min-height: auto;
        flex-direction: column;
    }


    .meet-team-section .meet-div h1 {
        margin-bottom: 0px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .meet-team-section .meet-div h2 {
        margin-bottom: 0px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }


    .tag-list li {
        font-size: 13px !important;
    }


    .job-title-div {
        position: relative;
        width: 100%;
        height: auto;
        padding: 100px 20px 35px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .job-desc-div {
        width: 100%;
        padding: 20px;
    }

    .career-btn-div {
        margin-top: 10px;
    }

    .careerModal .btn-close {
        z-index: 9;
        color: #000;
    }

    .careerModal .btn-close:hover {
        color: #000;
        opacity: 1;
    }



    .case-studies-row {
        gap: 0.2rem !important;
    }

    .case-studies-grid {
        gap: 0.3rem !important;
    }

    .brand-descriptions-section-web-design {

        padding: 0px 15px 0px 15px !important;
    }

}

@media only screen and (min-width: 320px) and (max-width: 767.5px) {

    .brand-descriptions-section-web-design {

        padding: 0px 15px 0px 15px !important;
    }

    .case-studies-row {
        gap: 0.2rem !important;
    }


    .case-studies-grid {
        gap: 0.3rem !important;
    }




    .job-description-sec {
        width: 100%;
        min-height: auto;
        flex-direction: column;
    }

    .tag-list li {
        font-size: 13px !important;
    }

    .job-title-div {
        position: relative;
        width: 100%;
        height: auto;
        padding: 100px 20px 35px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .job-desc-div {
        width: 100%;
        padding: 20px;
    }

    .career-btn-div {
        margin-top: 10px;
    }

    .careerModal .btn-close {
        z-index: 9;
        color: #000;
    }

    .careerModal .btn-close:hover {
        color: #000;
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023.5px) {

    .job-description-sec {
        width: 100%;
        min-height: auto;
        flex-direction: column;
    }

    .stats-wrapper {
        gap: 15px !important;
    }

    .job-title-div {
        position: relative;
        width: 100%;
        height: auto;
        padding: 100px 45px 70px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .job-desc-div {
        width: 100%;
        padding: 45px;
    }

    .career-btn-div {
        margin-top: 10px;
    }

}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {

    .job-desc-div {
        padding: 90px 50px 30px;
    }

    .job-title-div {
        padding: 100px 70px 70px;
    }

}

@media only screen and (min-width: 1824px) and (max-width: 1920px) {

    .career-btn-div .btn-primary {
        padding: 0px;
    }

}

@media only screen and (min-width: 1921px) and (max-width: 2560px) {



    .banner-branding-img {
        width: 100% !important;
    }


    .career-form .g-recaptcha {
        transform: scale(1.25) !important;
        -webkit-transform: scale(1.5) !important;
        transform-origin: left center !important;
        -ms-transform: scale(1.25) !important;
        height: 98px;
        padding-top: 15px !important;
    }



    .job-desc-div {
        padding: 150px 100px;
    }

    .career-btn-div .btn-primary {
        padding: 0px;
    }

    .careerModal .career-form-modal {
        max-width: 800px;
        width: 800px;
    }

    .modal-title {
        font-size: 3rem;
    }

    .careerModal .common-tn-para {
        font-size: 1.25rem;
    }

    .careerModal .form-control,
    .custom-file-upload label {
        height: 45px;
    }

    .career-form-btn {
        padding: 30px 25px;
        border-radius: 50px;
        font-size: 1.7rem;
    }

    .careerModal .btn-close {
        width: 50px;
        right: 3rem;
        top: 3rem;
    }

    .careerModal .modal-header,
    .careerModal .modal-body {
        padding: 2rem;
    }

    .careerModal .modal-body {
        padding: 0rem 2rem 2rem 2rem !important;
    }
}

@media only screen and (min-width: 2561px) and (max-width: 3840px) {

    .banner-branding-img {
        width: 100% !important;
    }

    .job-desc-div {
        padding: 20rem 10rem 10rem;
    }

    .career-btn-div .btn-primary {
        padding: 35px 0px;
    }

    .careerModal .career-form-modal {
        max-width: 1200px;
        width: 1200px;
    }

    .modal-title {
        font-size: 4rem;
    }

    .careerModal .common-tn-para {
        font-size: 3rem;
    }

    .careerModal .form-control,
    .custom-file-upload label {
        height: 90px;
        font-size: 2rem;
        border: none;
    }

    .career-form-btn {
        padding: 70px 25px;
        border-radius: 85px;
        font-size: 3rem;
    }

    .careerModal .btn-close {
        width: 50px;
    }

    .careerModal .modal-header,
    .careerModal .modal-body {
        padding: 3rem;
    }

    .careerModal .modal-body {
        padding: 0rem 4rem 4rem 4rem !important;
    }

    .careerModal textarea.form-control {
        height: 300px;
        font-size: 2.5rem;
        border: 3px solid #dee2e6;
    }

    .file-icon img {
        width: 35px;
        height: 35px;
    }

}

@media only screen and (min-width: 3841px) and (max-width: 6144px) {



    .banner-branding-img {
        width: 100% !important;
    }


    .ourbrand-services-content h3 {
        font-size: 6.5rem !important;
        padding: 3rem 0rem !important;
    }


    .job-desc-div {
        padding: 25rem 15rem 15rem;
    }

    .career-btn-div .btn-primary {
        padding: 35px 0px;
    }

    .careerModal .career-form-modal {
        max-width: 1600px;
        width: 1600px;
    }

    .modal-title {
        font-size: 6rem;
    }

    .careerModal .common-tn-para {
        font-size: 3rem;
    }

    .careerModal .form-control,
    .custom-file-upload label {
        height: 80px;
        font-size: 3rem;
        border: none;
    }

    .career-form-btn {
        padding: 90px 25px;
        border-radius: 85px;
        font-size: 4rem;
    }

    .careerModal .btn-close {
        width: 100px;
        right: 3rem;
        top: 3rem;
    }

    .careerModal .modal-header,
    .careerModal .modal-body {
        padding: 4rem;
    }

    .careerModal .modal-body {
        padding: 0rem 4rem 4rem 4rem !important;
    }

    .careerModal textarea.form-control {
        height: 400px;
        font-size: 3rem;
        border: 5px solid #dee2e6;
    }

    .job-title-div {
        padding: 10rem 15rem 15rem;
    }

}

@media only screen and (min-width: 6145px) and (max-width: 7680px) {

    .ourbrand-services-content h3{
        font-size: 8rem;
        padding: 4rem 0rem !important;
        margin-bottom: 0rem !important;
    }
    .banner-branding-img {
        width: 100% !important;
    }

    .job-desc-div {
        padding: 35rem 25rem 25rem;
    }

    .career-btn-div .btn-primary {
        padding: 35px 0px;
    }

    .careerModal .career-form-modal {
        max-width: 2500px;
        width: 2500px;
    }

    .modal-title {
        font-size: 8rem;
    }

    .careerModal .common-tn-para {
        font-size: 5rem;
    }

    .careerModal .form-control,
    .custom-file-upload label {
        height: 80px;
        font-size: 5rem;
        border: none;
    }

    .career-form-btn {
        padding: 10rem 25px;
        border-radius: 10rem;
        font-size: 6rem;
    }

    .careerModal .btn-close {
        width: 150px;
        right: 3rem;
        top: 3rem;
    }

    .careerModal .modal-header,
    .careerModal .modal-body {
        padding: 8rem;
    }

    .careerModal .modal-body {
        padding: 0rem 8rem 8rem 8rem !important;
    }

    .careerModal textarea.form-control {
        height: 600px;
        font-size: 5rem;
        border: 5px solid #dee2e6;
    }

    .job-title-div {
        padding: 10rem 25rem 25rem;
    }

}




/*Careers inner page Style End*/


/* responsive issues for about, what we do, work pages - DIVYA 11-9-25  */

.what-we-do-banner-video {
    /* position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    will-change: transform;
    left: 0 !important;
    transform: none !important; */
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsiveness Media Query */

/* Mobile Devices */

@media only screen and (max-width: 319.5px) {
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;

    }

    .banner-branding-img {
        width: 95% !important;
        padding-top: 50px !important;
    }

    .founders-container-sec {

        margin-top: 1rem;
    }

    .meet-team-card img {

        margin-bottom: 1rem;
    }

}

@media only screen and (min-width: 320px) and (max-width: 767.5px) {
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0;

    }

    .banner-branding-img {
        width: 95% !important;
    }

    .founders-container-sec {

        margin-top: 1rem;
    }

    .meet-team-card img {

        margin-bottom: 1rem;
    }

}

/* Tab Devices */
@media only screen and (min-width: 768px) and (max-width: 1023.5px) {

    .faq-paragraph {
        padding-top: 0px !important;
    }


    .careers-third-sec {
        padding: 50px 0px !important;
    }

    .case-description {
        font-size: 1.5rem;
    }

    .what-we-do-content h4 {
        font-size: 1.75rem !important;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;

    }

    .what-we-do-page-list-sec .common-tn-para {

        padding-top: 0 !important;
    }

    .what-we-do-banner-sec {
        height: 700px;
    }

    .work-banner-row {
        align-items: flex-start;
    }

    .about-clients-sub-head {
        position: relative;
    }

    .about-clients-sub-head .common-tn-para,
    .meet-team-card .common-tn-para {

        padding-top: 0;
    }

    .founders-container-sec {
        margin-top: 2rem;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    .case-description {
        font-size: 1.5rem;
    }

    .what-we-do-content h4 {
        font-size: 1.75rem !important;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;

    }

}


/*  Desktop Devices */
@media only screen and (min-width: 1281px) and (max-width:1440px) {
    .case-description {
        font-size: 2rem;
    }


    .what-we-do-inner-sec {
        padding: 150px 0px 100px !important;
    }












}

/* Large */
@media only screen and (min-width: 1600px) and (max-width: 1823px) {
    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-banner-section {
        padding: 150px 20px 30px 20px;
    }
}

@media only screen and (min-width: 1824px) and (max-width: 1920px) {
    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-banner-section {
        padding: 150px 100px 30px 0px;
    }

    .case-studies-section.work-page-section .case-study-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .case-studies-section.work-page-section .case-study-image-wrapper {
        margin-bottom: 1rem;
    }

    .case-studies-section.work-page-section .tag-list {
        font-size: 1.25rem;
    }

    .container-fluid.work-banner-container.container-wrapper {
        max-width: 90%;
        padding: 0 !important;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2560px) {
    .branding-design-page .case-study-img {
        height: 50vh !important;

    }
    .ourbrand-services-content h3{
        font-size: 4.5rem;
        margin-bottom: 2rem !important
    }
    .tags-wrapper {
        max-width: 85%;
    }

    .what-we-do-second-sec .what-we-do-content h4 {
        font-size: 4rem !important;
    }

    .tag {
        font-size: 2rem !important;
        padding: 1rem 2rem;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    .case-description {
        font-size: 3rem !important;
    }

    .case-description {
        padding: 2rem 0px;
    }

    .stat-label {
        font-size: 1.5rem;
    }

    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-banner-section {
        padding: 150px 100px 30px 0px;
    }

    .case-studies-section.work-page-section .case-study-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .case-studies-section.work-page-section .case-study-image-wrapper {
        margin-bottom: 2rem;
    }

    .case-studies-section.work-page-section .tag-list {
        font-size: 1.75rem;
    }

    .container-fluid.work-banner-container.container-wrapper {
        max-width: 90%;
        padding: 0 !important;
    }

    .case-studies-section.work-page-section {
        max-width: 90%;
        margin-top: 2rem;
    }
}

@media only screen and (min-width: 2561px) and (max-width: 3840px) {


    .tags-wrapper {
        max-width: 100%;
    }

    .what-we-do-second-sec .what-we-do-content h4 {
        font-size: 7rem !important;
    }

    .tag {
        font-size: 3rem !important;
        padding: 1rem 4rem;
    }

    .stat-number {
        font-size: 4rem !important;
    }


    .case-description {
        padding: 4rem 0px;
        font-size: 5rem !important;
    }

    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-contents-sec {
        padding: 12rem 12rem !important;
    }

    .about-contents-div {
        padding: 0 10rem 0 0;
    }

    .about-contents-div .common-tn-head {
        margin-bottom: 6rem;
    }

    .work-banner-heading h6 {
        font-size: 3.5rem !important;
    }

    .about-clients-sub-head h6 {
        font-size: 4rem;
        margin-bottom: 4rem;
    }

    .about-clients-sub-head {
        position: relative;
        padding-top: 3rem;
    }

    .meet-team-card img {
        margin-bottom: 5rem;
    }

    .meet-team-card {
        margin-bottom: 5rem;
    }

    .accordion-btn {
        gap: 2rem;
    }

    .container-fluid.container-wrapper.about-journey-container {
        max-width: 100%;
    }

    .journey-img-item {

        height: 100%;
    }

    .journey-img-item:nth-child(odd) img {
        height: 40vh;
        min-width: 100%;
    }

    .journey-img-item:nth-child(even) img {
        height: 30vh;
        min-width: 100%;
    }


    .case-studies-section.work-page-section .case-study-image-wrapper {
        height: auto !important;
        margin-bottom: 3rem;
    }

    .case-studies-section.work-page-section .case-study-tags-container {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .case-studies-section.work-page-section .work-banner-heading h6 {
        font-size: 3.5rem !important;
        margin-bottom: 3rem !important;
    }

    .case-studies-section.work-page-section .work-banner-heading h1 {
        font-size: 4.5rem;
        margin-bottom: 3rem;
    }

    .case-studies-section.work-page-section .tag-list {
        font-size: 2rem;
    }

    .container-fluid.work-banner-container.container-wrapper {
        max-width: 95%;
        padding: 0 !important;
    }

    .case-studies-section.work-page-section {
        max-width: 95%;
        margin-top: 2rem;
    }

}

/* 6k resolution */
@media only screen and (min-width: 3841px) and (max-width: 6144px) {


    .tags-wrapper {
        max-width: 80%;
    }

    .what-we-do-second-sec .what-we-do-content h4 {
        font-size: 10rem !important;
    }

    .tag {
        font-size: 4rem !important;
        padding: 1rem 6rem;
    }

    .stat-number {
        font-size: 7rem !important;
    }


    .case-description {
        font-size: 9rem !important;
        padding: 5rem 0px;
    }



    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-contents-sec {
        padding: 16rem 16rem !important;
    }

    .about-contents-div {
        padding: 0 10rem;
    }

    .about-clients-sec {

        padding: 16rem 16rem !important;
    }

    .about-contents-div .common-tn-head {
        margin-bottom: 6rem;
    }

    .work-banner-heading h6 {
        font-size: 3.5rem !important;
    }

    .about-clients-sub-head h6 {
        font-size: 4rem;
        margin-bottom: 4rem;
    }

    .about-clients-sub-head {
        position: relative;
        padding-top: 3rem;
    }

    .meet-team-card img {
        margin-bottom: 5rem;
    }

    .meet-team-card {
        margin-bottom: 5rem;
    }

    .accordion-btn {
        gap: 2rem;
    }

    .container-fluid.container-wrapper.about-journey-container {
        max-width: 100%;
    }

    .journey-img-item {

        height: 100%;
    }

    .about-journey-row {
        gap: 5rem !important;
    }

    .about-fourth-sec-heading {
        padding-left: 290px;
        padding-bottom: 200px;
    }



    .journey-img-item:nth-child(odd) img {
        height: 40vh;
        min-width: 100%;
    }

    .journey-img-item:nth-child(even) img {
        height: 30vh;
        min-width: 100%;
    }


    .case-studies-section.work-page-section .case-study-image-wrapper {
        height: auto !important;
        margin-bottom: 5rem;
    }

    .case-studies-section.work-page-section .case-study-tags-container {
        margin-top: 2rem;
        margin-bottom: 5rem;
    }

    .case-studies-section.work-page-section .work-banner-heading h6 {
        font-size: 4.5rem !important;
        margin-bottom: 3rem !important;
    }

    .case-studies-section.work-page-section .work-banner-heading h1 {
        font-size: 6.5rem;
        margin-bottom: 5rem;
    }

    .case-studies-section.work-page-section .tag-list {
        font-size: 3rem;
    }

    .container-fluid.work-banner-container.container-wrapper {
        max-width: 95%;
        padding: 0 !important;
    }

    .case-studies-section.work-page-section {
        max-width: 95%;
        margin-top: 2rem;
    }
}

/* 8k resolution */
@media only screen and (min-width: 6145px) and (max-width: 7681px) {
    .what-we-do-second-sec .what-we-do-content h4 {
        font-size: 12rem !important;
    }

    .tags-wrapper {
        max-width: 80%;
    }


    .tag {
        font-size: 5rem !important;
        padding: 2rem 10rem;
    }

    .stat-number {
        font-size: 10rem !important;
    }


    .case-description {
        font-size: 11rem !important;
        padding: 7rem 0px;
    }

    .container-wrapper.founders-container-sec {
        max-width: 100%;
    }

    .about-contents-sec {
        padding: 20rem 20rem !important;
    }

    .about-contents-div {
        padding: 0 10rem;
    }

    .about-contents-div .common-tn-head {
        margin-bottom: 6rem;
    }

    .work-banner-heading h6 {
        font-size: 3.5rem !important;
    }

    .about-clients-sub-head h6 {
        font-size: 4rem;
        margin-bottom: 4rem;
    }

    .about-clients-sub-head {
        position: relative;
        padding-top: 3rem;
    }

    .meet-team-card img {
        margin-bottom: 5rem;
    }

    .meet-team-card {
        margin-bottom: 5rem;
    }

    .accordion-btn {
        gap: 5rem;
    }

    .container-fluid.container-wrapper.about-journey-container {
        max-width: 100%;
    }

    .journey-img-item {

        height: 100%;
    }

    .about-journey-row {
        gap: 8rem !important;
    }

    .about-fourth-sec-heading {
        padding-left: 390px;
        padding-bottom: 300px;
    }

    .journey-img-item:nth-child(odd) img {
        height: 40vh;
        min-width: 100%;
    }

    .journey-img-item:nth-child(even) img {
        height: 30vh;
        min-width: 100%;
    }

    .case-studies-section.work-page-section .case-study-image-wrapper {
        height: auto !important;
        margin-bottom: 7rem;
    }

    .case-studies-section.work-page-section .case-study-tags-container {
        margin-top: 2rem;
        margin-bottom: 7rem;
    }

    .case-studies-section.work-page-section .work-banner-heading h6 {
        font-size: 6.5rem !important;
        margin-bottom: 4rem !important;
    }

    .case-studies-section.work-page-section .work-banner-heading h1 {
        font-size: 10.5rem;
        margin-bottom: 7rem;
    }

    .case-studies-section.work-page-section .tag-list {
        font-size: 5rem;
    }

    .container-fluid.work-banner-container.container-wrapper {
        max-width: 95%;
        padding: 0 !important;
    }

    .case-studies-section.work-page-section {
        max-width: 95%;
        margin-top: 3rem;
    }
}


/* responsive issues for about, what we do, work pages - DIVYA 11-9-25  */

/* What We Do Inner page style divya 11-9-25 */
.what-we-do-inner-sec {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #ffffff;
    padding: 150px 0px 100px
}

.what-we-do-inner-sec .btn-primary {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.what-we-do-inner-sec .banner-img-div img {
    width: 100%;
    height: 100%;
}

.what-we-do-inner-container {
    position: relative;
    padding: 0px 5rem !important;
    max-width: 95%;
}

.what-we-do-inner-sec .banner-content {
    width: 95%;
}

.what-we-do-inner-container .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item-wrapper {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: wrap;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.marquee-row {
    display: flex;
    gap: 5rem;
    width: max-content;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee-two {
    animation-duration: 60s;
    animation-direction: reverse;
}

.marquee-three {
    animation-duration: 80s;
}

.service-clients-logo img {
    transition: filter 0.3s ease;
}

.service-clients-logo {
    z-index: 0;
    text-align: center;
    flex: none;
    width: 130px;
    max-width: 130px;
    height: 50px;
}

.slider-logo {
    object-fit: contain;
    width: 130px;
    height: 50px;
}


.left-shadow,
.right-shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.left-shadow {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.right-shadow {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* What We Do Inner page style divya 11-9-25 */



/* What We do inner page (Design process section Divya) - 15-9-25 */
.design-process-sec {
    position: relative;
    padding: 100px 100px;
    background-color: #edf0f2;
}

.design-process-container {
    position: relative;
    padding-top: 3rem;
}

.process-single-card {
    background-color: #fff;
    border: 1px solid #edf0f2;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-single-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex
}

.process-step-wrap {
    color: #0f1112;
    text-transform: uppercase;
    background-color: #fffdc9;
    border-radius: 50px;
    margin-bottom: 24px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    display: inline-block;
    width: max-content;
}

.process-card-title {
    color: #0f1112;
    margin-bottom: 16px;
    font-size: 24px;
}

.process-list-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 28px;
    display: flex;
}

.process-single-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.process-step-wrap.step-2 {
    background-color: #ffdfd5;
}

.process-step-wrap.step-3 {
    background-color: #dbffec;
}

.process-step-wrap.stem-4 {
    background-color: #ffdce6;
}



.case-study-section {
    position: relative;
    background-color: #000000;
}

.case-study-section .case-study-container {
    width: 100%;
    max-width: 89%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: block;
}

.case-study-section .case-content-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    position: relative;
}

.case-study-section .slider-line {
    width: 2px;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
}

.case-study-section .case-studies-line {
    background-color: #606567;
    width: 3px;
    height: 115%;
    position: absolute;
    top: -100px;
    left: 0%;
    right: auto;
}

.case-study-section .case-studies-single-line {
    z-index: 0;
    color: #fff;
    background-color: #fff84b;
    justify-content: center;
    align-items: center;
    width: 3px;
    height: 190px;
    font-size: 18px;
    display: flex;
    position: absolute;
    top: 0;
    left: -7.1%;
    transform: translate(10%);
}

.case-study-section .case-studis-content {
    position: relative;
}

.case-study-section .case-studies-group {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
}


.case-study-section .case-studies-card {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 100px;
    background-color: #1B1B1B;
    align-items: center;
    justify-content: center;
    margin-left: 82px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.case-study-section .case-studies-card>* {
    flex: 0 0 calc(50% - 50px);
    box-sizing: border-box;
}

.case-study-section .case-image-wrap {
    width: 100%;
}

.case-study-section .case-studies-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.case-study-section .case-studies-numbner {
    z-index: 1;
    color: #fff;
    background-color: #0f1112;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 18px;
    display: flex;
    position: absolute;
    top: 0;
    left: -6%;
    transform: translate(-50%);
}

.case-studies-content-wrap {
    color: #fff;
}

.case-studies-content-wrap .common-tn-para {
    color: #aab0b3;
}

.case-study-section .case-studies-single-line {
    transition: transform 0.2s ease-out;
}

.position-sticky-div {
    height: 100%;
    position: sticky;
    top: 100px;
    width: 100%;
}

.sticky-card-div {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.design-process-row {
    justify-content: space-between;
}


.ourbrand-services {
    position: relative;
    padding: 100px 100px 0px;
}

.ourbrand-services-container {
    position: relative;
    margin-top: 3rem;
}

.ourbrand-services-content h6 {
    font-size: 1.5rem;
    padding: 1rem 0rem;
    margin-bottom: 0rem;
}

.ourbrand-services-card {
    position: relative;
    margin-bottom: 2rem;
}



/* Benefits of UI/UX Design section divya 22-9-25 */
.benefits-ui-ux-design-sec {
    position: relative;
    padding: 100px 100px;
    background-color: #ebeef0;
}

.benefits-ui-ux-design-sec h1 {
    text-transform: capitalize;
}

.benefits-ui-center-head .row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-ui-ux-design-sec .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.benefits-ui-ux-design-sec .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.benefits-ui-ux-design-sec .accordion-item {

    background-color: #fff !important;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
}

.benefits-ui-ux-design-sec .accordion-content {
    margin-left: 0;
    margin-top: 0;
}




/* Web Design and Development page design Divya 23-9-25 */
.web-design-work-sec {
    position: relative;
    background-color: #000000;
    padding: 100px 100px;
}

.web-design-work-card {
    position: relative;
    margin-bottom: 2rem;
}

.web-design-work-card a {
    color: #fff;
    text-decoration: none;
}

.web-design-work-text-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.1rem 1.25rem 2.225rem;

    border-top-left-radius: 1.125rem;
    border-top-right-radius: 1.125rem;
    border-top: 1px solid #504f4f;
    border-right: 1px solid #504f4f;
    border-left: 1px solid #504f4f;
    margin-bottom: -1.125rem;
}

.web-design-work-text-top h3 {
    display: flex;
    gap: .625rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
    color: inherit;
    margin: 0;
}

.web-design-work-text-top h3 svg {
    width: .9375rem;
}

.web-design-work-text-top p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: calc(-20em / 1000);
    margin: 0;
    color: inherit;
}

.web-design-work-hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, .8);
    padding: 5% 9%;
    opacity: 0;
    transition: opacity .3s;
    z-index: 10;
    border-radius: .625rem;
}

.web-design-work-card:hover .web-design-work-hover-text {
    opacity: 1;
}

.project-card-tags {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0;
    margin: auto 0 0;
    z-index: 5;
}

.project-card-tags li {
    font-size: .8125rem;
    padding: 8px 15px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: calc(-10em / 1000);
    color: #fff;
    border-radius: 2rem;
    border: 1px solid #fff;
    list-style: none;
}

.web-design-work-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 1.125rem;
    display: block;
}

.web-design-work-img-div {
    aspect-ratio: 16 / 9;
    position: relative;
}

.web-design-work-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 1.125rem;
    display: block;
}

/* Web Design and Development page design Divya 23-9-25 */

/* Web Design and Development page Responsiveness Media Query 25-9-25 */

.ourbrand-services-img img {
    width: 100% !important;
    height: 100% !important;
}

.ourbrand-services-card .ourbrand-services-img img {
    width: 100% !important;
    height: 100% !important;
}

.benefits-image-div img {
    width: 85%;
    height: 100%;
}

/* Mobile Devices */

@media only screen and (max-width: 319.5px) {
    .benefits-image-div img {
        width: 100%;
        height: 100%;
    }

    .web-design-work-sec {
        padding: 20px 5px;
    }

    .web-design-work-text-top h3 {
        gap: 0.65rem;
        font-size: 1rem;
    }

    .web-design-work-text-top {
        padding: 1rem 1rem 2rem;
    }

    .web-design-work-hover-text {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .web-design-work-video {

        border-radius: 10px;
    }

    .web-design-work-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }

    .web-design-work-sec .benefits-ui-center-head .row {

        margin-bottom: 0;
    }

    .benefits-image-div {
        position: relative;
        margin-bottom: 1rem;
    }

    .benefits-ui-center-head .row {

        margin-bottom: 1rem;
    }

    .benefits-ui-ux-design-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }

    .web-design-work-card .common-tn-head {
        font-size: 13px !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767.5px) {
    .benefits-image-div img {
        width: 100%;
        height: 100%;
    }

    .web-design-work-sec {
        padding: 20px 5px;
    }

    .web-design-work-text-top h3 {
        gap: 0.65rem;
        font-size: 1rem;
    }

    .web-design-work-text-top {
        padding: 1rem 1rem 2rem;
    }

    .web-design-work-hover-text {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .web-design-work-video {

        border-radius: 10px;
    }

    .web-design-work-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }

    .web-design-work-sec .benefits-ui-center-head .row {

        margin-bottom: 0;
    }

    .benefits-image-div {
        position: relative;
        margin-bottom: 1rem;
    }

    .benefits-ui-center-head .row {

        margin-bottom: 1rem;
    }

    .benefits-ui-ux-design-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }

    .web-design-work-card .common-tn-head {
        font-size: 14px !important;
    }
}

/* Tab Devices */
@media only screen and (min-width: 768px) and (max-width: 1023.5px) {
    .web-design-work-sec {
        padding: 40px 30px;
    }

    .web-design-work-card .common-tn-head {
        font-size: 17px !important;
    }

    .benefits-ui-ux-design-sec .benefits-ui-center-head .row .col-md-7 {
        flex: 0 0 auto;
        width: 90%;
    }

    .benefits-ui-ux-design-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }

    .web-design-work-sec .What-Our-Client-Says-heading {

        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {

    .web-design-work-sec {
        padding: 50px 50px;
    }

    .web-design-work-card .common-tn-head {
        font-size: 1.5rem !important;
    }

    .what-we-do-inner-sec .what-we-do-inner-container {
        padding: 1rem 2rem !important;
    }
}



@media only screen and (min-width: 1824px) and (max-width: 1920px) {
    .web-design-work-text-top h3 {
        gap: 1rem;
        font-size: 2rem;
    }

    .web-design-work-text-top h3 svg {
        width: 1rem;
    }

    .web-design-work-text-top p {
        font-size: 1.75rem;
    }

    .project-card-tags li {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2560px) {
    .web-design-work-sec {
        padding: 150px 150px;
    }
    .ourbrand-services-content h3{
        font-size: 2.5rem !important;
        padding: 1rem 0rem 1rem 0rem;
        margin-bottom: 0rem;
    }
    .web-design-work-text-top h3 {
        gap: 1.5rem;
        font-size: 2.2rem;
    }

    .web-design-work-text-top h3 svg {
        width: 1.5rem;
    }

    .web-design-work-text-top p {
        font-size: 2rem;
    }

    .project-card-tags li {
        font-size: 1.5rem;
        padding: 15px 35px;
        border-radius: 50px;
    }

    .web-design-work-text-top {
        padding: 2.1rem 2.25rem 3.25rem;
    }

    .project-card-tags {

        gap: 1rem;
    }
}

@media only screen and (min-width: 2561px) and (max-width: 3840px) {
    .web-design-work-sec {
        padding: 200px 200px;
    }

    .web-design-work-text-top h3 {
        gap: 2rem;
        font-size: 3rem;
    }

    .web-design-work-text-top h3 svg {
        width: 2rem;
    }

    .web-design-work-text-top p {
        font-size: 2.5rem;
    }

    .project-card-tags li {
        font-size: 2rem;
        padding: 25px 45px;
        border-radius: 50px;
    }

    .web-design-work-text-top {
        padding: 3.1rem 3.25rem 4.25rem;
    }

    .web-design-work-card {
        margin-bottom: 5rem;
    }

    .project-card-tags {

        gap: 1.5rem;
    }
}

/* 6k resolution */
@media only screen and (min-width: 3841px) and (max-width: 6144px) {
    .web-design-work-sec {
        padding: 300px 300px;
    }

    .web-design-work-text-top h3 {
        gap: 3rem;
        font-size: 4rem;
    }

    .web-design-work-text-top h3 svg {
        width: 3rem;
    }

    .web-design-work-text-top p {
        font-size: 3.5rem;
    }

    .project-card-tags li {
        font-size: 3rem;
        padding: 45px 65px;
        border-radius: 65px;
    }

    .web-design-work-text-top {
        padding: 4.1rem 4.25rem 5.25rem;
    }

    .web-design-work-card {
        margin-bottom: 6rem;
    }

    .project-card-tags {

        gap: 1.5rem;
    }
}

/* 8k resolution */
@media only screen and (min-width: 6145px) and (max-width: 7681px) {
    .web-design-work-sec {
        padding: 400px 400px;
    }

    .web-design-work-text-top h3 {
        gap: 4rem;
        font-size: 5rem;
    }

    .web-design-work-text-top h3 svg {
        width: 4rem;
    }

    .web-design-work-text-top p {
        font-size: 4.5rem;
    }

    .project-card-tags li {
        font-size: 4rem;
        padding: 65px 85px;
        border-radius: 85px;
    }

    .web-design-work-text-top {
        padding: 5.1rem 5.25rem 6.25rem;
    }

    .web-design-work-card {
        margin-bottom: 7rem;
    }

    .project-card-tags {

        gap: 2.5rem;
    }
}



/* What We Do New Design Divya 30-9-25 */
.what-we-do-newcards-section {
    position: relative;
    padding: 0px 100px 100px 100px;
}

.what-we-do-newcards-section .banner-content .common-tn-head {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.what-we-do-newcards-section .what-we-do-video-div video {
    border-radius: 1rem;
}

.what-we-do-new-cards-fixed {
    position: relative;
    width: 100%;
}

.what-we-donew-second-head-row {
    position: relative;
    padding: 1rem 0rem;
}

.what-we-donew-second-head-div h4 {
    font-size: 2rem;
    margin-bottom: 0rem;
}

.what-we-donew-second-head-col {
    position: relative;
    border-top: 1px solid #ddd;
    padding: 1rem 0rem;
}




/* What We Do New page design divya 7-10-25 */

.nd-service-one-v-three {
    position: relative;
    background: #000;
    color: #fff;
    padding: 5rem 0;
    overflow: visible;
}

.nd-service-one-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6rem;
}

.nd-service-one-marquee-innar {
    display: flex;
    /* gap: 4rem;
    animation: marqueeLoop 20s linear infinite; */
}

@keyframes marqueeLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nd-service-one-marquee-item {
    flex-shrink: 0;
}

.nd-text-style-h1 {
    font-size: 7vw;
    font-weight: bold;
    text-transform: uppercase;
}



.nd-branding-animation-wrapper {
    display: block;
    position: relative;
}

.nd-branding-animation-top-left {
    margin-top: 25px;
}

.nd-branding-animation-image {
    height: 110%;
    overflow: hidden;
}

.nd-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* .nd-branding-animation-image.nd-position-relative.nd-image {
    background-image: url("https://cdn.prod.website-files.com/67a1ba0a889270647730e779/680795627e1b6dc7a2dbe31c_Img%20(2).webp");
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.nd-branding-animation-image.nd-position-relative.nd-2 {
    background-image: url("https://cdn.prod.website-files.com/67a1ba0a889270647730e779/680795627e1b6dc7a2dbe31c_Img%20(2).webp");
    background-position: 50%;
    background-size: cover;
}

.nd-branding-animation-image.nd-position-relative.nd-3 {
    background-image: url("https://cdn.prod.website-files.com/67a1ba0a889270647730e779/680795f53262062c485b9cb7_Our%20Service%20(1).webp");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.nd-branding-animation-image.nd-position-relative.nd-4 {
    background-image: url("https://cdn.prod.website-files.com/67a1ba0a889270647730e779/680795f5bdd02a5692f2982a_Our%20Service%20(2).webp");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.nd-branding-animation-image.nd-1 {
    background-image: linear-gradient(#0000004d, #0000004d), url("https://cdn.prod.website-files.com/67a1ba0a889270647730e779/680795f43934c284cc869bb6_Our%20Service%20(3).webp");
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
} */

.nd-branding-animation-image-main {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.nd-branding-animation-main {
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.nd-branding-animation-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
}

.nd-branding-animation-image {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(to right, #111 30%, #222 100%);
}


.nd-tab-text-center {
    width: 100%;
    padding-right: 20px;
}

.nd-branding-animation-top {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #12151a;
    padding: 2rem 2rem;
    display: flex;
    position: relative;
}

.nd-text-color-white {
    font-size: 1.5rem;
}

.nd-subtext {
    padding-left: 10px;
    display: flex;
}

.nd-subtext .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

}

.nd-subtext .row .nd-branding-animation-main {
    width: 70%;
}

.nd-subtext .row .btn-secondary.w-inline-block {
    color: #000;
}

.nd-branding-animation-top-left {
    overflow: visible;
}

.nd-subtext-btn-col {
    align-items: flex-start;
    justify-content: flex-end;
    display: flex;
}

.nd-text-style-h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 600;
}

.nd-heading-other-1 {
    color: #ddd;
    font-size: 1rem;
}


.nd-position-absolute.nd-image-inner {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-bottom: 20px;
    padding-left: 100px;
    display: flex;
    inset: auto auto 15% 0%;
}

.nd-position-absolute {
    position: absolute;
}


.nd-design-excellence {
    background-color: #fff;
    border-radius: 20px;
    padding: 2px 10px;
    color: #000;
}

.nd-small-tag {
    font-size: 12px;
}

.nd-container {
    max-width: 85%;
    padding-left: 15px;
    padding-right: 15px;
}

.nd-service-one-v-three a,
.nd-service-one-v-three a:hover,
.nd-service-one-v-three a:focus {
    text-decoration: none;
    outline: none;
    color: #fff;
}

.nd-brand-top-overlay {
    background-color: #72c29b;
    height: 5px;
    position: absolute;
    inset: 0% 0% auto;
}


.nd-last-section {
    position: relative;
    padding: 150px 100px;
    background-image: url('./../img/frame-186.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nd-last-sec-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-last-sec-card {
    position: relative;
    padding: 1rem;
    background-color: #fff;
}

.nd-last-sec-card-row {
    display: flex;
    height: 100%;
    justify-content: center;
}

.nd-last-sec-card-col {
    position: relative;
    display: flex;
    justify-content: center;
    height: auto;
    flex-direction: column;
    padding: 2rem 2rem !important;
    gap: 1rem;
}

.nd-last-sec-card-col .btn-div-bottom {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.nd-last-section .tags-wrapper {
    padding-top: 1rem !important;
}

.nd-creative-spark-top-black {
    background-color: #181927;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px 6px;
    display: flex;
}

.nd-color-full-round {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.nd-color-round.one {
    background-color: #e56c60;
}

.nd-color-round.two {
    background-color: #f6c04d;
}

.nd-color-round.three {
    background-color: #62c359;
}

.nd-color-round {
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.nd-creative-spark-top-text {
    background-color: #4644443b;
    border-radius: 5px;
    padding: 5px 15px 2px;
}

.nd-one-time-font {
    color: #fff;
}

.nd-creative-spark-icon-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

@media only screen and (min-width: 1824px) and (max-width: 1920px) {
    .nd-last-sec-card-row .btn-primary {
        padding: 20px 0px;
        font-size: 1.15rem;
    }

    .nd-last-sec-card-col {
        padding: 4rem 4rem !important;
    }
}



/* Photography and Videography Design Divya 8-10-25 */

.photography-banner-col {
    text-align: center;
}

.photography-banner-sec .photography-banner-col .banner-content {
    width: 100%;
}

.photography-row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    height: 100%;
}

.photography-col {
    height: 100%;
}

.photography-card-img,
.photography-card-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;

}

.photography-container {
    width: 97%;
    margin: 0 auto;
    position: relative;
}

.photography-section {
    position: relative;
    background-image: linear-gradient(180deg, #000, #000 60%, #fff 40%, #fff);
    color: #fff;
    padding: 100px 0px;

}

.photography-section .common-heading-div .common-tn-para,
.videography-section .common-heading-div .common-tn-para {
    margin-bottom: 3rem;
    text-align: center;
}

.videography-section {
    position: relative;
    padding-bottom: 100px;
}

.videography-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.videography-card {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.videography-card video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}






.text-centre-logo {
    text-align: center;

}









.meet-team-section .meet-div h1 {
    margin-bottom: 0px !important;
    padding-top: 3rem;



}

.meet-team-section .meet-div h2 {
    margin-bottom: 0px !important;
    padding-top: 3rem;



}



.banner-branding-img {
    width: 80%;

}


.careerModal .modal-body {
    padding: 0 var(--bs-modal-padding) var(--bs-modal-padding) var(--bs-modal-padding);
}







.case-study-img-mobile {
    display: none;
}

.case-study-img-desktop {
    display: block;
}


@media (max-width: 767px) {
    .case-study-img-desktop {
        display: none;
    }

    .case-study-img-mobile {
        display: block;
    }
}




.branding-nineteen-section-vb p {
    color: #ACACAC;


}

.black-bg.branding-nineteen-section p {
    color: #ACACAC;


}

.second-heaing-works h6 {
    padding-top: 40px !important;


}

.ourbrand-services-social-media {

    padding-bottom: 100px;

}


.web-design-banner h6 {

    color: #ACACAC !important;

}

.what-we-do-inner-sec.web-design-banner .btn-primary-content {
    background-color: #fff;
    color: #000;
}

.what-we-do-inner-sec.web-design-banner .btn-primary-content {
    background-color: #fff;
    color: #000;
}



.what-we-do-inner-sec.web-design-banner .btn-primary-ic {
    background-color: #fff;
    color: #000;
}

.carrer-role-class {
    padding-top: 10px;
}

.logo img {
    width: 85%;
    transition: all .2s;
}

.menu-close-btn img {
    width: 55%;
}

.common-tn-para.text-uppercase.letter-spacing-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}













/* ===============================
   PAGE LOADER
================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: opacity .6s ease;
}

/* Logo top center */
#loader-logo {
    margin-top: 30px;
}

/* Dots center */
#loader-dots-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-dots {
    display: flex;
    gap: 10px;
}

#loader-dots span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite ease;
}

#loader-dots span:nth-child(2) {
    animation-delay: .2s;
}

#loader-dots span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes blink {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/* ===============================
   AFTER LOADING COMPLETE
================================ */
body.loaded {
    opacity: 1;
    overflow: auto;
}

body.loaded #page-loader {
    opacity: 0;
    pointer-events: none;
}

/* ===============================
   HEADER LOGO ANIMATION
================================ */
#header-logo {
    transform: translateX(50%) scale(.6);
    opacity: 0;
    transition: all .7s cubic-bezier(.600, .300, 0, 1);
}

body.loaded #header-logo {
    transform: translate(0, 0) scale(1);
    opacity: 1;
}





.ourbrand-services-content h3 {
    font-size: 1.5rem;
    padding: 1rem 0rem;
    margin-bottom: 0rem;
}

















