/* ============================================
   RA Info Solution — site styles
   ============================================ */

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-elevated: #eef2ff;
    --bg-dark: #1a1f43;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --accent: #4f46e5;
    --accent-hover: #4338ca;
    --accent-vibrant: #06b6d4;
    --accent-warm: #ea580c;
    --accent-muted: rgba(79, 70, 229, 0.11);
    
    --gradient-start: #6366f1;
    --gradient-end: #a855f7;
    
    --border: #e2e8f0;
    --border-focus: #6366f1;
    
    --accent-shadow-sm: rgba(79, 70, 229, 0.1);
    --accent-shadow: rgba(79, 70, 229, 0.12);
    --accent-shadow-md: rgba(79, 70, 229, 0.2);
    --accent-shadow-lg: rgba(79, 70, 229, 0.15);
    --accent-ring: rgba(79, 70, 229, 0.3);
    --accent-ring-strong: rgba(79, 70, 229, 0.35);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Inter', monospace;
    
    --container-max: 1280px;
    --section-padding: 5rem 0;
    
    --transition: 0.2s ease;
    --transition-slow: 0.35s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top-bar {
    position: relative;
    background: linear-gradient(105deg, #312e81 0%, #4f46e5 38%, #6366f1 62%, #0e7490 100%);
    background-size: 200% 100%;
    color: white;
    padding: 0.45rem 0;
    font-size: 0.8125rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
    .top-bar {
        animation: top-bar-gradient 22s ease infinite;
    }
}

@keyframes top-bar-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2rem;
}

.top-bar-social {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.top-bar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.45rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.top-bar-social-link:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.top-bar-social-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.top-bar-social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.top-bar-social-link--x svg {
    width: 14px;
    height: 14px;
}

.top-bar-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.top-bar-shine {
    display: none;
}

.top-bar-tagline {
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #f8fafc;
    text-shadow:
        0 1px 0 rgba(190, 242, 255, 0.45),
        0 2px 0 rgba(99, 102, 241, 0.45),
        0 3px 0 rgba(67, 56, 202, 0.4),
        0 6px 12px rgba(49, 46, 129, 0.36);
}

.top-bar-links {
    display: flex;
    gap: 1.5rem;
}

.top-bar-links a {
    color: rgba(255,255,255,0.9);
}

.top-bar-links a:hover {
    color: white;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    overflow: visible !important;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(1.35);
    -webkit-backdrop-filter: blur(16px) saturate(1.35);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.breadcrumb-wrap {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.35rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb [aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
    overflow: visible !important;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.25rem 0.35rem 0.25rem 0;
    margin: -0.25rem 0 -0.25rem -0.35rem;
    transition: background var(--transition);
}

.logo:hover {
    background: var(--accent-muted);
}

.logo-img {
    height: 2rem;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
    background: var(--accent-muted);
    border-color: rgba(79, 70, 229, 0.25);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.35rem;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-links > li > a:hover {
    color: var(--accent);
    background: var(--accent-muted);
}

.nav-links > li > a.active {
    color: var(--accent);
    background: rgba(79, 70, 229, 0.12);
    font-weight: 600;
}

.nav-item--has-mega > a {
    gap: 0.3rem;
}

.nav-item--has-mega > a::after {
    content: '';
    width: 0.35rem;
    height: 0.35rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.65;
    transition: transform 0.2s ease;
}

.nav-item--has-mega:hover > a::after,
.nav-item--has-mega:focus-within > a::after {
    transform: rotate(45deg) translateY(1px);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0.35rem);
    padding-top: 0.5rem;
    min-width: min(100vw - 2rem, 640px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
    z-index: 120;
}

.nav-item--has-mega:hover .mega-menu,
.nav-item--has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 1rem;
    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.mega-menu-intro {
    padding-right: 0.5rem;
    border-right: 1px solid var(--border);
}

.mega-menu-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.mega-menu-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

.mega-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.2s ease;
}

.mega-menu-cta:hover {
    gap: 0.55rem;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mega-menu-heading {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.mega-menu-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-group li {
    margin-bottom: 0.4rem;
}

.mega-menu-group a {
    display: block;
    padding: 0.4rem 0.5rem;
    margin: 0 -0.5rem;
    border-radius: 0.45rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: background var(--transition), color var(--transition);
}

.mega-menu-group a:hover {
    background: var(--accent-muted);
    color: var(--accent);
}

.mega-menu-group--highlight {
    padding: 0.75rem;
    margin: -0.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(238, 242, 255, 0.95) 0%, rgba(224, 231, 255, 0.65) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.mega-menu-group--highlight .mega-menu-heading {
    color: var(--accent);
}

.hero-tata {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-bg-tata {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #151a39;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay-tata {
    z-index: 1;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(10, 11, 24, 0.93) 0%, rgba(10, 11, 24, 0.36) 45%, transparent 72%),
        linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(79, 70, 229, 0.65) 42%, rgba(8, 51, 68, 0.88) 100%);
}

.hero-bg-overlay-tata::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 65%);
    pointer-events: none;
}

.hero-tata .hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 780px;
}

.hero-heading-tata {
    margin: 0 0 1.5rem;
    padding: 0.35rem 0 0.35rem 1.15rem;
    max-width: 42rem;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #67e8f9 0%, #a78bfa 52%, #f0abfc 100%) 1;
    perspective: 900px;
    transform-style: preserve-3d;
}

.hero-heading__text {
    display: block;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-wrap: balance;
    transform: rotateX(5deg) translateZ(0);
    transform-origin: left center;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 0 rgba(99, 102, 241, 0.55))
        drop-shadow(0 2px 0 rgba(67, 56, 202, 0.5))
        drop-shadow(0 3px 0 rgba(49, 46, 129, 0.55))
        drop-shadow(0 4px 0 rgba(30, 27, 75, 0.5))
        drop-shadow(0 5px 0 rgba(15, 23, 42, 0.45))
        drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42))
        drop-shadow(0 2px 24px rgba(99, 102, 241, 0.35));
}

