/* ===== MAIN SECTION ===== */
.tac-aboutHero {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  background: #fff8f4;
  font-family: Inter, sans-serif;
}

.tac-aboutContainer {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* ===== IMAGE ===== */
.tac-aboutImageWrap {
  position: relative;
  flex: 1;
}

.tac-aboutImageBox {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
}

.tac-aboutImageBox img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* blur */
.tac-aboutBlur {
  position: absolute;
  width: 256px;
  height: 256px;
  background: rgba(255, 220, 195, 0.3);
  border-radius: 50%;
  filter: blur(32px);
  top: -40px;
  right: 80px;
}

/* badge */
.tac-aboutBadge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tac-aboutBadgeIcon img {
  width: 48px;
  height: 48px;
  background: #FE8B0A;
  border-radius: 50%;
}

.tac-aboutBadgeText h3 {
  font-size: 18px;
  margin: 0;
  color: #1E1B18;
}

.tac-aboutBadgeText p {
  font-size: 13px;
  margin: 0;
  color: #5F5E5C;
}

/* ===== CONTENT ===== */
.tac-aboutContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tac-aboutTag {
  display: inline-block;
  background: #FFDCC3;
  color: #6E3900;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.tac-aboutContent h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1E1B18;
  line-height: 1.2;
}

.tac-aboutContent p {
  font-size: 18px;
  color: #564335;
  max-width: 520px;
}

.tac-aboutPoints {
  font-weight: 400;
  color: #463F3C;
}

/* ===== BUTTONS ===== */
.tac-aboutButtons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.tac-btnPrimary {
  background: #FE8B0A;
  color: #fff;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.tac-btnPrimary:hover {
  background: #d86f06;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(254, 139, 10, 0.3);
}

/* OUTLINE BUTTON */
.tac-btnOutline {
  background: transparent;
  border: 2px solid #463F3C;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.tac-btnOutline:hover {
  background: #463F3C;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .tac-aboutContainer {
    flex-direction: column;
    text-align: center;
  }

  .tac-aboutContent p {
    margin: 0 auto;
  }

  .tac-aboutButtons {
    justify-content: center;
  }

  .tac-aboutBlur {
    right: 20px;
  }
}

@media(max-width:576px) {
  .tac-aboutContent h1 {
    font-size: 20px;
  }

  .tac-aboutImageBox img {
    height: 320px;
  }

  .tac-aboutContent p {
    margin: 0 auto;
    font-size: 12px;
    text-align: justify;
  }

  .tacTrustWrap {
    width: 100%;
    background: #FAF2ED;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    font-family: Inter, sans-serif;
  }

  .admx-header h2 {
    font-size: 24px;
  }
}











