/* COMMENTED OUT BY AG TO PREVENT CONFLICTS
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-items: center;
}
*/


/* COMMENTED OUT BY AG
body {
  font-family: "poppins", Helvetica, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
*/

.container{
  width: 100%;
  max-width: 1400px;
  padding: 0px 80px;
  margin: 0 auto;
}
/* =========================
   FULL WIDTH BANNER
========================= */

.tas-full-banner {
  width: 100%;
  background: #ffffff;
  padding: 20px 24px;
}

.tas-banner-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* CONTENT */
.tas-banner-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #f97316;
}

.tas-banner-title {
  font-size: 48px;
  line-height: 1.15;
  margin: 18px 0 22px;
  color: #040404;
}

.tas-banner-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #323232;
  max-width: 520px;
}

/* BUTTONS */
.tas-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.tas-btn-primary {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tas-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
}

.tas-btn-secondary {
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.tas-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* IMAGE */
.tas-banner-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
}


/* ===== MAIN CONTAINER ===== */
.container,
.hero-container,
.contact-container,
.cta-container,
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px; /* equal left & right space */
}

/* COMMENTED OUT HEADER/NAVBAR SECTION BY AG TO PREVENT THEME CONFLICTS
.site-header {
... [truncated for instruction, but will include full target content in tool call]
*/

/* hero section*/
.consult-hero {
  padding: 80px 24px;
}

.consult-container {
  max-width: 1400px;
  margin: auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* =====================
   CONTENT
===================== */
.consult-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.consult-content p {
  font-size: 16px;
  color: #475569;
  max-width: 460px;
  margin-bottom: 32px;
}

/* =====================
   BUTTONS
===================== */
.cta-group {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #ef9920;
  color: #ffffff;
}

.btn.primary:hover {
  background: #ef9920;
}

.btn.secondary {
  border: 1px solid #cbd5e1;
  color: #ef9920;
  background: #ffffff;
}

.btn.secondary:hover {
  background: #f1f5f9;
}

/* =====================
   BUTTONS service
===================== */
/* Renamed from .ta-button/icon to prevent theme conflict */
.tas-button-legacy {
  background: #ef9920;
  color: #ffffff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;

  border: none;
  border-radius: 0.9em;
  cursor: pointer;

  padding: 0.35em 3.3em 0.35em 1.2em;
  height: 2.8em;

  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  box-shadow: inset 0 0 1.6em -0.6em #ef9920;
}

/* Icon container */
.tas-icon-btn {
  position: absolute;
  right: 0.3em;
  width: 2.2em;
  height: 2.2em;
  border-radius: 0.7em;
  background: #ffffff;
  color: #7b52b9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover expand */
.tas-button-legacy:hover .tas-icon-btn {
  width: calc(100% - 0.6em);
}

/* Arrow animation */
.tas-icon-btn svg {
  width: 1.1em;
  transition: transform 0.3s ease;
}

.tas-button-legacy:hover .tas-icon-btn svg {
  transform: translateX(0.1em);
}

/* Active click */
.tas-button-legacy:active .tas-icon-btn {
  transform: scale(0.95);
}

.tas-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 500;
  color: #f97316;
  text-decoration: none;

  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background: transparent;

  transition: all 0.25s ease;
}

.tas-read-more .arrow {
  transition: transform 0.25s ease;
}

.tas-read-more:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: #f97316;
}

.tas-read-more:hover .arrow {
  transform: translateX(4px);
}



/* =====================
   IMAGE
===================== */
.consult-image {
  display: flex;
  justify-content: center;
}

.consult-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  object-fit: cover;
}
/* end hero section*/

/*core-services*/
.core-services {
  padding: 80px 20px;
  background: #fff;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.left {
  max-width: 600px;
}

.label {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #ff6a3d;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.right {
  max-width: 420px;
}

.right p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

/*end core-services*/

/*service-card*/
.tas-elegance {
  padding: 40px 0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
}

.tas-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 80px 24px;
}

/* LEFT CONTENT */
.tas-content h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.tas-desc {
  margin: 20px 0 30px;
  color: #666;
  max-width: 420px;
}

.tas-btn {
  display: inline-block;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* GRID */
/* GRID LAYOUT */
.tas-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* LARGE CARD – FULL HEIGHT LEFT */
.tas-card-large {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
}

/* SMALL CARDS – RIGHT SIDE */
.tas-card-small {
  grid-column: 2 / 3;
}

/* CARD BASE */
.tas-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.tas-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.tas-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

.tas-overlay h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.tas-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* ARROW */
.tas-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: #000;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.tas-style-section {
  padding: 80px 0;
  background: #fff;
}