.hero-subtitle-tata {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-tata .hero-cta {
    justify-content: flex-start;
    gap: 1rem;
}

.btn-tata {
    background: #ffffff;
    color: var(--accent);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-tata:hover {
    background: #eef2ff;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-tata-outline {
    background: rgba(8, 16, 24, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-tata-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
}

.hero-corporate {
    background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.hero-bg-corporate {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.88) 0%, rgba(49, 46, 129, 0.92) 100%);
}

.hero-corporate .hero-content {
    position: relative;
    z-index: 1;
}

.hero-corporate .hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-corporate .hero-title {
    color: white;
}

.hero-corporate .gradient-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.hero-corporate .hero-subtitle {
    color: rgba(255,255,255,0.9);
}

.hero-corporate .btn-primary {
    background: white;
    color: var(--accent);
}

.hero-corporate .btn-primary:hover {
    background: var(--bg-secondary);
}

.hero-corporate .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-corporate .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.hero-corporate .hero-scroll {
    color: rgba(255,255,255,0.8);
}

.hero-corporate .scroll-indicator {
    border-color: rgba(255,255,255,0.5);
}

.hero-corporate .scroll-indicator::after {
    background: white;
}

.stats-bar {
    background: var(--accent);
    color: white;
    padding: 2.5rem 0;
}

.stats-bar-tata {
    background: #f8fafc;
    padding: 3.35rem 0;
    border-top: 1px solid #e5eaf5;
    border-bottom: 1px solid #e5eaf5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    text-align: left;
    max-width: 1040px;
    margin: 0 auto;
}

.stats-grid .stat-item {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
}

.stats-grid.is-visible .stat-item {
    animation: stats-card-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stats-grid.is-visible .stat-item:nth-child(2) {
    animation-delay: 0.12s;
}

.stats-grid.is-visible .stat-item:nth-child(3) {
    animation-delay: 0.24s;
}

.stats-bar-tata .stat-item {
    position: relative;
    padding: 1.35rem 1.4rem 1.2rem;
    border-radius: 0.95rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stats-bar-tata .stat-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #38bdf8 0%, #6366f1 100%);
    opacity: 0.9;
}

.stats-bar-tata .stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.24);
    box-shadow:
        0 14px 28px rgba(15, 23, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.stats-bar .stat-number {
    display: block;
    font-size: clamp(2rem, 3.1vw, 2.45rem);
    font-weight: 800;
    color: #312e81;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.stats-grid.is-visible .stat-number {
    animation: stats-number-pop 0.5s ease both;
}

.stats-grid.is-visible .stat-item:nth-child(2) .stat-number {
    animation-delay: 0.14s;
}

.stats-grid.is-visible .stat-item:nth-child(3) .stat-number {
    animation-delay: 0.28s;
}

.stats-bar .stat-label {
    font-size: 0.88rem;
    color: #475569;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes stats-card-enter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stats-number-pop {
    0% { transform: translateY(6px) scale(0.92); }
    60% { transform: translateY(-1px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}

.featured-section {
    display: grid;
    min-height: 0;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-left .featured-inner {
    grid-template-areas: "img content";
}

.featured-right .featured-inner {
    grid-template-areas: "content img";
}

.featured-image {
    grid-area: img;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-home .featured-image {
    position: relative;
    border-radius: 1.05rem;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.22),
        0 2px 0 rgba(255, 255, 255, 0.28) inset;
}

.page-home .featured-left .featured-image {
    transform: perspective(1400px) rotateY(5deg);
}

.page-home .featured-right .featured-image {
    transform: perspective(1400px) rotateY(-5deg);
}

.page-home .featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 44%);
    pointer-events: none;
}

.page-home .featured-image img {
    transform: scale(1.04);
    filter: contrast(1.05) saturate(1.05);
}

.page-home .featured-section:hover .featured-image {
    transform: perspective(1400px) rotateY(0deg) translateY(-5px);
    box-shadow:
        0 24px 44px rgba(15, 23, 42, 0.28),
        0 2px 0 rgba(255, 255, 255, 0.32) inset;
}

.page-home .featured-section:hover .featured-image img {
    transform: scale(1.08);
}

.page-home .featured-innovation .featured-image {
    transform: perspective(1500px) rotateY(9deg) rotateX(2deg);
    box-shadow:
        0 26px 46px rgba(15, 23, 42, 0.3),
        -8px 12px 24px rgba(79, 70, 229, 0.2),
        0 2px 0 rgba(255, 255, 255, 0.34) inset;
}

.page-home .featured-innovation:hover .featured-image {
    transform: perspective(1500px) rotateY(4deg) rotateX(1deg) translateY(-6px);
}

.page-home .featured-engineering .featured-image {
    transform: perspective(1500px) rotateY(-9deg) rotateX(2deg);
    box-shadow:
        0 26px 46px rgba(15, 23, 42, 0.3),
        8px 12px 24px rgba(79, 70, 229, 0.2),
        0 2px 0 rgba(255, 255, 255, 0.34) inset;
}

.page-home .featured-engineering:hover .featured-image {
    transform: perspective(1500px) rotateY(-4deg) rotateX(1deg) translateY(-6px);
}

.featured-title-3d {
    display: inline-block;
    transform: perspective(900px) rotateX(10deg);
    transform-origin: left center;
    letter-spacing: -0.022em;
}

.featured-content {
    grid-area: content;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
}

.featured-alt .featured-content {
    background: var(--bg-secondary);
}

.featured-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.featured-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-link {
    font-weight: 600;
    color: var(--accent);
    font-size: 1rem;
    transition: color var(--transition);
}

.featured-link:hover {
    color: var(--accent-hover);
}

.hero-flagship {
    margin-top: 1.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 520px;
}

.hero-flagship strong {
    color: #a5f3fc;
    font-weight: 700;
}

.hero-flagship-muted {
    color: rgba(255, 255, 255, 0.85);
}

.prime-products {
    background: #f8fafc;
    padding: 5rem 0;
    border-top: 1px solid #e5eaf5;
    border-bottom: 1px solid #e5eaf5;
}

.prime-products--empty {
    display: none;
}

.prime-products-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.prime-products-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-top: 0.45rem;
    color: #1e1b4b;
    letter-spacing: -0.02em;
    transform-origin: center top;
}

.prime-products-tag {
    display: inline-block;
    text-shadow:
        0 1px 0 #ffffff,
        0 2px 8px rgba(79, 70, 229, 0.18);
    transform: perspective(500px) rotateX(5deg);
}

.prime-products-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8 0%, #6366f1 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.prime-products-lead {
    max-width: 720px;
    margin: 1rem auto 0;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.prime-products-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.prime-card {
    position: relative;
    border-radius: 1rem;
    padding: 2.25rem 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 8px 40px var(--accent-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    isolation: isolate;
}

.prime-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--accent-shadow-md);
}

.prime-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 90% at 0% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.prime-card > * {
    position: relative;
    z-index: 1;
}

.prime-card--medi {
    background: linear-gradient(145deg, #1f5fbf 0%, #2d74d6 45%, #2e5ea7 100%);
    color: white;
}

.prime-card--edu {
    background: linear-gradient(145deg, #5d52d6 0%, #6f78e6 50%, #6f43c4 100%);
    color: white;
}

.prime-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.28rem 0.62rem;
    margin-bottom: 1rem;
}

.prime-card-badge--medi,
.prime-card-badge--edu {
    position: relative;
    font-weight: 800;
    letter-spacing: 0.14em;
    transform: perspective(420px) rotateX(8deg);
    transform-origin: center;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 2px 0 rgba(59, 130, 246, 0.4),
        0 3px 6px rgba(15, 23, 42, 0.45);
    animation: badge-blink 1.45s ease-in-out infinite;
}

.prime-card-badge--medi {
    color: #dbeafe;
}

.prime-card-badge--edu {
    color: #ede9fe;
}

@keyframes badge-blink {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.55; filter: brightness(1.25); }
}

.prime-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    opacity: 0.95;
    flex-shrink: 0;
}

.prime-card-icon svg {
    width: 100%;
    height: 100%;
}

.prime-card-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1.1rem;
}

