/* ============================================================
   HOME PAGE REVAMP CSS
   All rules scoped under .ta-home-revamp to avoid conflicts
   ============================================================ */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== GLASS HERO SECTION ===== */
.ta-home-revamp .glass {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #fff8f0 0%, #ffffff 60%),
              radial-gradient(ellipse at 20% 80%, #fff3e0 0%, transparent 50%);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Subtle animated grid background */
.ta-home-revamp .glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Glow blobs */
.ta-home-revamp .glass::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 153, 32, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.ta-home-revamp .glass .ai-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 20px;
}

.ta-home-revamp .glass .hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.ta-home-revamp .glass .hero-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .glass .hero-content h1 span {
  color: #ef9920;
}

.ta-home-revamp .glass .hero-content p {
  font-size: 18px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ta-home-revamp .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
}

.ta-home-revamp .hero-buttons .btn {
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  gap: 8px;
}

.ta-home-revamp .hero-buttons .btn.primary {
  background: #ef9920;
  color: #fff;
  border: 2px solid #ef9920;
  box-shadow: 0 4px 14px rgba(239, 153, 32, 0.25);
}

.ta-home-revamp .hero-buttons .btn.primary:hover {
  background: #d4870e;
  border-color: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 153, 32, 0.4);
}

.ta-home-revamp .hero-buttons .btn.secondary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.ta-home-revamp .hero-buttons .btn.secondary:hover {
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ===== AI SECTION ===== */
.ta-home-revamp .ai-section-wrapper {
  position: relative;
  background: #ffffff;
  color: #0f172a;
  overflow: hidden;
  padding: 100px 5%;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.ta-home-revamp .ai-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 0;
}

.ta-home-revamp .ai-section-wrapper .bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, #fafaff, transparent 55%),
    radial-gradient(circle at 75% 70%, #f9feff, transparent 55%);
  filter: blur(140px);
  animation: homeGradientMove 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes homeGradientMove {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -40px) scale(1.1); }
}

.ta-home-revamp .ai-section-wrapper canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .6;
  pointer-events: none;
}

.ta-home-revamp .ai-section-wrapper .ai-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
}

.ta-home-revamp .intro span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #f97316;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.ta-home-revamp .ai-section-wrapper .intro h1 {
  font-size: 42px;
  margin-top: 8px;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 560px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0f172a;
}

.ta-home-revamp .ai-section-wrapper .intro p {
  margin-top: 20px;
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}

.ta-home-revamp .intro-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  margin-top: 24px;
  cursor: pointer;
}

.ta-home-revamp .intro-btn:hover {
  background: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(239, 153, 32, 0.4);
  color: #fff;
  text-decoration: none;
}

.ta-home-revamp .ai-section-wrapper .robot {
  display: flex;
  justify-content: center;
  position: relative;
}

.ta-home-revamp .ai-section-wrapper .robot::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fff3e8, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.ta-home-revamp .ai-section-wrapper .robot img {
  width: 420px;
  max-width: 100%;
  animation: homeAiFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes homeAiFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ===== ABOUT SECTION ===== */
.ta-home-revamp .about-style {
  background: #ffffff;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: center;
}

.ta-home-revamp .about-text h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0b132b;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.ta-home-revamp .about-text .highlight {
  color: #ef9920;
}

.ta-home-revamp .about-text p,
.ta-home-revamp .about-text .text-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.ta-home-revamp .btn-readmore {
  background: none;
  border: none;
  color: #ef9920;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  padding: 0;
  margin-top: 6px;
}

.ta-home-revamp .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0 45px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f7f9fc 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.ta-home-revamp .stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ta-home-revamp .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.ta-home-revamp .stat h3 {
  font-size: 44px;
  color: #0b132b;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -1px;
}

.ta-home-revamp .stat h3 span {
  color: #ef9920;
}

.ta-home-revamp .stat p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.ta-home-revamp .about-continuation-text p {
  color: #555;
  line-height: 1.8;
  margin-top: 24px;
  font-size: 15px;
}

.ta-home-revamp .about-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ta-home-revamp .about-btn:hover {
  background: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(239, 153, 32, 0.4);
  color: #fff;
  text-decoration: none;
}

/* 3 columns with 2 cards in each */
.ta-home-revamp .about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ta-home-revamp .about-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #ef9920;
}

.ta-home-revamp .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(239, 153, 32, 0.08);
  border-color: #ef9920;
}

.ta-home-revamp .about-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b132b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

