:root {
    --tc-dark-1: #0d1117;
    --tc-dark-2: #131b25;
    /* --tc-accent: #ffffff; */
    --tc-highlight: #e63946;
    --btn-hover-bg: linear-gradient(180deg, #24446B 0%, #000000 100%);
    /* --btn-hover-color: white; */
}

body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    overflow-x: hidden;
}

.radial {
    width: 100%;
    background: radial-gradient(circle at center,
            rgba(255, 100, 100, 0.2) 0%,
            rgba(255, 255, 255, 1) 70%);
}


/* ---------- Hero ---------- */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Typing cursor ---------- */
.cursor {
    display: inline-block;
    background-color: var(--tc-highlight);
    width: 2px;
    margin-left: 2px;
    height: 1.2em;
    vertical-align: bottom;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ---------- Video background ---------- */
.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-wrapper .overlay-text {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, .7);
}

/* ---------- Scroll‑to‑top button ---------- */
.scroll-top {
    position: fixed;
    z-index: 9999;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    border: none;
    background-color: #f43f5e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s;
}

.scroll-top:hover {
    background-color: #d62839;
}

.scroll-top.hide {
    opacity: 0;
    pointer-events: none;
}

/* ---------- Link / text hover colour ---------- */
a,
h2,
h3,
h4,
p,
span,
button,
[role="button"] {
    transition: color .3s ease;
}

/* a:hover, h2:hover, h3:hover, h4:hover, p:hover, span:hover, button:hover,[role="button"]:hover {
            color: #dc284b !important;
        } */


/*home page*/
section.bg-light.py-5.techcentrica-about {
    padding: 100px 0px !important;
}

.techcentrica-cta-home {
    background-color: black;
    color: white;
    /* min-height: 100vh; */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.techcentrica-cta-home .form-control,
.techcentrica-cta-home .form-control:focus,
.techcentrica-cta-home textarea.form-control,
.techcentrica-cta-home textarea.form-control:focus {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: white;
    border-radius: 0.375rem;
    box-shadow: none;
}

.techcentrica-cta-home .form-control::placeholder {
    color: #bfbfbf;
}

.techcentrica-cta-home .form-control:focus {
    border-color: #dc3545;
    box-shadow: none;
    background-color: transparent;
    color: white;
}

.techcentrica-cta-home .btn-red {
    background-color: #dc3545;
    border: none;
    border-radius: 50px;
    padding: 0.375rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.techcentrica-cta-home .btn-red:hover,
.techcentrica-cta-home .btn-red:focus {
    background-color: #b02a37;
    color: white;
}

.techcentrica-cta-home .white-box {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 20rem;
    text-align: center;
    color: black;
}

.techcentrica-cta-home .white-box h2 {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.rounded-lg {
    border-radius: 1rem !important;
}

@media (max-width: 767.98px) {
    .techcentrica-cta-home .white-box {
        max-width: 100%;
        margin-top: 2rem;
    }
}

h1 {
    font-weight: 800;
    line-height: 1.1;
}

.highlight {
    color: #5ce69b;
}

.carousel-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

@keyframes verticalslide-up {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes verticalslide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.scroll-up {
    animation: verticalslide-up 8s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    animation: verticalslide-down 8s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    width: 80px;
    height: auto;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
}

h1 {
    font-weight: 800;
    line-height: 1.1;
    font-size: 2rem;
}

.highlight {
    color: #DB2848;
}

.left-container {
    background: linear-gradient(180deg, #24446B 0%, #000000 100%);
}

.carousel-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

@keyframes verticalslide-up {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes verticalslide-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.scroll-up {
    animation: verticalslide-up 12s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* double height for seamless loop */
    height: 200%;
}

.scroll-down {
    animation: verticalslide-down 12s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 200%;
}

.logo-img {
    width: 80px;
    height: auto;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 4rem;
    }
}

.techcentrica-about {
    background-image: url('images/hero-banner/silk-background.webp');
    /* Update path as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed;  */
}

h1.text-white.fw-bold.max-w-md {
    font-size: 3.4rem;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: content-box;
}

.marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 6px;
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar thumb with linear gradient */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #000000 0%, #24446B 100%);
    border-radius: 4px;
}

/* Optional: thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #24446B 0%, #000000 100%);
}

.min-vh-90 {
    min-height: 70vh;
}

/*Services*/
section.bg-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 1rem;
    background-image: url('../assets/images/hero-banner/Career-Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #0a2e37;
    background: rgba(230, 245, 249, 0.85);
    padding: 4rem 2rem 4rem 2rem;
    border-radius: 1rem;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.rounded-custom {
    border-radius: 32px 12px 32px 12px;
}

/* Animation for heading */
.animated-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.5rem;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
    color: #0a2e37;
}

.animated-heading span,
.animated-heading img {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.6s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-heading span:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-heading img:nth-child(2) {
    animation-delay: 0.3s;
}

.animated-heading span:nth-child(3) {
    animation-delay: 0.5s;
}

.animated-heading img:nth-child(4) {
    animation-delay: 0.7s;
}

.animated-heading img:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .animated-heading {
        font-size: 2.25rem;
    }
}

section.bg-\[\#121212\].rounded-xl.p-6.flex.flex-col.justify-between.min-h-\[280px\] {
    background: linear-gradient(180deg, #24446B 0%, #000000 100%) !important;
}


/* whatsapp btn  */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 15px;
    background-color: #25D366;
    /* WhatsApp green */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #128C4A;
    /* Darker green on hover */
}

.whatsapp-button svg {
    fill: white;
    transition: fill 0.3s ease;
}