/*
Theme Name: Technocon Group One-Page Theme
Theme URI: https://technocongroup.com
Author: Technocon Development Team
Author URI: https://technocongroup.com
Description: High-performance, fully customizable dynamic one-page WordPress theme for Technocon Group of Companies. Built with custom admin options for 100% editable content, Three.js 3D background, GSAP scroll triggers, and responsive glassmorphic UI.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: technocon-theme
*/

/* Extracted custom styles for Technocon Group */
html {
  scroll-behavior: smooth;
}
body {
  background: #252A6E;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #1A1D4E;
}
::-webkit-scrollbar-thumb {
  background: #60A5FA;
  border-radius: 3px;
}
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.text-grad-blue {
  background: linear-gradient(135deg, #FFFFFF 0%, #BFDBFE 50%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-white {
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-warm {
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-grad-cyan {
  background: linear-gradient(135deg, #BAE6FD 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}
.btn-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-blue:hover::before {
  opacity: 1;
}
.btn-blue:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.55);
}
.btn-blue span {
  position: relative;
  z-index: 1;
}
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #FFFFFF;
}
.btn-outline:hover {
  border-color: #60A5FA;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}
.perspective-wrap {
  perspective: 1200px;
  perspective-origin: 50% 50%;
}
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-3d:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg) scale(1.015);
}
.card-3d .card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(59, 130, 246, 0.1), transparent 40%);
  pointer-events: none;
  z-index: 2;
}
.card-3d .card-edge-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
  transform: translateZ(40px);
  opacity: 0;
  transition: opacity 0.5s;
}
.card-3d:hover .card-edge-top {
  opacity: 1;
}
.card-3d .card-edge-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  transform: translateZ(40px);
  opacity: 0;
  transition: opacity 0.5s;
}
.card-3d:hover .card-edge-left {
  opacity: 1;
}
.flip-3d {
  perspective: 1200px;
}
.flip-inner {
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  position: relative;
}
.flip-3d:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  backface-visibility: hidden;
  position: absolute;
  inset: 0;
}
.flip-back {
  transform: rotateY(180deg);
}
.tilt-3d {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.parallax-depth {
  will-change: transform;
}
.floating {
  animation: float 6s ease-in-out infinite;
}
.floating-d {
  animation: float 6s ease-in-out 2s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.rotate-slow {
  animation: rotateSlow 25s linear infinite;
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
}
.nav-link {
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #252A6E, #707AE8);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 1px;
}
.nav-link:hover {
  color: #707AE8;
}
.nav-link:hover::after {
  width: 100%;
}
.section-reveal {
  opacity: 0;
  transform: translateY(50px);
}
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.toast {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.hero-bg-overlay {
  background: linear-gradient(135deg, rgba(37, 42, 110, 0.92) 0%, rgba(37, 42, 110, 0.6) 50%, rgba(26, 30, 80, 0.95) 100%);
}
.glass-card {
  background: rgba(27, 31, 85, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.custom-modal {
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.custom-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.custom-modal .modal-content-wrap {
  transform: scale(0.95) translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.custom-modal.active .modal-content-wrap {
  transform: scale(1) translateY(0);
}
.stat-card {
  background: rgba(27, 31, 85, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}
.project-card {
  background: rgba(27, 31, 85, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
  border-color: rgba(96, 165, 250, 0.35);
}
.project-card:hover .project-img {
  transform: scale(1.08);
}
.project-img {
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.news-card {
  background: rgba(27, 31, 85, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}
.career-card {
  background: rgba(27, 31, 85, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.career-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
  transform: translateY(-3px);
}
.leader-card {
  background: rgba(27, 31, 85, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(96, 165, 250, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.1);
  border-color: rgba(96, 165, 250, 0.15);
}
.csr-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(6, 182, 212, 0.06);
  background: rgba(17, 19, 28, 0.7);
  backdrop-filter: blur(16px);
}
.csr-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 16px 50px rgba(6, 182, 212, 0.1);
  transform: translateY(-6px);
}
.tl-item {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.tl-item.from-left {
  transform: translateX(-80px) rotateY(8deg);
}
.tl-item.from-right {
  transform: translateX(80px) rotateY(-8deg);
}
.tl-item.visible {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}
.tl-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0a0c14;
  border: 3px solid rgba(92, 103, 222, 0.35);
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 0 4px #0a0c14;
}
.tl-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.6s;
}
.tl-item.visible .tl-dot {
  border-color: #707AE8;
  box-shadow: 0 0 0 6px rgba(37, 42, 110, 0.3), 0 0 24px rgba(92, 103, 222, 0.4);
  transform: scale(1.15);
}
.tl-item.visible .tl-dot::after {
  background: #252A6E;
}
.tl-item.visible .tl-dot.warm-dot {
  border-color: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.1), 0 0 24px rgba(245, 158, 11, 0.25);
}
.tl-item.visible .tl-dot.warm-dot::after {
  background: #f59e0b;
}
.tl-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(96, 165, 250, 0.06);
  background: rgba(17, 19, 28, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.tl-card:hover {
  border-color: rgba(96, 165, 250, 0.18);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.1);
  transform: translateY(-6px) rotateX(2deg);
}
.tl-year-badge {
  transition: all 0.5s;
}
.timeline-vertical-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.05) 0%, rgba(96, 165, 250, 0.8) 12%, rgba(147, 197, 253, 1) 50%, rgba(96, 165, 250, 0.8) 88%, rgba(96, 165, 250, 0.05) 100%);
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.6), 0 0 4px rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  z-index: 1;
}
.timeline-traveling-bead {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 28px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 0 16px #60a5fa, 0 0 30px #3b82f6, 0 0 50px rgba(96, 165, 250, 0.9);
  animation: travelLightFlow 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes travelLightFlow {
  0% { top: 0%; opacity: 0; transform: translate(-50%, 0) scale(0.6); }
  6% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  94% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  100% { top: 100%; opacity: 0; transform: translate(-50%, 0) scale(0.6); }
}
@keyframes travelLight {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
.comp-card-img {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.55) saturate(0.9);
}
.comp-card:hover .comp-card-img {
  transform: scale(1.1);
  filter: brightness(0.75) saturate(1.1);
}
.name-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.name-marquee-wrap::before, .name-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.name-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 12, 20, 0.8), transparent);
}
.name-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(10, 12, 20, 0.8), transparent);
}
.name-marquee-track {
  display: flex;
  animation: nameMarquee 60s linear infinite;
  width: max-content;
}
.name-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes nameMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.name-chip {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 100px;
  background: rgba(17, 19, 28, 0.5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.name-chip:hover {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(59, 130, 246, 0.06);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-3px) scale(1.03);
}
.name-chip .chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.orbital-ring {
  border: 1px solid rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  position: absolute;
  animation: rotateSlow 20s linear infinite;
}
.orbital-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.5);
}
.grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 300px;
  background: linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(70deg);
  transform-origin: bottom center;
  pointer-events: none;
}
.form-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.3s;
}
.form-input:focus {
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
select.form-input {
  background-color: #11131c !important;
  color: #ffffff !important;
  font-size: 14px;
  padding-right: 42px !important;
  cursor: pointer;
}
select.form-input option {
  background-color: #1A1D4E !important;
  color: #ffffff !important;
  font-size: 14px;
  padding: 12px 14px;
}
select.form-input option[disabled] {
  color: #94A3B8 !important;
}
select.form-input option:checked,
select.form-input option:hover,
select.form-input option:focus {
  background-color: #2563eb !important;
  color: #ffffff !important;
}
.custom-select-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2360A5FA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px 16px !important;
}
.nav-scrolled {
  background: rgba(37, 42, 110, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.sec-alt {
  background: rgba(22, 26, 72, 0.5);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1 !important;
  }
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
