/* ===== SCOPED RESET ===== */
.ta-services-revamp {
    font-family: 'Inter', sans-serif;
}

.ta-services-revamp * {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.hero {
    position: relative;
    min-height: 400px;
    padding: 60px 0 40px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0c1325, #121f3d, #7a2c18);
    opacity: .95;
}

.hero-content {
    position: relative;
}

.badge-section {
  background: #fff;
  overflow: hidden;
}

/* Track */
.badge-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: scroll 30s linear infinite;
  padding: 16px 0;
}

/* Badge card */
.badge {
  min-width: 180px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.badge img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.badge:hover {
  transform: translateY(-6px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.chip {
    display: inline-flex;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid rgba(254, 123, 2, .4);
    background: rgba(254, 123, 2, .1);
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    max-width: 720px;
    color: #fff;
}

.hero-title span {
    display: block;
}

.highlight {
    color: #FE7B02;
}

.hero-desc {
    margin-top: 16px;
    max-width: 620px;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 24px;
    display: flex;
    gap: 24px;
}

.btn-primary {
    background: #FE7B02;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
}

.divider {
    margin-top: 80px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
}

.stats {
    display: flex;
    gap: 80px;
    margin-top: 48px;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    margin-top: 8px;
}

.stat p {
    color: #9ca3af;
    font-size: 14px;
}

.services-header {
    text-align: center;
    max-width: 720px;
    margin: auto;
    margin-top: 120px;
}

.services-label {
    color: #FE7B02;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.services-header h2 {
    font-size: 44px;
    margin-top: 16px;
    font-weight: 800;
}

.services-desc {
    margin-top: 24px;
    color: #6b7280;
    font-size: 18px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.ta-expertise-section {
    background: #ffffff;
    padding: 120px 0;
    color: #111;
}

.service-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    padding: 32px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #FE7B02 !important;
}

.service-card .icon {
    width: 56px !important;
    height: 56px !important;
    background: #fff1e6 !important;
    color: #FE7B02 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 14px !important;
    margin-bottom: 24px !important;
    font-size: 24px !important;
}

.service-card .icon svg, 
.service-card .icon img {
    max-width: 28px !important;
    max-height: 28px !important;
}

.service-card h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    color: #0f172a !important;
}

.service-card p {
    margin-top: 0 !important;
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card p.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.testimonial-section {
    background: #e9e9e9;
    padding: 80px 0;
    font-family: Inter, sans-serif;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.testimonial-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff36;
    padding: 16px;
    border-radius: 40px;
}

.client-img {
    cursor: pointer;
    transition: all .35s ease;
    overflow: hidden;
    border-radius: 28px;
    
}

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

/* sizes */

.client-img.small {
    width: 250px;
    height: 120px;
    filter: grayscale(100%);
    opacity: .7;
}

.client-img.active {
    width: 250px;
    height: 300px;
    border: 3px solid #FE7B02;
}

/* RIGHT */

.testimonial-content {
    flex: 1;
    color: #666;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    height: 100%;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 60px;
}

.client-name {
    font-size: 42px;
    font-weight: 500;
    color: #333;
}

.client-role {
    color: #777;
    margin-top: 6px;
    margin-bottom: 40px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.divider-line {
    flex: 1;
    border-bottom: 2px dashed #cfcfcf;
}

.stars {
    color: #FE7B02;
    font-size: 22px;
    letter-spacing: 4px;
}

/* Solutions */
.solutions {
    background: linear-gradient(to bottom, #fff, #f3ede7);
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.solutions-header {
    text-align: center;
    max-width: 680px;
    margin: auto;
}

.solutions-label {
    color: #FE7B02;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.solutions-header h2 {
    font-size: 48px;
    margin-top: 12px;
    font-weight: 800;
    color: #111827;
}

.solutions-desc {
    margin-top: 16px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

/* tabs */

.solutions-tabs {
    margin: 50px auto;
    background: #fff;
    padding: 6px;
    border-radius: 14px;
    display: flex;
    gap: 6px;
    max-width: 750px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 24px;
    font-weight: 600;
    color: #374151;
    border-radius: 10px;
    cursor: pointer;
    transition: all .25s;
}

.tab-btn.active {
    background: #FE7B02;
    color: white;
    font-weight: 800;
}

/* card */

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.solution-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.solution-card p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 60px;
    margin-top: 30px;
    color: #374151;
}

.feature {
    font-size: 16px;
}

.feature span{
    color: #FE7B02;
}

.learn-btn {
    margin-top: 35px;
    background: #FE7B02;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Tech Stack */
.tech-stack {
    padding: 120px 20px;
    /* background: #f5f2ee; */
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.tech-card {
    background: #232b5d;
    color: white;
    padding: 90px 80px;
    border-radius: 36px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.tech-label {
    color: #FE7B02;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.tech-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.tech-desc {
    color: #cbd5e1;
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* pills */

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 860px;
    margin: auto;
}

.tech-list span {
    background: #313a70;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: #e5e7eb;
}

.tech-list span {
    transition: all .25s ease;
    cursor: default;
}

.tech-list span:hover {
    background: #3c4686;
    transform: translateY(-2px);
}

/* Industries */
.industries {
    background: #f4efe9;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.industry-label {
    color: #FE7B02;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 14px;
}

.industry-title {
    font-size: 46px;
    font-weight: 800;
    color: #111827;
}

.industry-desc {
    margin-top: 16px;
    color: #6b7280;
    font-size: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* grid */

.industry-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* card */

.industry-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 40px 20px;
    border-radius: 18px;
    transition: all .25s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* icon circle */

.industry-card .icon {
    width: 70px;
    height: 70px;
    background: #fff1e6;
    color: #FE7B02;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin: auto;
    margin-bottom: 18px;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

/* Knowledge */
.knowledge {
    padding: 120px 0;
    /* background: #f4efe9; */
    font-family: 'Inter', sans-serif;
}

/* title */

.knowledge-title {
    text-align: center;
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 70px;
    color: #333;
}

.knowledge-title span {
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a00, #ff3d6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* slider */

.knowledge-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-bottom: 20px;
}

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

/* card — applies in both slider and static grid */

.knowledge-slider .card,
.knowledge-grid .card {
    background: rgb(240, 240, 240);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.knowledge-slider .card {
    width: 400px;
    flex-shrink: 0;
}

.knowledge-slider .card img,
.knowledge-grid .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 20px;
}

.knowledge-slider .card h3,
.knowledge-grid .card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.knowledge-slider .card p,
.knowledge-grid .card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* controls */

.slider-controls {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #2f3437;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.slider-controls .btn-primary{
    background: #FE7B02;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    width: auto;
}

/* Why Secton */
.why-section {
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.why-label {
    text-align: center;
    color: #FE7B02;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
}

.why-title span {
    color: #FE7B02;
}

/* grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
}

/* item */

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

/* icon */

.why-icon {
    width: 50px;
    height: 50px;
    background: #fff1e6;
    color: #FE7B02;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
}

/* text */

.why-item h4 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.why-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* FAQ */

.faq-section {
    background: #f4efe9;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.faq-label {
    text-align: center;
    color: #FE7B02;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.faq-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* list */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* item */

.faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* question */

.faq-question {
    width: 100%;
    padding: 20px 24px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: white;
    cursor: pointer;
    font-weight: 600;
}

/* answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 24px;
}

.faq-answer p {
    color: #6b7280;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* CTA */

.cta-section {
    padding: 80px 0;
    background: #fff; /* Section background is white */
    font-family: 'Inter', sans-serif;
}

.cta-box {
    max-width: 1140px;
    margin: auto;
    padding: 80px 40px;
    text-align: center;
    border-radius: 40px;
    background: #1a1435; /* Solid base color for hover state */
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Multi-layered gradient to match the design's glow effect */
    background: 
    radial-gradient(circle at top left, rgba(68, 49, 141, 0.5) 0%, transparent 60%),
    radial-gradient(circle at bottom right, rgba(136, 47, 28, 0.4) 0%, transparent 60%);
    z-index: -1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.cta-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-box:hover::before {
    opacity: 0; /* Smoothly fades out the glow layers */
    transform: scale(1.05); /* Subtle expansion effect during fade */
}

/* title */

.cta-box h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 24px;
    color: #fff !important; /* Force white for non-highlighted text */
}

.cta-box h2 strong {
    color: inherit;
    /* The gradient is handled by .ta-text-gradient-primary which is already applied via addColorOnTitle */
}

/* description */

.cta-box p {
    margin: 0 auto 40px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    line-height: 1.6;
}

/* button */

.cta-box .btn-primary,
.cta-box .cta-btn {
    background: #FE7B02 !important;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.cta-box .btn-primary:hover,
.cta-box .cta-btn:hover {
    background: #e66f02 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 123, 2, 0.3);
}

.cta-box .ta-text-gradient-primary {
    background: -webkit-linear-gradient(45deg, #FE7B02, #FF3D6C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 70% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===========================
   PARALLAX CONTACT SECTION
=========================== */

.parallax-contact {
  position: relative;
  padding: 120px 0;
  background-image:
    linear-gradient(
      120deg,
      rgba(10, 15, 30, 0.9),
      rgba(10, 15, 30, 0.8)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===========================
   CONTACT LAYOUT
=========================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #ffffff;
}

/* LEFT CONTENT */

.contact-info .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  color: #fff;
}

.contact-info .pill img {
    width: 18px;
    height: 18px;
}

.contact-info h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: #fff;
}

.contact-info h2 span {
  color: #FE7B02;
}

.contact-info p {
  max-width: 480px;
  opacity: 0.8;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
}

/* ===========================
   GLASS CONTACT CARDS
=========================== */

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-glass-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.contact-glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 123, 2, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.icon-box img {
    width: 24px;
    height: 24px;
}

.card-text span {
  font-size: 14px;
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}

.card-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

/* ===========================
   CONTACT FORM
=========================== */

.contact-form {
  background: #ffffff;
  color: #0f172a;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-sub {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
}

/* Contact Form Revamp (WordPress Shortcode Overrides) */
.revamped-contact-form #contact-form {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.revamped-contact-form label:not(.hp-label) {
    display: none !important;
}

.revamped-contact-form .revamped-form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.revamped-contact-form .form-row.side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .revamped-contact-form .form-row.side-by-side {
        grid-template-columns: 1fr;
    }
}

.revamped-contact-form .form-group {
    width: 100%;
}

.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 .submit-full {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 10px !important;
}

.revamped-contact-form #contact-form input.form-control:focus,
.revamped-contact-form #contact-form select.form-control:focus,
.revamped-contact-form #contact-form textarea.form-control:focus {
    border-color: #FE7B02 !important;
    background: #fff !important;
    outline: none !important;
}

.revamped-contact-form #contact-form .send-btn {
    text-align: center !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.revamped-contact-form #contact-form input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    border: none !important;
    border-radius: 14px !important;
    background: #FE7B02 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revamped-contact-form #contact-form input[type="submit"]:hover {
    background: #e66f02 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(254, 123, 2, 0.3) !important;
}

.revamped-contact-form .hp-label, .revamped-contact-form #ref_code {
    display: none !important;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 38px;
  }
  .contact-form {
      padding: 30px;
  }
  .revamped-contact-form #contact-form .col-lg-6, 
  .revamped-contact-form #contact-form .col-6 {
      width: 100% !important;
  }
}

/* ===== FINAL CTA SECTION (Standardized) ===== */
.ta-cta {
  padding: 100px 20px;
  background: #ffffff;
}

.ta-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 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-cta__container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

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

.ta-cta__container p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.ta-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.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-btn-revamp:hover {
  background: #d4870e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 153, 32, 0.4);
  color: #ffffff !important;
}

/* ===== BLOG SECTION (Shared from Homepage) ===== */
.blog {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

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

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

/* ===== FEATURED GRID (Clean Split Design) ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef2f6;
  transition: all 0.4s ease;
  height: 100%;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: #ef9920;
}

.featured-card .img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Using contain for logos */
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.08);
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  flex-grow: 1; /* Allow content to grow to fill space */
}

.featured-content h3 {
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.featured-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  /* Truncate text initially if needed */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-content p.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.read-more-btn {
  margin-top: auto;
  color: #ef9920;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px 0 0;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: #d4870e;
  gap: 8px;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

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

.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;
}

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

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

.blog-content {
  padding: 24px;
}

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

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

.blog-cta-revamp {
  text-align: center;
  margin-top: 48px;
}
/* ===== CLIENTS MARQUEE (Shared from Homepage) ===== */
.clients {
  padding: 30px 0;
  background-color: #ffffff;
}
.clients__header {
  text-align: center;
  margin-bottom: 50px;
}
.clients__marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}
.clients__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: clientsScroll 60s linear infinite;
}
.clients__marquee:hover .clients__track {
  animation-play-state: paused;
}
@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.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;
}
.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.client-card:hover img {
  transform: scale(1.05);
}

/* ===== CASE STUDY SECTION (Shared from Homepage) ===== */
.recent-posts {
  padding: 80px 0;
  background: #fff;
}
.recent-posts .container {
  text-align: center;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: #000;
}
.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.post-card:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
.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;
}
.overlay .time {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 10px;
  display: block;
}
.overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.overlay a {
  color: #ef9920;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
