/* Force all elements to have 0px border radius (sharp corners) universally */
*, *::before, *::after {
    border-radius: 0px !important;
}
:root {
    --color-gray-600: #666c7a;
    --color-black: #06070a;
}
.color-gray-600{
    color: var(--color-gray-600);
}
.custom-black-color{
    color: var(--color-black);
}
@font-face {
    font-family: UniversalSans-500;
    src: url(../fonts/UniversalSans-500.woff) format("woff"), url(../fonts/UniversalSans-500.ttf) format("ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: UniversalSans-500-Headlines;
    src: url(../fonts/UniversalSans-500-Headlines.woff) format("woff"), url(../fonts/UniversalSans-500-Headlines.ttf) format("ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: UniversalSans-740;
    src: url(../fonts/UniversalSans-740.woff) format("woff"), url(../fonts/UniversalSans-740.ttf) format("ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: UniversalSans-740-Headlines;
    src: url(../fonts/UniversalSans-740-Headlines.woff) format("woff"), url(../fonts/UniversalSans-740-Headlines.ttf) format("ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: 'Caramello';
    src: url(../fonts/Caramello.ttf) format('truetype');
}
@font-face {
    font-family: 'Beautiful Handwriting';
    src: url('../fonts/BeautyHandwriting-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.signature-font {
    font-family: 'Beautiful Handwriting', cursive;
}
.caramello-font {
    font-family: 'Caramello', sans-serif;
}
.font-universal {
    font-family: UniversalSans-500, Arial, sans-serif !important;
}
.font-universal-740 {
    font-family: UniversalSans-740, Arial, sans-serif !important;
    font-weight: 650;
}
/* Maintain spherical shape for the Fintech orbiting ball */
#fintech-purple-ball {
    border-radius: 50% !important;
}

/* Maintain rounded-full pill shape for header contact buttons */
.header-contact-btn {
    border-radius: 9999px !important;
}

html, body {
    overflow-x: hidden;
}

/* Custom Scrollbar for Light Theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f7;
}
::-webkit-scrollbar-thumb {
    background: #d1d1d6;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa;
}

/* Floating 3D image rotation animation keyframe */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-12px) translateX(6px) rotate(1deg);
    }
    66% {
        transform: translateY(8px) translateX(-4px) rotate(-0.5deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.float-graphic {
    animation: floatAnimation 8s ease-in-out infinite;
    will-change: transform;
}

/* Slow 360° spin for corner SVG shapes on service cards */
@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.slow-spin {
    animation: slowSpin 55s linear infinite;
    transform-origin: 50% 50%;
    will-change: transform;
}

/* Underline slide animation on hover for Nav Links */
.nav-link {
    position: relative;
    padding-bottom: 6px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #111111;
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
/* .nav-link:hover::after,
.nav-link.active-nav-link::after {
    width: 100%;
} */

.nav-link:hover::after {
    width: 100%;
    background-color: #111111;
}

.nav-link.active-nav-link::after {
    width: 100%;
    background-color: #B2BBC2 !important;
}


/* Infinite Marquee Loop for Client Logos */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 45s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Custom indigo gradients */
.bg-gradient-indigo {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}

/* Capabilities Accordion Line Indicator */
.accordion-line {
    position: relative;
}
.accordion-line::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background-color: #111111;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.accordion-active .accordion-line::before {
    width: 100%;
}

/* Project Masonry Grid Cards Zoom on Hover */
.project-card {
    position: relative;
    overflow: hidden;
}

.project-image-wrapper {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-image-wrapper {
    transform: scale(1.025);
}

.font-sans-Jakarta {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Disable native CSS transition for .scroll-reveal when GSAP handles it */
.scroll-reveal {
    transition: none !important;
}

/* ============================================================
   Mobile Full-Bleed: Images & Videos — No horizontal padding
   on small screens (below md / 768px breakpoint).
   Each rule cancels the parent section's px-6 padding using
   negative horizontal margins and full viewport width.
   ============================================================ */

@media (max-width: 767px) {

    /* --- Works Section: project card visual containers --- */
    #work .project-card > div:first-child {
        margin-left: -1.5rem;   /* cancel px-6 */
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }

    /* --- Featured News Section: news image wrappers --- */
    #news .news-row .md\:col-span-4 {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }

    /* --- Fintech Section: dark card goes full-bleed --- */
    #fintech-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #fintech-section > div > div {
        border-radius: 0 !important;
    }

    /* --- Culture Slider: remove track side padding --- */
    #culture-slider-track {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* --- Video Showcase: already full-bleed, ensure no gap --- */
    #showcase-video-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
	.project-card .text-content>.flex.items-center.space-x-2.text-lg {
        opacity: 1 !important;
        transform: translateY(0) !important;
        font-size: 12px !important;
        letter-spacing: 0.06em;
        gap: 6px;        
    }
}

/* Ensure hero spheres and shadow maintain their rounded shapes despite the global sharp reset */
#hero-graphic-container * {
    border-radius: 9999px !important;
}


/* Hero 3D Perspective Container */
.hero-3d-wrapper {
    perspective: 1200px; /* Depth control */
    width: 100%;
    overflow: visible; /* Zaroori hai taaki 3D rotation cut na ho */
}

.hero-3d-image {
    width: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    /* Agar aapki image round hai toh sharp corners se bachane ke liye: */
    border-radius: 0px !important; 
}

.logo-orange-color{
   color: #F26723 ;
}
.logo-purple-color{
   /* color: #6E2B8E  */
	   color: #824C9D ;
}
.logo-dark-pink-color{
	color: #CB1F4D ;
}
.logo-yellow-color{
	color: #FDD210 ;
}
.logo-green-color{
	/* color: #1FB472 ;*/
	color: #034B4E;
}
.logo-blue-color{
	color: #1A85C6 ;
}
.logo-red-color{
	color: #EA2229 ;
}