.tas-style-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.tas-style-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

/* CARD BASE */
.tas-style-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tas-style-card-large {
  height: 100%;
}

/* IMAGE */
.tas-style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.tas-style-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    transparent
  );
  color: #fff;
}

.tas-style-overlay h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tas-style-overlay p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 90%;
}

/* ARROW */
.tas-style-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
}

/* HOVER EFFECT */
.tas-style-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tas-style-card:hover img {
  transform: scale(1.08);
}
/* HOVER ANIMATION (SUBTLE) */
.tas-card:hover img {
  transform: scale(1.06);
}

.tas-card img {
  transition: transform 0.6s ease;
}



/*end service-card*/

/* CTA Section */
.tas-cta {
  padding: 80px 20px;
  background: #ffffff;
}

/* CTA Container */
.tas-cta__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;

  background: radial-gradient(
      1400px circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(135deg, #0b132b, #0f172a);

  border-radius: 28px;
  color: #ffffff;
}

/* Heading */
.tas-cta__container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.tas-cta__container p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Actions */
.tas-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary Button */
.tas-btn-primary {
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease
}

.tas-btn-primary:hover {
  background: #ef9920;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgb(255, 152, 18);
}

/* Link Button */
.tas-btn-link {
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tas-btn-link :hover{
  background: #ef9920;
  transform: translateY(-2px);;

}

.tas-btn-link::after {
  background: #ef9920;;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.tas-btn-link:hover::after {
  width: 100%;
}

/* footer*/
/* ---------- GLOBAL CONTAINER ---------- */
/* ---------- FOOTER BASE ---------- */
/* COMMENTED OUT FOOTER SECTION BY AG
.footer {
... [truncated for instruction]
*/


.services {
  padding: 40px 24px;
  padding-top: 0;

}

.services-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 0;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* READ MORE */
.service-card a {
  font-size: 14px;
  font-weight: 500;
  color: #f97316;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a span {
  transition: transform 0.25s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

/* button 2*/
.tas-btn{
  display:flex;
  justify-content: center;
}

.tas-button {
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 2rem;
  padding: 0.6em 3.3em 0.6em 1.2em;
  height: 2.8em;

  display: inline-flex;
  align-items: center !important;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: 0.05em;

  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Hover state */
.tas-button:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

/* Icon container */
.tas-button__icon {
  position: absolute;
  right: 0.3em;
  height: 2.2em;
  width: 2.2em;
  background: #fff;
  border-radius: 2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease, background 0.3s ease;
}

/* Icon SVG */
.tas-button__icon svg {
  width: 1.1em;
  color: #000;
  transition: transform 0.3s ease;
}

/* Hover animation */
.tas-button:hover .tas-button__icon svg {
  transform: translateX(2px) rotate(-25deg);
}

/* Active press */
.tas-button:active .tas-button__icon {
  transform: scale(0.95);
}


/* button 2 end */

/* footer final*/

/* =========================
   TA SERVICES SECTION
========================= */

.tas-services {
  padding: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: Inter, system-ui, sans-serif;
}

/* Header */
.tas-services-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.tas-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #f97316;
}

.tas-services-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 16px 0;
  color: #0f172a;
  text-align: center;
}

.tas-services-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* Grid */
.tas-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.tas-service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tas-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* Icon */
.tas-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  font-size: 18px;
}

/* Text */
.tas-service-name {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

/* Arrow */
.tas-service-arrow {
  margin-left: auto;
  font-size: 16px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tas-service-card:hover .tas-service-arrow {
  transform: translate(4px, -4px);
  color: #f97316;
}

/* Responsive */
@media (max-width: 900px) {
  .tas-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tas-services-grid {
    grid-template-columns: 1fr;
  }

  .tas-services-title {
    font-size: 32px;
  }
}


/* footer final end*/

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* ✅ Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 5%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: left;
  }

  .left h2 {
    font-size: 32px;
  }

  .right {
    max-width: 100%;
  }
}
/* COMMENTED OUT ADDITIONAL FOOTER RESPONSIVE BY AG
@media (max-width: 1024px) {
...
}
*/

/* COMMENTED OUT EXTRA NAVBAR BY AG
.navbar {
... [truncated]
*/
/* RESPONSIVE */
@media (max-width: 900px) {
  .tas-banner-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tas-banner-desc {
    margin: auto;
  }

  .tas-banner-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .tas-banner-title {
    font-size: 34px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .tas-container {
    grid-template-columns: 1fr;
  }

  .tas-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .tas-card-large {
    grid-row: auto;
  }
}

/*end core-services*/