.prime-card-title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    color: inherit;
}

.prime-card-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    flex: 1;
    margin-bottom: 1.5rem;
}

.prime-card-cta {
    align-self: flex-start;
    background: #ffffff;
    color: var(--accent);
    border: none;
    font-weight: 700;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.25);
}

.prime-card-cta:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 0 0 2px rgba(255, 255, 255, 0.35);
}

.prime-card--edu .prime-card-cta {
    color: #5b21b6;
}

@media (max-width: 900px) {
    .prime-products-row {
        grid-template-columns: 1fr;
    }
}

.services-tata {
    background: var(--bg-primary);
}

.services-subhead {
    max-width: 560px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.services-tata .section-header {
    margin-bottom: 3rem;
}

.services-tata .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
}

.services-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.services-carousel .services-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.25rem 0.1rem 0.6rem;
}

.services-carousel .services-grid::-webkit-scrollbar {
    display: none;
}

.services-carousel .service-card {
    scroll-snap-align: start;
}

.services-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.28);
    background: rgba(255, 255, 255, 0.95);
    color: #4338ca;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.services-carousel-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.services-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.services-carousel-btn--prev {
    left: -1.15rem;
}

.services-carousel-btn--next {
    right: -1.15rem;
}

.services-header {
    text-align: center;
    position: relative;
}

.services-title {
    margin-top: 0.45rem;
    color: #1e1b4b;
    letter-spacing: -0.02em;
    transform: perspective(650px) rotateX(7deg);
    transform-origin: center top;
}

.services-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8 0%, #6366f1 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.cta-tata {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 2rem;
}

.cta-tata .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: rgb(2, 0, 0);
    margin-bottom: 0.75rem;
}

.cta-tata .cta-desc {
    color: rgba(6, 0, 0, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-tata .btn-primary {
    background: #ffffff;
    color: var(--accent);
    font-weight: 700;
    border: none;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-tata .btn-primary:hover {
    background: #eef2ff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.footer-tata {
    background: var(--bg-dark);
    color: white;
    border-top: none;
}

.footer-tata .logo-text,
.footer-tata .logo-accent {
    color: white;
}

.footer-tata .footer-tagline {
    color: rgba(255,255,255,0.7);
}

.footer-tata .footer-links a {
    color: rgba(255,255,255,0.85);
}

.footer-tata .footer-links a:hover {
    color: white;
}

.footer-tata .footer-copy {
    color: rgba(255,255,255,0.6);
}

.footer-tata .admin-link {
    color: rgba(255,255,255,0.5);
}

.footer-tata .admin-link:hover {
    color: white;
}

.page-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #002ef6;
}

.page-hero .section-tag {
    color: #c4b5fd;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(34, 211, 238, 0.26) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 85%, rgba(167, 139, 250, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.product-hero .page-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
}

.product-hero-lead {
    max-width: 720px;
}

.product-hero-lead strong {
    color: #ffffff;
}

.container-narrow {
    max-width: 800px;
}

.product-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.product-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.product-overview {
    background: var(--bg-primary);
}

.product-modules {
    background: var(--bg-secondary);
}

.product-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-module-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.product-module-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px var(--accent-shadow-sm);
}

.product-module-card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 900px) {
    .product-module-card--wide {
        grid-column: span 2;
    }
}

.product-module-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.product-module-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-module-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.product-benefits {
    background: var(--bg-primary);
}

.product-benefits-inner {
    margin: 0 auto;
}

.product-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.product-benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.product-benefits-list strong {
    color: var(--text-primary);
}

.careers-hero.page-hero {
     padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #002ef6;
}

.careers-hero .section-tag {
    color: #c4b5fd;
}

.careers-hero .page-title {
    color: #ffffff;
}

.careers-hero .page-hero-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
}