/* .ta-home-revamp .about-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef9920;
  flex-shrink: 0;
} */

.ta-home-revamp .about-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555555;
  margin: 0 !important;
}

/* ===== CONTAINER ===== */
.ta-home-revamp .container {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.ta-home-revamp .solutions {
  background: #ffffff;
  padding: 40px 0 80px;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .solutions h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .solutions h2 span {
  color: #ef9920;
}

.ta-home-revamp .solutions .subtitle {
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  text-align: center;
}

.ta-home-revamp .solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ta-home-revamp .solution-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #f0efef;
  display: block;
}

.ta-home-revamp .solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background-color: #ef9920;
  text-decoration: none;
}

.ta-home-revamp .solution-card:hover h3,
.ta-home-revamp .solution-card:hover p {
  color: #fff;
}

.ta-home-revamp .solution-card .icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.ta-home-revamp .solution-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.ta-home-revamp .solution-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* ===== PRODUCTS SECTION ===== */
.ta-home-revamp .products {
  padding: 80px 0;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

/* Products header style is now defined under unified headers */

.ta-home-revamp .products__header h2,
.ta-home-revamp .products .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .products .section-title span {
  color: #ef9920;
}

.ta-home-revamp .products__header p,
.ta-home-revamp .solutions__header p {
  font-size: 16px;
  color: #64748b;
  text-align: center;
}

.ta-home-revamp .products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ta-home-revamp .product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid #f0efef;
}

.ta-home-revamp .product-card:hover {
  background: #ef9920;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(239, 153, 32, 0.3);
}

.ta-home-revamp .product-card:hover h3,
.ta-home-revamp .product-card:hover p,
.ta-home-revamp .product-card:hover a,
.ta-home-revamp .product-card:hover span {
  color: #fff;
}

.ta-home-revamp .product-card:hover .btn-dark {
  background-color: #fff;
  color: #0f172a;
}

.ta-home-revamp .product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .product-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.ta-home-revamp .btn-dark {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background-color: #ff8f07;
  border-radius: 6px;
  padding: 10px 18px;
  transition: all 0.3s ease;
  width: fit-content;
}

.ta-home-revamp .products .cta {
  margin-top: 48px;
  text-align: center;
}