/* ===== MAIN ===== */
.tacTrustWrap {
  width: 100%;
  background: #FAF2ED;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

.tacTrustContainer {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

/* ===== HEADER ===== */
.tacTrustHeader {
  text-align: center;
  max-width: 750px;
}

.tacTrustHeader h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
  transition: 0.3s;
}

.tacTrustHeader h2:hover {
  color: #FE8B0A;
  transform: translateY(-2px);
}

.tacTrustLine {
  width: 80px;
  height: 4px;
  background: #FE8B0A;
  margin: 10px auto 20px;
  transition: 0.3s;
}

.tacTrustHeader:hover .tacTrustLine {
  width: 120px;
}

/* quote */
.tacTrustQuote {
  font-size: 18px;
  font-style: italic;
  color: #564335;
  line-height: 1.6;
}

/* ===== TEXT ===== */
.tacTrustText {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.tacTrustText p {
  font-size: 16px;
  color: #564335;
  line-height: 24px;
  transition: 0.3s;
}

.tacTrustText p:hover {
  color: #1E1B18;
  transform: translateX(5px);
}

/* ===== IMAGES ===== */
.tacTrustGallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.tacTrustCard {
  background: #fff;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #F5F5F4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  cursor: pointer;
}

.tacTrustCard:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tacTrustCard img {
  width: 350px;
  height: 234px;
  border-radius: 8px;
  object-fit: cover;
  transition: 0.3s;
}

.tacTrustCard:hover img {
  filter: brightness(1.05);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {

  .tacTrustHeader h2 {
    font-size: 30px;
  }

  .tacTrustQuote {
    font-size: 16px;
    text-align: justify;
  }
.tacTrustText p {
    font-size: 16px;
    color: #564335;
    line-height: 24px;
    transition: 0.3s;
    text-align: justify;
}


  .tacTrustText {
    text-align: center;
  }
}

@media(max-width:600px) {

  .tacTrustHeader h2 {
    font-size: 26px;
  }

  .tacTrustCard img {
    width: 100%;
    height: auto;
  }
   .tacTrustQuote {
    font-size: 16px;
    text-align: justify;
  }
.tacTrustText p {
    font-size: 16px;
    color: #564335;
    line-height: 24px;
    transition: 0.3s;
    text-align: justify;
}
}









/* ===== WRAPPER ===== */
.tacStatsWrap {
  width: 100%;
  background: #463F3C;
  padding: 80px 20px;
  font-family: Inter, sans-serif;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* subtle overlay */
.tacStatsWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
}

/* GRID */
.tacStatsGrid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* CARD */
.tacStatsCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.tacStatsCard:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* NUMBER */
.tacStatsNum {
  font-size: 48px;
  font-weight: 700;
  color: #FE8B0A;
  line-height: 1;
  transition: 0.3s;
}

.tacStatsCard:hover .tacStatsNum {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(254, 139, 10, 0.4);
}

/* LABEL */
.tacStatsTxt {
  font-size: 14px;
  font-weight: 500;
  color: #D6D3D1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

.tacStatsCard:hover .tacStatsTxt {
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .tacStatsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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

  .tacStatsNum {
    font-size: 40px;
  }
}











/* ===== WRAPPER ===== */
.tacAboutTimeline {
  width: 100%;
  padding: 80px 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

.tacAboutWrap {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ===== LEFT ===== */
.tacAboutLeft {
  flex: 1;
}

.tacAboutHeading {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
  margin-bottom: 40px;
}

/* TIMELINE LINE */
.tacTimelineLine {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #FFDCC3;
}

/* CARD */
.tacTimelineCard {
  position: relative;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.tacTimelineCard:hover {
  background: #FFF8F4;
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.tacTimelineCard h3 {
  font-size: 24px;
  font-weight: 600;
  color: #914C00;
  margin-bottom: 8px;
  transition: 0.3s;
}

.tacTimelineCard:hover h3 {
  color: #FE8B0A;
}

/* TEXT */
.tacTimelineCard p {
  font-size: 16px;
  color: #564335;
  line-height: 24px;
  transition: 0.3s;
}

.tacTimelineCard:hover p {
  color: #1E1B18;
}

/* DOT */
.tacTimelineDot {
  width: 14px;
  height: 14px;
  background: #FE8B0A;
  border-radius: 50%;
  position: absolute;
  left: -38px;
  top: 26px;
  border: 4px solid #fff;
  transition: 0.3s;
}

.tacTimelineCard:hover .tacTimelineDot {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(254, 139, 10, 0.5);
}

/* ===== RIGHT IMAGE ===== */
.tacAboutRight {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tacAboutRight img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid #f9a67c;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 550px;
}

.tacAboutRight img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .tacAboutWrap {
    flex-direction: column;
    text-align: left;
  }

  .tacAboutRight {
    order: -1;
  }

  .tacAboutHeading {
    font-size: 28px;
  }
}

@media(max-width:576px) {
  .tacAboutTimeline {
    padding: 50px 20px;
  }

  .tacTimelineCard h3 {
    font-size: 20px;
  }

  .tacTimelineCard p {
    font-size: 14px;
    text-align: justify;
  }
  .admx-card p {
    font-size: 15px;
    line-height: 24px;
    color: #564335;
    text-align: justify;
}
.tacAboutRight img {
    width: 100%;
    border-radius: 24px;
    border: 2px solid #f9a67c;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 250px;
}
}













/* ===== SECTION WRAPPER ===== */
.admx-core-section {
  width: 100%;
  padding: 80px 40px;
  background: #F4ECE8;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

/* CONTAINER */
.admx-wrapper {
  width: 100%;
  max-width: 1200px;
}

/* HEADER */
.admx-header {
  text-align: center;
  margin-bottom: 50px;
}

.admx-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
}

.admx-header p {
  font-size: 16px;
  color: #564335;
  margin-top: 8px;
}

/* GRID */
.admx-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== CARD BASE ===== */
.admx-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.admx-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* LEFT ACCENT (MISSION) */
.card-mission {
  border-left: 5px solid #FE8B0A;
}

/* DARK CARD (VISION) */
.card-vision {
  background: #463F3C;
  color: #fff;
}

.card-vision p {
  color: #D6D3D1;
}

/* ===== ICON STYLE ===== */
.admx-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 14px;
  transition: 0.3s;
}

/* SMALL ICON */
.admx-icon.small {
  width: 42px;
  height: 42px;
  font-size: 16px;
  background: #FFDCC3;
  color: #1E1B18;
}

/* ICON COLORS */
.card-mission .admx-icon {
  background: #FFDCC3;
}

.card-vision .admx-icon {
  background: #44403C;
}

/* TEXT */
.admx-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: inherit;
}

.admx-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1E1B18;
}

.admx-card p {
  font-size: 15px;
  line-height: 24px;
  color: #564335;
}

/* DARK TEXT FIX */
.card-vision h3,
.card-vision h4 {
  color: #fff;
}

/* HOVER ICON ANIMATION */
.admx-card:hover .admx-icon {
  transform: scale(1.15) rotate(5deg);
}

/* SOFT BACKGROUND EFFECT */
.admx-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(254, 139, 10, 0.08);
  top: -40px;
  right: -40px;
  border-radius: 50%;
  transition: 0.3s;
}

.admx-card:hover::before {
  transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .admx-grid {
    grid-template-columns: 1fr;
  }

  .admx-header h2 {
    font-size: 28px;
  }
}

@media(max-width:576px) {
  .admx-core-section {
    padding: 50px 20px;
  }

  .admx-card {
    padding: 22px;
  }

  .admx-card h3 {
    font-size: 20px;
  }
}







/* ===== JOURNEY MAP SECTION ===== */
.journey-map-section {
  width: 100%;
  padding: 80px 40px;
  background: #FFF8F4;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

.journey-map-container {
  width: 100%;
  max-width: 1200px;
}

/* HEADER */
.journey-map-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-map-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
}

.journey-map-header p {
  font-size: 16px;
  color: #564335;
  margin-top: 8px;
}

/* GRID */
.journey-map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* CARD */
.journey-step-card {
  text-align: center;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

/* HOVER EFFECT */
.journey-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* CIRCLE */
.journey-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #FFDCC3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  color: #914C00;
  transition: 0.3s;
}

/* OUTLINE ACTIVE */
.circle-outline {
  background: #FE8B0A;
  color: #fff;
  border: none;
}

/* FILLED */
.circle-fill {
  background: #FE8B0A;
  color: #fff;
  border: none;
}

/* CIRCLE HOVER */
.journey-step-card:hover .journey-step-circle {
  transform: scale(1.08);
}

/* TITLE */
.journey-step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1B18;
  margin-bottom: 6px;
}

/* TEXT */
.journey-step-card p {
  font-size: 14px;
  color: #564335;
  line-height: 20px;
}

/* LINE */
.journey-map-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #FFDCC3;
  z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .journey-map-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-map-grid::before {
    display: none;
  }
}

@media(max-width:576px) {
  .journey-map-section {
    padding: 50px 20px;
  }

  .journey-map-grid {
    grid-template-columns: 1fr;
  }

  .journey-map-header h2 {
    font-size: 28px;
  }
}













.tc-faq-section {
  padding: 60px 20px;
  background: #f5fbff;
  font-family: 'Poppins', sans-serif;
}

.tc-faq-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.tc-faq-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tc-faq-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.tc-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tc-faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s;
}

.tc-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.tc-faq-icon {
  font-size: 22px;
  transition: 0.3s;
}

.tc-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  text-align: left;
  color: #555;
  font-size: 14px;
  transition: all 0.4s ease;
}

.tc-faq-item.active .tc-faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.tc-faq-item.active .tc-faq-icon {
  transform: rotate(45deg);
  color: #1A71AC;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tc-faq-title {
    font-size: 17px;
  }

  .tc-faq-question {
    font-size: 14px;
  }
}