.careers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(34, 211, 238, 0.26) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 85%, rgba(167, 139, 250, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.careers-hero .container {
    position: relative;
    z-index: 1;
}

.careers-hero-highlights {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.careers-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 181, 253, 0.46);
    background: rgba(30, 41, 59, 0.42);
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.careers-culture {
    background: var(--bg-primary);
    padding: 3.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.careers-culture__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.careers-culture__visual {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    background:
        linear-gradient(155deg, rgba(79, 70, 229, 0.14) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(15, 23, 42, 0.05) 100%),
        linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.careers-culture__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.careers-culture__text h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.careers-culture__text p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.careers-culture__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .careers-culture__inner {
        grid-template-columns: 1fr;
    }

    .careers-culture__visual {
        order: -1;
        min-height: 180px;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .services-carousel .services-grid {
        grid-auto-columns: calc((100% - 1.5rem) / 2);
    }
}

.parallax-wrap {
    overflow: hidden;
    border-radius: inherit;
}

.parallax-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .parallax-wrap img {
        will-change: auto;
    }
}

.why-join {
    background: var(--bg-secondary);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-join-card {
    background: var(--bg-card);
    padding: 2rem 1.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent-vibrant);
    text-align: center;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.why-join-card:hover {
    border-color: var(--accent-ring-strong);
    box-shadow: 0 12px 36px var(--accent-shadow);
    transform: translateY(-3px);
}

.why-join-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-join-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-join-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.page-careers .why-join {
    background:
        radial-gradient(90% 120% at 12% 12%, rgba(99, 102, 241, 0.1) 0%, transparent 58%),
        radial-gradient(85% 120% at 90% 100%, rgba(14, 165, 233, 0.1) 0%, transparent 62%),
        #f8faff;
}

.page-careers .why-join-card {
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-top: 3px solid #4f46e5;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.page-careers .why-join-card h3 {
    color: #1e1b4b;
}

.page-careers .position-filters {
    background: linear-gradient(160deg, #ffffff 0%, #eef3ff 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.9rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.page-careers .filter-group select,
.page-careers .filter-group input {
    border-color: rgba(99, 102, 241, 0.25);
    border-radius: 0.55rem;
    background: #ffffff;
}

.page-careers .positions-list {
    gap: 1.5rem;
}

.page-careers .position-card {
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 255, 0.96) 100%);
           display: flex;
    flex-direction: column;
    height: 100%;
}
.page-careers .position-card .position-jd {
    flex-grow: 1;
}

.page-careers .position-header {
    border-bottom-color: rgba(99, 102, 241, 0.14);
}

.page-careers .position-info h3 {
    color: #1e1b4b;
}

.page-careers .position-meta span {
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    background: rgba(99, 102, 241, 0.08);
    color: #3730a3;
}

.page-careers .salary-range {
    color: #0f766e;
}

.page-careers .position-card .btn.btn-primary {
    border-radius: 999px;
    padding-inline: 1.1rem;
     margin-top: auto;
}

.page-careers .resume-section {
    background:
        radial-gradient(90% 120% at 10% 0%, rgba(79, 70, 229, 0.09) 0%, transparent 56%),
        #f8fafc;
}

.page-careers .resume-form-wrapper {
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 245, 255, 0.95) 100%);
    padding: 1.4rem;
}

.page-careers .resume-section .section-header {
    margin-bottom: 2rem;
}

.page-careers .resume-section .section-title {
    color: #1e1b4b;
}

.page-careers .resume-section .section-desc {
    color: #475569;
}

.page-careers .resume-form {
    gap: 1.1rem;
}

.page-careers .resume-form .form-row {
    gap: 1.1rem;
}

.page-careers .resume-form .form-group label {
    color: #334155;
    font-weight: 600;
}

.page-careers .resume-form .form-group input,
.page-careers .resume-form .form-group textarea {
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 0.72rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.65) inset;
}

.page-careers .resume-form .form-group input:focus,
.page-careers .resume-form .form-group textarea:focus {
    border-color: #4f46e5;
    box-shadow:
        0 0 0 3px rgba(79, 70, 229, 0.13),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.page-careers .file-upload-label {
    border: 2px dashed rgba(79, 70, 229, 0.32);
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
    padding: 1.7rem 1.2rem;
}

.page-careers .file-upload-wrap:hover .file-upload-label,
.page-careers .file-upload-wrap:has(input:focus) .file-upload-label {
    border-color: #4f46e5;
    background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%);
}

.page-careers .file-icon {
    font-size: 2.1rem;
}

.page-careers .file-text {
    color: #475569;
    font-weight: 500;
}

.page-careers .resume-form .btn.btn-primary.btn-full {
    border-radius: 0.8rem;
    background: linear-gradient(120deg, #4f46e5 0%, #2563eb 48%, #0891b2 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.page-careers .resume-form .btn.btn-primary.btn-full:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
}

.recruitment-process {
    background: var(--bg-primary);
}

.recruitment-desc {
    max-width: 600px;
    margin: 0.5rem auto 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.process-timeline {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 3.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: var(--border);
}

.process-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content {
    padding-bottom: 2rem;
}

.process-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.process-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent);
}

.process-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.open-positions {
    background: var(--bg-secondary);
}

.position-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.filter-group select,
.filter-group input {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.9rem;
    min-width: 140px;
}

.filter-group input {
    min-width: 180px;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-results {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.position-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem 2.25rem;
    transition: border-color var(--transition), box-shadow var(--transition-slow);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.position-card:hover {
    border-color: var(--accent-ring-strong);
    box-shadow: 0 16px 40px var(--accent-shadow);
}

.position-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.position-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.position-department,
.position-location,
.position-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 0.25rem;
}

.position-salary {
    text-align: right;
}

.salary-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.salary-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.position-jd {
    margin-bottom: 1.5rem;
     max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}
.see-more-btn {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #1d4ed8;
    font-weight: 600;
    cursor: pointer;
}

.position-jd.expanded {
    max-height: none;
    overflow: visible;
}
.position-jd h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--text-primary);
}

.position-jd h4:first-child {
    margin-top: 0;
}

.position-jd p {
     max-height: 180px;
    overflow: hidden;
    position: relative;
}

.position-jd ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.position-jd li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.position-card .btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.resume-section {
    background: var(--bg-secondary);
}

.resume-section[hidden] {
    display: none !important;
}

.resume-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.careers-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    text-align: center;
}

.careers-cta-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.careers-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section {
    padding: var(--section-padding);
}

.section .container {
    max-width: var(--container-max);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
}

.about {
    background: var(--bg-primary);
}