.ta-home-revamp .products .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ta-home-revamp .products .btn:hover {
  background: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 152, 18, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ===== BADGE SLIDER ===== */
.ta-home-revamp .badge-section {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .badge-section h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

.ta-home-revamp .badge-section h2 span {
  color: #ef9920;
}

.ta-home-revamp .badge-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: homeBadgeScroll 60s linear infinite;
}

.ta-home-revamp .badge-section:hover .badge-track {
  animation-play-state: paused;
}

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

.ta-home-revamp .badge {
  min-width: 160px;
  height: 90px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ta-home-revamp .badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ta-home-revamp .badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.ta-home-revamp .badge a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

/* ===== BLOG SECTION ===== */
.ta-home-revamp .blog {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .blog .section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 48px;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .blog .section-title span {
  color: #ef9920;
}

.ta-home-revamp .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ta-home-revamp .blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ta-home-revamp .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.13);
}

.ta-home-revamp .blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.ta-home-revamp .blog-content {
  padding: 24px;
}

.ta-home-revamp .blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .blog-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.ta-home-revamp .blog .cta {
  text-align: center;
  margin-top: 48px;
}

.ta-home-revamp .blog .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ta-home-revamp .blog .btn:hover {
  background: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 152, 18, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ===== CONTACT SECTION ===== */
.ta-home-revamp .contact-section {
  padding: 80px 5%;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.ta-home-revamp .contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ta-home-revamp .contact-card h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0a2540;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.ta-home-revamp .contact-card h2 span {
  color: #ef9920;
}

.ta-home-revamp .contact-card > p {
  color: #5f6c7b;
  margin-bottom: 24px;
  font-size: 15px;
}

.ta-home-revamp .location-content {
  background: #0a2540;
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.ta-home-revamp .location-content h3 {
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
}

.ta-home-revamp .location-content h3 span {
  color: #ffffff;
}

.ta-home-revamp .location-address {
  font-size: 16px;
  line-height: 1.6;
  color: #dbeafe;
  margin: 0;
}

.ta-home-revamp .location-contact {
  font-size: 16px;
  color: #ffffff;
}

.ta-home-revamp .location-contact span {
  color: #ef9920;
  font-weight: 600;
}

.ta-home-revamp .map {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin: 10px 0;
}

.ta-home-revamp .map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.ta-home-revamp .location-btn-wrapper {
  margin-top: 20px;
}

.ta-home-revamp .location-content .btn.ta-btn-primary {
  background-color: #ef9920;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
}

.ta-home-revamp .location-content .btn.ta-btn-primary:hover {
  background-color: #d4870e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 153, 32, 0.4);
}

/* ===== SECTION TITLE COMMON ===== */
.ta-home-revamp .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .section-title span {
  color: #ef9920;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ta-home-revamp .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-home-revamp .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-home-revamp .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ta-home-revamp .ai-section-wrapper .ai-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ta-home-revamp .ai-section-wrapper .robot {
    order: -1;
  }

  .ta-home-revamp .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ta-home-revamp .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ta-home-revamp .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ta-home-revamp .glass .hero-content h1 {
    font-size: 34px;
  }

  .ta-home-revamp .about-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ta-home-revamp .solutions-grid {
    grid-template-columns: 1fr;
  }

  .ta-home-revamp .products__grid {
    grid-template-columns: 1fr;
  }

  .ta-home-revamp .blog-grid {
    grid-template-columns: 1fr;
  }

  .ta-home-revamp .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px !important;
    padding: 35px 20px !important;
  }
  .ta-home-revamp .stat:not(:last-child)::after {
    display: none !important;
  }

  .ta-home-revamp .container {
    padding: 0 20px;
  }
  .ta-home-revamp .clients__header,
  .ta-home-revamp .products__header,
  .ta-home-revamp .solutions__header,
  .ta-home-revamp .industries__header,
  .ta-home-revamp .testimonials__header,
  .ta-home-revamp .blog__header,
  .ta-home-revamp .casestudies__header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 15px !important;
  }
  .ta-home-revamp .clients__header h2,
  .ta-home-revamp .products__header h2,
  .ta-home-revamp .solutions__header h2,
  .ta-home-revamp .industries__header h2,
  .ta-home-revamp .testimonials__header h2,
  .ta-home-revamp .blog__header h2,
  .ta-home-revamp .casestudies__header h2,
  .ta-home-revamp .clients__header p,
  .ta-home-revamp .products__header p,
  .ta-home-revamp .solutions__header p,
  .ta-home-revamp .industries__header p,
  .ta-home-revamp .testimonials__header p,
  .ta-home-revamp .blog__header p,
  .ta-home-revamp .casestudies__header p {
    text-align: center !important;
  }
  .ta-home-revamp .products__header div,
  .ta-home-revamp .solutions__header div,
  .ta-home-revamp .industries__header div,
  .ta-home-revamp .testimonials__header div,
  .ta-home-revamp .blog__header div,
  .ta-home-revamp .casestudies__header div {
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .ta-home-revamp .glass .hero-content h1 {
    font-size: 28px;
  }

  .ta-home-revamp .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ta-home-revamp .about-stats {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 30px 15px !important;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.ta-home-revamp .ta-testimonials-section {
  padding: 100px 0;
  background: #f9fbff;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .ta-testimonials-section .section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 12px;
}

.ta-home-revamp .ta-testimonials-section .section-title span {
  color: #ef9920;
}

.ta-home-revamp .ta-testimonials-section .section-subtitle {
  font-size: 16px;
  color: #64748b;
  text-align: center;
  margin-bottom: 56px;
}

/* Slider wrapper — clips slides */
.ta-home-revamp .ta-testimonial-slider {
  overflow: hidden;
  width: 100%;
}

/* Flex row of all slides — JS moves via translateX */
.ta-home-revamp .ta-testimonial-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

/* Each slide: 2-column grid */
.ta-home-revamp .ta-testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT — testimonial text card */
.ta-home-revamp .ta-testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.ta-home-revamp .ta-testimonial-card h3 {
  font-size: 26px;
  color: #ef9920;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.ta-home-revamp .ta-testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6b84;
  margin-bottom: 28px;
}

.ta-home-revamp .ta-testimonial-author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0b1b33;
  font-family: 'Poppins', sans-serif;
}

.ta-home-revamp .ta-testimonial-author span {
  font-size: 14px;
  color: #7a8aa0;
  display: block;
  margin-top: 4px;
}

/* RIGHT — image card */
.ta-home-revamp .ta-testimonial-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 250px;
}

.ta-home-revamp .ta-testimonial-image-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  background: #fff;
}

/* Company name placeholder when no image */
.ta-home-revamp .ta-testimonial-company-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ta-home-revamp .ta-testimonial-company-placeholder span {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  color: #ef9920;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* CONTROLS */
.ta-home-revamp .ta-testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.ta-home-revamp .ta-arrow {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #0f172a;
}

.ta-home-revamp .ta-arrow:hover {
  background: #ef9920;
  color: #ffffff;
  border-color: #ef9920;
  transform: scale(1.1);
}

.ta-home-revamp .ta-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ta-home-revamp .ta-dots span {
  width: 10px;
  height: 10px;
  background: #d6dce6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.ta-home-revamp .ta-dots span.active {
  background: #ef9920;
  transform: scale(1.3);
}

/* ===== GLOBAL BUTTON STYLES ===== */
.ta-home-revamp .ta-btn-revamp {
  display: inline-block;
  padding: 15px 40px;
  background: #ef9920;
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(239, 153, 32, 0.2);
  text-align: center;
}

.ta-home-revamp .ta-btn-revamp:hover {
  background: #d4870e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 153, 32, 0.4);
  color: #ffffff !important;
}

/* Update section-specific button containers to ensure centering and gap */
.ta-home-revamp .testimonials-cta,
.ta-home-revamp .products-cta,
.ta-home-revamp .blog-cta,
.ta-home-revamp .location-btn-wrapper,
.ta-home-revamp .products-cta,
.ta-home-revamp .blog-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-top: 50px !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remove old specific button styles to avoid conflicts */
.ta-home-revamp .testimonials-cta .btn,
.ta-home-revamp .products-cta .btn,
.ta-home-revamp .blog-cta .btn,
.ta-home-revamp .location-content .btn.ta-btn-primary {
  /* These will now use .ta-btn-revamp */
}
/* ===== WHO WE ARE CARDS SECTION ===== */
.ta-who-section {
  background: radial-gradient(circle at top, #1c2636, #0a1128);
  padding: 100px 0;
  color: #e5e7eb;
  font-family: 'Poppins', sans-serif;
}

.ta-who-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ta-who-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ta-who-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.ta-who-header h2 span {
  color: #ef9920;
}

.ta-who-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
}

.ta-who-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.ta-who-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ta-who-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ta-who-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ef9920;
  transform: translateY(-5px);
}

.ta-card-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.ta-who-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

.ta-who-image {
  width: 320px;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ta-who-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ta-who-slides {
  display: flex;
  width: 400%;
  height: 100%;
  animation: taWhoSlide 16s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.ta-who-slides img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes taWhoSlide {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-25%); }
  50%, 70% { transform: translateX(-50%); }
  75%, 95% { transform: translateX(-75%); }
  100% { transform: translateX(0); }
}

@media (max-width: 992px) {
  .ta-who-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ta-who-image {
    order: -1;
    margin-bottom: 20px;
  }
}

/* ============================================================
   NEW SECTIONS MIGRATED FROM DESIGN
   ============================================================ */

/* Expertise across every sector */
.ta-home-revamp .industries {
  padding: 80px 0;
  background: #ffffff;
}
/* Industries header style is now defined under unified headers */
.ta-home-revamp .industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ta-home-revamp .industry-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}
.ta-home-revamp .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}
.ta-home-revamp .industry-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.ta-home-revamp .industry-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}
.ta-home-revamp .industry-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* Clients grid version */
.ta-home-revamp .clients {
  padding: 40px 0;
  background-color: #ffffff;
}
.ta-home-revamp .clients__header,
.ta-home-revamp .products__header,
.ta-home-revamp .solutions__header,
.ta-home-revamp .industries__header,
.ta-home-revamp .testimonials__header,
.ta-home-revamp .blog__header,
.ta-home-revamp .casestudies__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.ta-home-revamp .clients__header {
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.ta-home-revamp .products__header div,
.ta-home-revamp .solutions__header div,
.ta-home-revamp .industries__header div,
.ta-home-revamp .testimonials__header div,
.ta-home-revamp .blog__header div,
.ta-home-revamp .casestudies__header div {
  text-align: left;
  max-width: 75%;
}
.ta-home-revamp .products__header h2,
.ta-home-revamp .products__header p,
.ta-home-revamp .solutions__header h2,
.ta-home-revamp .solutions__header p,
.ta-home-revamp .industries__header h2,
.ta-home-revamp .industries__header p,
.ta-home-revamp .testimonials__header h2,
.ta-home-revamp .testimonials__header p,
.ta-home-revamp .blog__header h2,
.ta-home-revamp .blog__header p,
.ta-home-revamp .casestudies__header h2,
.ta-home-revamp .casestudies__header p {
  text-align: left !important;
}
.ta-home-revamp .ta-view-all,
.ta-home-revamp .clients__view-all {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0b132b;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}
.ta-home-revamp .ta-view-all-circle,
.ta-home-revamp .clients__view-all-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ef9920;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.ta-home-revamp .ta-view-all:hover,
.ta-home-revamp .clients__view-all:hover {
  border-color: #ef9920;
  background-color: #ef9920;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 153, 32, 0.18);
}
.ta-home-revamp .ta-view-all:hover .ta-view-all-circle,
.ta-home-revamp .clients__view-all:hover .clients__view-all-circle {
  background-color: #ffffff;
  color: #ef9920;
}
.ta-home-revamp .ta-view-all:hover .ta-view-all-circle svg,
.ta-home-revamp .clients__view-all:hover .clients__view-all-circle svg {
  transform: translate(1px, -1px);
}
.ta-home-revamp .ta-view-all-circle svg,
.ta-home-revamp .clients__view-all-circle svg {
  transition: transform 0.3s ease;
}
.ta-home-revamp .clients__marquee {
  overflow: hidden;
  width: 100%;
  padding: 0;
  position: relative;
}
.ta-home-revamp .clients__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: clientsScroll 60s linear infinite;
}
.ta-home-revamp .clients__marquee:hover .clients__track {
  animation-play-state: paused;
}
@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ta-home-revamp .client-card {
  width: 160px;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
}
.ta-home-revamp .client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.ta-home-revamp .client-card:hover img {
  transform: scale(1.05);
}