.about-preview {
    background: var(--bg-secondary);
}

.about-preview .section-header {
    margin-bottom: 2.5rem;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-preview-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-preview-content {
    text-align: left;
}

.about-preview-content p {
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-lead-corporate {
    line-height: 1.7;
}

.about-preview-content .btn {
    margin-top: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
    list-style: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

.about-visual img.about-team-img {
    width: 100%;
    border-radius: 0.5rem;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/10;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.page-about .about {
    background:
        radial-gradient(100% 80% at 10% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
        radial-gradient(110% 90% at 90% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 52%),
        #f8fafc;
}

.page-about .about-content {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(99, 102, 241, 0.14);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.page-about .about-grid {
    max-width: 1180px;
    gap: 3.25rem;
}

.page-about .about-content p {
    text-align: justify;
    font-size: 1.06rem;
    line-height: 1.85;
}

.page-about .about-lead {
    font-size: 1.12rem;
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0 1.5rem;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background: rgba(99, 102, 241, 0.08);
    color: #3730a3;
    font-size: 0.78rem;
    font-weight: 600;
}

.page-about .about-stats li {
    min-width: 130px;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.14);
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 100%);
}

.page-about .about-visual {
    position: relative;
}

.about-visual-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    padding: 0.36rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #e0e7ff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-about .code-block {
    border-radius: 0.75rem;
}

.page-about .code-block pre {
    font-size: 0.98rem;
    line-height: 1.65;
}

.code-block {
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-dot:nth-child(1) { background: #ef4444; }
.code-dot:nth-child(2) { background: #eab308; }
.code-dot:nth-child(3) { background: #22c55e; }

.code-title {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.code-block pre {
    padding: 1.25rem;
    overflow-x: auto;
}

.code-block code {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.code-keyword { color: #7c3aed; }
.code-function { color: var(--accent); }
.code-string { color: #059669; }

.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all var(--transition-slow);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-shadow-sm);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card-more {
    margin-top: 1rem;
    margin-bottom: 0;
}

.service-card-more a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.service-card-more a:hover {
    color: var(--accent-hover);
}

.services-preview .services-grid {
    margin-bottom: 2rem;
}

.section-cta {
    text-align: center;
    margin-top: 1rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.expertise {
    background:
        radial-gradient(80% 140% at 10% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 52%),
        radial-gradient(85% 120% at 90% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 56%),
        linear-gradient(180deg, #f8faff 0%, #f4f7ff 100%);
}

.page-about .expertise .section-header {
    margin-bottom: 2rem;
}

.page-about .expertise .section-tag {
    background: #111827;
    border: 1px solid #111827;
    color: #ffffff;
}

.page-about .expertise .section-title {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #0f172a;
    text-shadow: none;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    max-width: 980px;
    margin: 0 auto;
}

.tech-tag {
    position: relative;
    overflow: hidden;
    padding: 0.62rem 1.12rem;
    background: linear-gradient(140deg, #ffffff 0%, #eef3ff 100%);
    border: 1px solid rgba(99, 102, 241, 0.24);
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #3730a3;
    box-shadow:
        0 6px 16px rgba(79, 70, 229, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.tech-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.75) 50%, transparent 85%);
    transform: translateX(-115%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.tech-tag:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(14, 116, 144, 0.45);
    color: #0f172a;
    box-shadow: 0 10px 22px rgba(30, 41, 59, 0.16);
}

.tech-tag:hover::before {
    transform: translateX(115%);
}

.tech-tag:nth-child(3n) {
    background: linear-gradient(140deg, #eff6ff 0%, #e0f2fe 100%);
    border-color: rgba(2, 132, 199, 0.28);
    color: #155e75;
}

.tech-tag:nth-child(4n) {
    background: linear-gradient(140deg, #eef2ff 0%, #ede9fe 100%);
    border-color: rgba(79, 70, 229, 0.28);
    color: #3730a3;
}

.tech-tag:nth-child(5n) {
    background: linear-gradient(140deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: rgba(22, 163, 74, 0.28);
    color: #166534;
}

.gallery {
    background: var(--bg-secondary);
}

.gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery.gallery-empty {
    display: none;
}

.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.page-contact .contact {
    background:
        radial-gradient(85% 120% at 8% 8%, rgba(99, 102, 241, 0.1) 0%, transparent 58%),
        radial-gradient(85% 120% at 92% 96%, rgba(14, 165, 233, 0.1) 0%, transparent 60%),
        #f8faff;
}

.page-contact .contact-wrapper {
    max-width: 1080px;
    gap: 2rem;
}

.page-contact .contact-info {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.92) 100%);
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 1rem;
    padding: 1.75rem 1.6rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.page-contact .contact-heading {
    font-size: 1.34rem;
    color: #1e1b4b;
    margin-bottom: 0.75rem;
}

.page-contact .contact-lead {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.68;
}

.page-contact .contact-details {
    margin-top: 1.15rem;
    gap: 0.85rem;
}

.page-contact .contact-item {
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(99, 102, 241, 0.13);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
}

.page-contact .contact-label {
    color: #6366f1;
    font-weight: 600;
}

.page-contact .contact-form {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.96) 100%);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 1rem;
    padding: 1.75rem 1.6rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.page-contact .contact-form .form-group label {
    color: #334155;
    font-weight: 600;
}

.page-contact .contact-form .form-group input,
.page-contact .contact-form .form-group textarea {
    border-color: rgba(99, 102, 241, 0.25);
    border-radius: 0.72rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.page-contact .contact-form .form-group input:focus,
.page-contact .contact-form .form-group textarea:focus {
    border-color: #4f46e5;
    box-shadow:
        0 0 0 3px rgba(79, 70, 229, 0.14),
        0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.page-contact .contact-form .btn.btn-primary.btn-full {
    border-radius: 0.8rem;
    background: linear-gradient(120deg, #4f46e5 0%, #2563eb 48%, #0891b2 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.page-contact .contact-form .btn.btn-primary.btn-full:hover {
    transform: translateY(-1px);
    filter: saturate(1.06);
}

.page-contact .careers-cta-box {
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 1rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.9) 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.form-status {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 0;
}

.form-status.form-status--success {
    color: var(--accent);
}

.form-status.form-status--error {
    color: #c53030;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-focus);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.resume-upload-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.resume-upload-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.resume-upload-section .section-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resume-upload-section .section-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    text-align: center;
}

.resume-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resume-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.file-upload-wrap {
    position: relative;
}

.file-upload-wrap input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.file-upload-wrap:hover .file-upload-label,
.file-upload-wrap:has(input:focus) .file-upload-label {
    border-color: var(--accent);
    background: var(--accent-muted);
}

.file-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.file-name {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.file-upload-wrap.has-file .file-upload-label {
    border-style: solid;
    border-color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-muted);
}

.btn-secondary.btn-tata-outline {
    background: rgba(8, 16, 24, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.98);
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 0 28px rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.btn-secondary.btn-tata-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 0 36px rgba(255, 255, 255, 0.18);
}

.prime-card .prime-card-cta.btn-primary {
    padding: 0.62rem 1.05rem;
    font-size: 0.88rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.32),
                0 0 0 2px rgba(255, 255, 255, 0.28);
}
.prime-card .prime-card-cta.btn-primary:hover {
    background: #1e40af;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.38),
        0 0 0 2px rgba(255, 255, 255, 0.34);
}

.prime-card--medi .prime-card-cta.btn-primary:hover {
    background: #1e40af;
}

.prime-card--edu .prime-card-cta.btn-primary {
    color: #ffffff;
}

.prime-card--edu .prime-card-cta.btn-primary:hover {
    background: #5b21b6;
    color: #ffffff;
}

.btn-full {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    display: none;
}

.hero-glow {
    display: none;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-ring);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-tata .hero-subtitle-tata {
    color: rgba(255, 255, 255, 0.94);
    margin: 0 0 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-content {
    text-align: center;
}

.logo-footer {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.logo-footer .logo-img {
    height: 1.75rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-link {
    margin-left: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.admin-link:hover {
    color: var(--accent);
}

/* .footer.footer-tata {
    background: var(--bg-dark);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 0 2.75rem;
}

.footer.footer-tata .footer-content--tata {
    display: grid;
    grid-template-areas:
        "brand"
        "nav"
        "legal";
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.footer.footer-tata .footer-brand {
    grid-area: brand;
}

.footer.footer-tata .footer-brand .logo-footer {
    margin-bottom: 0.85rem;
}

.footer.footer-tata .footer-tagline {
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto;
    max-width: 28rem;
}

.footer.footer-tata .footer-nav {
    grid-area: nav;
}

.footer.footer-tata .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1.25rem;
    row-gap: 0.75rem;
    margin-bottom: 0;
}

.footer.footer-tata .footer-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.2rem 0;
    transition: color var(--transition), opacity var(--transition);
}

.footer.footer-tata .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer.footer-tata .footer-legal {
    grid-area: legal;
    padding-top: 1.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer.footer-tata .footer-copy {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.footer.footer-tata .admin-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    transition: color var(--transition);
}

.footer.footer-tata .admin-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer.footer-tata .footer-content:not(.footer-content--tata) > .footer-copy {
    padding-top: 1.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 900px) {
    .footer.footer-tata .footer-content--tata {
        grid-template-areas:
            "brand nav"
            "legal legal";
        grid-template-columns: minmax(220px, 320px) 1fr;
        gap: 1.5rem 2.5rem;
        align-items: start;
        text-align: left;
        max-width: none;
    }

    .footer.footer-tata .footer-brand {
        text-align: left;
    }

    .footer.footer-tata .footer-brand .footer-tagline {
        margin-left: 0;
        margin-right: 0;
    }

    .footer.footer-tata .footer-nav .footer-links {
        justify-content: flex-end;
    }

    .footer.footer-tata .footer-legal {
        text-align: center;
        padding-top: 2rem;
    }
} */
 .footer.footer-tata {
    background: var(--bg-dark);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Extra space remove karnyasaathi padding kami keli ahe */
    padding: 1.25rem 0 0.75rem;
}

.footer.footer-tata .footer-content--tata {
    display: grid;
    grid-template-areas:
        "brand"
        "nav"
        "legal";
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.footer.footer-tata .footer-brand {
    grid-area: brand;
}

.footer.footer-tata .footer-brand .logo-footer {
    margin-bottom: 0.85rem;
}

.footer.footer-tata .footer-tagline {
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto;
    max-width: 28rem;
}

.footer.footer-tata .footer-nav {
    grid-area: nav;
}

.footer.footer-tata .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem 1.25rem;
    row-gap: 0.75rem;
    margin-bottom: 0;
}

.footer.footer-tata .footer-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.2rem 0;
    transition: color var(--transition), opacity var(--transition);
}

.footer.footer-tata .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer.footer-tata .footer-legal {
    grid-area: legal;
    /* Copyright chya varchi space kami karnyasaathi */
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer.footer-tata .footer-copy {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.footer.footer-tata .admin-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    transition: color var(--transition);
}

.footer.footer-tata .admin-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer.footer-tata .footer-content:not(.footer-content--tata) > .footer-copy {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 900px) {
    .footer.footer-tata .footer-content--tata {
        grid-template-areas:
            "brand nav"
            "legal legal";
        grid-template-columns: minmax(220px, 320px) 1fr;
        gap: 1.5rem 2.5rem;
        align-items: start;
        text-align: left;
        max-width: none;
    }

    .footer.footer-tata .footer-brand {
        text-align: left;
    }

    .footer.footer-tata .footer-brand .footer-tagline {
        margin-left: 0;
        margin-right: 0;
    }

    .footer.footer-tata .footer-nav .footer-links {
        justify-content: flex-end;
    }

    .footer.footer-tata .footer-legal {
        text-align: center;
        /* Desktop madhe pan space kami keli */
        padding-top: 0.75rem;
    }
}

.gallery-empty-msg {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    display: none;
}

.gallery-empty-msg a {
    color: var(--accent);
}

.gallery-empty-msg a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.35rem 0;
    }

    .top-bar-pill {
        min-width: 0;
        padding: 0;
    }

    .top-bar-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.06em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 52vw;
    }

    .top-bar-social {
        flex-shrink: 0;
    }

    .top-bar-social-link {
        width: 1.85rem;
        height: 1.85rem;
    }

    .top-bar-social-link svg {
        width: 13px;
        height: 13px;
    }

    .services-carousel .services-grid {
        grid-auto-columns: 100%;
        gap: 1rem;
    }

    .services-carousel-btn--prev {
        left: -0.45rem;
    }

    .services-carousel-btn--next {
        right: -0.45rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 6.5rem;
        left: 0;
        right: 0;
        z-index: 99;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links > li > a {
        width: 100%;
        justify-content: flex-start;
        border-radius: 0.65rem;
        padding: 0.75rem 1rem;
    }

    .nav-item--has-mega {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item--has-mega > a::after {
        margin-left: auto;
    }

    .mega-menu {
        position: static;
        left: auto;
        transform: none !important;
        min-width: 0;
        padding: 0.5rem 0 0;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 0.85rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        box-shadow: none;
    }

    .mega-menu-intro {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .mega-menu-links {
        grid-template-columns: 1fr;
    }

    .mega-menu-group--highlight {
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-inner {
        grid-template-columns: 1fr;
        grid-template-areas: "img" "content" !important;
        min-height: auto;
    }

    .featured-left .featured-inner,
    .featured-right .featured-inner {
        grid-template-areas: "img" "content" !important;
    }

    .featured-image {
        min-height: 280px;
    }

    .page-home .featured-image,
    .page-home .featured-left .featured-image,
    .page-home .featured-right .featured-image,
    .page-home .featured-section:hover .featured-image {
        transform: none;
        box-shadow:
            0 10px 24px rgba(15, 23, 42, 0.16),
            0 1px 0 rgba(255, 255, 255, 0.3) inset;
    }

    .featured-title-3d {
        transform: none;
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.88),
            0 2px 8px rgba(79, 70, 229, 0.18);
    }

    .featured-content {
        padding: 2.5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step {
        gap: 1rem;
    }

    .process-step:not(:last-child)::after {
        left: 1rem;
        top: 3rem;
    }

    .process-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .process-content {
        padding-bottom: 1.5rem;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .page-about .about-content {
        padding: 1.4rem;
    }

    .page-about .about-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .page-about .about-lead {
        font-size: 1.04rem;
    }

    .about-visual {
        order: -1;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .page-about .about-stats li {
        min-width: 120px;
    }

    .expertise-tags {
        gap: 0.7rem;
    }

    .tech-tag {
        padding: 0.54rem 0.9rem;
        font-size: 0.88rem;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-preview-image {
        order: -1;
        max-height: 300px;
        aspect-ratio: 16/9;
    }

    .about-preview-content {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .resume-form .form-row {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-salary {
        text-align: left;
    }

    .position-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .positions-list {
        grid-template-columns: 1fr;
    }

    .filter-group select,
    .filter-group input {
        min-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer.footer-tata {
        padding: 2.75rem 0 2.25rem;
    }

    .footer.footer-tata .footer-content--tata {
        gap: 1.5rem;
        max-width: none;
    }

    .footer.footer-tata .footer-links {
        gap: 0.45rem 0.85rem;
        row-gap: 0.6rem;
    }

    .footer.footer-tata .footer-links a {
        padding: 0.35rem 0.15rem;
    }

    .footer.footer-tata .footer-legal {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 4rem 0;
    }

    .hero-corporate {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }
    .page-hero-desc {
        font-size: 1rem;
    }
    .btn-primary, .btn-secondary, .btn-lg {
        width: 100%;
        text-align: center;
    }
}

.anim-banner {
    position: relative;
    z-index: 50;
    background: linear-gradient(90deg, #312e81 0%, #4f46e5 32%, #0891b2 58%, #6366f1 100%);
    background-size: 200% 100%;
    animation: anim-banner-gradient 12s ease infinite;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

@keyframes anim-banner-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.anim-banner-inner {
    overflow: hidden;
    padding: 0.55rem 0;
}

.anim-banner-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: anim-banner-scroll 45s linear infinite;
    white-space: nowrap;
}

@keyframes anim-banner-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.anim-banner-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.02em;
}

.anim-banner-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(196, 181, 253, 0.95);
    flex-shrink: 0;
    animation: anim-banner-pulse 2s ease-in-out infinite;
}

@keyframes anim-banner-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-bg-img--ken {
    animation: hero-ken-burns 28s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes hero-ken-burns {
    0% { transform: scale(1); }
    100% { transform: scale(1.07); }
}

.hero-bg-overlay--pulse {
    animation: hero-overlay-breathe 10s ease-in-out infinite;
}

@keyframes hero-overlay-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.88; }
}

.hero-content--animate > * {
    opacity: 0;
    animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content--animate .hero-heading-tata {
    animation-delay: 0.08s;
}

.hero-content--animate .hero-subtitle-tata {
    animation-delay: 0.24s;
}

.hero-content--animate .hero-cta {
    animation-delay: 0.4s;
}

.hero-content--animate .hero-flagship {
    animation-delay: 0.54s;
}

@keyframes hero-enter {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-bar {
        animation: none;
        background: linear-gradient(135deg, #312e81 0%, #4f46e5 55%, #0e7490 100%);
    }

    .anim-banner {
        animation: none;
        background: var(--accent);
    }

    .anim-banner-track {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 1rem;
        white-space: normal;
        text-align: center;
        gap: 0.5rem 1rem;
    }

    .anim-banner-track > *:nth-child(n + 9) {
        display: none;
    }

    .anim-banner-dot {
        display: none;
    }

    .hero-bg-img--ken,
    .hero-bg-overlay--pulse {
        animation: none;
    }

    .hero-bg-video {
        display: none;
    }

    .hero-heading__text {
        transform: none;
        filter:
            drop-shadow(0 2px 0 rgba(67, 56, 202, 0.45))
            drop-shadow(0 4px 0 rgba(30, 27, 75, 0.4))
            drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
    }

    .hero-content--animate > * {
        opacity: 1;
        animation: none;
        transform: none;
    }

    .stats-grid .stat-item,
    .stats-grid.is-visible .stat-item {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .stats-grid.is-visible .stat-number {
        animation: none;
    }

    .prime-card-badge--medi,
    .prime-card-badge--edu {
        animation: none;
    }

    .site-video-corner {
        animation: none;
    }
}

.site-video-corner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: calc(100vw - 2rem);
    width: max-content;
    animation: site-video-corner-in 0.5s ease 0.6s both;
}

.site-video-corner__stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.site-video-corner[hidden] {
    display: none !important;
}

@keyframes site-video-corner-in {
    from {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.site-video-corner__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.65rem 0.5rem 0.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    box-shadow: 0 8px 28px rgba(10, 22, 40, 0.12);
    transition: box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
    color: inherit;
}

.site-video-corner__link:hover {
    border-color: var(--accent-ring-strong);
    box-shadow: 0 12px 36px var(--accent-shadow-lg);
}

.site-video-corner__thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 68px;
    border-radius: 0.4rem;
    overflow: hidden;
    background: var(--bg-dark);
}

.site-video-corner__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-video-corner__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 40, 0.35);
    color: white;
    transition: background var(--transition);
}

.site-video-corner__link:hover .site-video-corner__play {
    background: rgba(196, 48, 43, 0.65);
}

.site-video-corner__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-right: 0.25rem;
    text-align: left;
}

.site-video-corner__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.site-video-corner__sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.site-video-corner__close {
    position: absolute;
    top: -0.35rem;
    right: -0.35rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--bg-dark);
    color: white;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background var(--transition);
}

.site-video-corner__close:hover {
    background: var(--text-primary);
}

.page-home {
    --home-unified-bg: linear-gradient(180deg, #eef2ff 0%, #e9efff 55%, #e6f0ff 100%);
}

.page-home main > section:not(.hero) {
    background: var(--home-unified-bg) !important;
}

.page-home .featured-content,
.page-home .featured-alt .featured-content {
    background: transparent !important;
}

.page-home .cta-tata {
    color: var(--text-primary);
}

.page-home .cta-tata .cta-title {
    color: var(--text-primary);
}

.page-home .cta-tata .cta-desc {
    color: var(--text-secondary);
}

.page-home .cta-tata .btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.24);
}

.page-home .cta-tata .btn-primary:hover {
    background: var(--accent-hover);
}

.section .section-tag,
.page-hero .section-tag {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.section .section-title {
    font-size: clamp(1.45rem, 2.6vw, 2.05rem);
    line-height: 1.22;
}

.section .section-desc,
.page-hero .page-hero-desc {
    font-size: 0.96rem;
    line-height: 1.62;
}

.section p,
.section li {
    font-size: 0.95rem;
    line-height: 1.62;
}

.section h3 {
    font-size: 1.08rem;
    line-height: 1.32;
}

.section h4 {
    font-size: 0.98rem;
    line-height: 1.35;
}

.section .btn {
    font-size: 0.94rem;
}

@media (max-width: 768px) {
    .section .section-title {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }

    .section p,
    .section li,
    .section .section-desc,
    .page-hero .page-hero-desc {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .site-video-corner__thumb-wrap {
        width: 96px;
        height: 54px;
    }

    .site-video-corner__label {
        font-size: 0.82rem;
    }

    .site-video-corner__sub {
        font-size: 0.7rem;
    }
}
.product-row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.product-row .product-overview,
.product-row .product-video {
    flex: 1;
}

.product-row .section {
    padding: 0;
}

.video-wrapper video {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
    }
}

.product-benefits-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
    padding-left: 20px;
}

.product-benefits-list li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.product-benefits-list li::before {
    position: absolute;
    left: 0;
    color: #007bff;
}

@media (max-width: 992px) {
    .product-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-benefits-list {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Mobile Menu Toggle Styles (UPDATED FOR TABLETS - 1024px)
   ========================================================= */

.header { overflow: visible !important; }

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        z-index: 99999 !important;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex !important;
        padding: 10px 0;
    }

    .nav-links li {
        text-align: center;
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #333 !important;
        font-weight: 600;
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f9f9f9;
    }

    .nav-links a:hover {
        color: #00a0ef !important;
        background-color: #f1f1f1;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 100000 !important;
    }
    
    .desktop-menu { display: none !important; }
}

.process-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Job Card मधील प्रत्येक हेडिंग आणि पॅराग्राफ सुंदर करण्यासाठी */
.jd-content h4 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.jd-content p {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    background: #f8fafc; /* फिकट बॅकग्राउंड */
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 3px solid #2563eb; /* निळी बारीक लाईन */
}

.jd-content ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.jd-content li {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}


/* ============ JOB OPPORTUNITY CARD PREMIUM UI ============ */

/* Job Description cha box agdi Responsibilities sarkha banvanyasathi */
.jd-content .jd-box-desc {
    background-color: transparent; /* background color kadhla */
    border: none; /* juna border kadhla */
    padding: 0; /* padding normal kela */
    margin: 0 0 15px 0;
    padding-left: 20px; /* list sarkhi left padding */
    display: block;
    position: relative;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Job Description chya aatmadhe exact list sarkha bullet dot dakhvanyasathi */
.jd-content .jd-box-desc::before {
    content: "•"; /* Bullet icon */
    color: #475569; /* Bullet cha color list sarkha */
    font-size: 18px;
    position: absolute;
    left: 5px;
    top: -2px;
}

/* Headings (Job Description, Responsibilities, Requirements) chi styling */
.jd-content h4 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

/* Responsibilities ani Requirements chya lists sathi */
.jd-content ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.jd-content li {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ============ SALARY SECTION BEAUTIFICATION ============ */
.position-salary-badge {
    display: flex;
    align-items: center;
    background: #f0fdf4; /* Light green background */
    border: 1px solid #bbf7d0;
    padding: 10px 16px;
    border-radius: 10px;
    gap: 12px;
}

.salary-icon {
    font-size: 22px;
}

.salary-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.salary-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #16a34a;
    font-weight: 700;
}

.salary-val {
    font-size: 16px;
    font-weight: 700;
    color: #15803d;
}