/* Case Study Section */
.ta-home-revamp .recent-posts {
  padding: 80px 0;
  background: #fff;
}
.ta-home-revamp .recent-posts .container {
  text-align: center;
}
.ta-home-revamp .posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ta-home-revamp .post-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: #000;
}
.ta-home-revamp .post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.ta-home-revamp .post-card:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
.ta-home-revamp .post-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}
.ta-home-revamp .overlay .time {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 10px;
  display: block;
}
.ta-home-revamp .overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.ta-home-revamp .overlay a {
  color: #ef9920;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ta-home-revamp .overlay a:hover {
  color: #fff;
}

/* Final CTA */
.ta-home-revamp .ta-cta {
  padding: 100px 20px;
  background: #ffffff;
}
.ta-home-revamp .ta-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
  background: radial-gradient(1200px circle at top left, rgba(255, 255, 255, 0.08), transparent 40%), 
              linear-gradient(135deg, #0b132b, #0f172a);
  border-radius: 32px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.ta-home-revamp .ta-cta__container h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.ta-home-revamp .ta-cta__container p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.ta-home-revamp .ta-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== REVAMPED CONTACT FORM (Shared styles) ===== */
.revamped-contact-form .revamped-form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.revamped-contact-form .form-group {
    width: 100%;
    padding: 10px 0 !important; /* Requested gap fix */
}
.revamped-form-container .form-group {
    padding: 10px 0 !important;
}


.revamped-contact-form input.form-control,
.revamped-contact-form select.form-control,
.revamped-contact-form textarea.form-control {
    width: 100% !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    color: #0f172a !important;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.revamped-contact-form input.form-control:focus,
.revamped-contact-form select.form-control:focus,
.revamped-contact-form textarea.form-control:focus {
    border-color: #FE7B02 !important;
    box-shadow: 0 0 0 4px rgba(254, 123, 2, 0.1) !important;
    outline: none !important;
}

.revamped-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.revamped-contact-form #contact-form input[type="submit"] {
    width: 100% !important;
    background: #FE7B02 !important;
    color: #fff !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.revamped-contact-form #contact-form input[type="submit"]:hover {
    background: #e66e00 !important;
    transform: translateY(-2px) !important;
}

/* ===== RESPONSIVE OVERRIDES FOR REVAMPED SECTIONS ===== */
@media (max-width: 1024px) {
  .ta-home-revamp .industries__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ta-home-revamp .posts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .ta-home-revamp .ta-testimonial-slide {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .ta-home-revamp .industries__grid {
    grid-template-columns: 1fr !important;
  }
  .ta-home-revamp .posts-grid {
    grid-template-columns: 1fr !important;
  }
}
