/* ==========================================================================
   1. CONTACT HERO & SECTION
   ========================================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 40vw, 420px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  overflow: hidden;
  background: url("./images/contactusbanner.webp") center/cover no-repeat;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40, 0, 80, 0.75), rgba(255, 80, 120, 0.65));
  z-index: 1;
  pointer-events: none;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.contact-hero h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
}
.contact-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background-image: url("./images/pattern.webp");
  background-color: #ffffff;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
}
/* ==========================================================================
   2. CONTACT FORM & CUSTOM SELECT
   ========================================================================== */
.contact-form {
  background: #ffffff;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}
.contact-form h2 {
  margin-bottom: 20px;
  font-size: clamp(22px, 3vw, 32px);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  font-size: clamp(14px, 1.2vw, 16px);
}
.contact-form textarea {
  border-radius: 12px;
  min-height: 120px;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000000;
}
.contact-form button {
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  background: linear-gradient(90deg, #3a7bd5, #ff5aa5);
}
.contact-info {
  padding: clamp(20px, 3vw, 40px);
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #3a7bd5, #ff5aa5);
}
.contact-info h2 {
  margin-bottom: 20px;
  font-size: clamp(22px, 3vw, 32px);
  text-align: center;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 12px;
  font-size: clamp(13px, 1vw, 14px);
}
.custom-select {
  position: relative;
  margin-bottom: 12px;
}
.select-box {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
}
.select-box .selected {
  color: #000000;
  font-size: 16px;
}
.select-box .arrow {
  font-size: 14px;
}
.options {
  position: absolute;
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  margin-top: 5px;
  display: none;
  z-index: 5;
  border: 1px solid #ddd;
}
.options .option {
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#typed-text {
  transition: all 0.4s ease;
}
.options .option:hover {
  background: #e0e0e0;
}

/* ==========================================================================
   3. ABOUT PAGE & TEAM SECTION
   ========================================================================== */
.product-banner {
  background: url("./images/about-usbanner.webp") center / cover no-repeat !important;
}
.about-banner {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 40vw, 420px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0;
  overflow: hidden;
  background: url("./images/banner-new.webp") center/cover no-repeat;
}
.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.about-page p {
  font-size: var(--fs-body);
  margin-bottom: clamp(6px, 1vw, 10px);
}
.about-page .about-image {
  width: 70%;
  display: flex;
  justify-content: flex-start;
}
.about-page .about-image img {
  width: 90%;
  height: auto;
  object-fit: contain;
}
.about-page-text h2 {
  font-size: clamp(24px, 4vw, 36px);
}
.team-sec {
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
}
.team-title {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
}
.team-info {
  color: var(--white);
  font-size: var(--fs-h3);
}
.team-info img {
  width: clamp(30px, 4vw + 10px, 50px);
  margin-bottom: 12px;
}
img.nth-img {
  width: clamp(85px, 5vw + 10px, 80px);
}
.team-card {
  padding: clamp(10px, 2vw, 20px);
}
.team-card h4 {
  margin-bottom: 8px;
}
.team-img {
  width: clamp(140px, 20vw, 240px);
  height: clamp(150px, 20vw, 240px);
  border-radius: 50%;
  object-fit: cover;
}
.role {
  font-size: var(--fs-h5);
  margin-bottom: 2px;
}
.desc {
  font-size: var(--fs-body);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.5;
}
.desc .role {
  font-size: var(--fs-body);
}
.team-member-card {
  overflow: hidden;
  position: relative;
}
.team-member-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-member-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}
.team-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(101%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.team-member-card:hover .team-info-overlay {
  transform: translateY(0);
}

/* ==========================================================================
   4. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-sec-new {
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  color: #ffffff;
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
.faq-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
}
.faq-heading {
  font-size: var(--fs-body);
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: clamp(10px, 1.5vw, 15px) 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: var(--fs-body);
}
.faq-icon {
  font-size: 20px;
  font-weight: bold;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: clamp(16px, 1vw, 13px);
  opacity: 0.8;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}
.faq-item.active .faq-icon::before {
  content: "−";
}
.faq-group-second {
  margin-top: 25px;
}
.page-id-123 {
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.08);
}
/* ==========================================================================
   5. PRODUCT GRID & POPUP MODAL
   ========================================================================== */
.product-sec {
  background: url("./images/pattern.webp");
}
.product-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(15px, 2vw, 25px);
}
.product-item {
  text-align: center;
}
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,linear-gradient(90deg, #0087cb, #e35ba1, #ffde8f) border-box;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.img-box {
  border-bottom: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,linear-gradient(90deg, #0087cb, #e35ba1, #ffde8f) border-box;
}
.img-box img {
  width: 100%;
  height: clamp(160px, 18vw, 200px);
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}
.title-box {
  padding: clamp(10px, 1.5vw, 14px);
}
.title-box h4 {
  font-size: clamp(12px, 1.2vw, 16px);
  margin: 0;
}
.btn-box {
  margin-top: 15px;
}
.btn-box button {
  padding: clamp(6px, 1vw, 10px) clamp(14px, 2vw, 22px);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: clamp(11px, 1vw, 14px);
  color: #ffffff;
  background: linear-gradient(79deg, #0087cb, #e35ba1);
  transition: opacity 0.3s ease;
}
.btn-box button:hover {
  opacity: 0.85;
}
.product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card .product-img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}.product-card .action-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .action-overlay {
  opacity: 1;
  transform: translateY(0);
}
.product-card .action-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.product-card .action-btn:hover {
  transform: scale(1.05);
}
.filter-btn {
  position: relative;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #ff5fa2, #ffa05f);
  border-radius: 30px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-btn:hover::before,
.filter-btn.active::before {
  transform: scaleX(1);
  transform-origin: left;
}
.filter-btn:hover,
.filter-btn.active {
  color: #ffffff;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 2;
}
.product-badge.sale {
  background: #ff3b30;
  box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
  animation: badgeGlow 2s infinite ease-in-out;
}
.product-badge.new {
  background: #34c759;
  box-shadow: 0 0 10px rgba(52, 199, 89, 0.4);
}
@keyframes badgeGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 59, 48, 0.8);
  }
}
.thumb-link {
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumb-link:hover,
.thumb-link.active {
  border-color: #ff5fa2;
  transform: translateY(-2px);
}

/* POPUP MODAL */
.product-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.product-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #ffffff;
  width: clamp(200px, 90%, 700px);
  border-radius: 20px;
  padding: 25px;
  position: relative;
}

.popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.popup-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555555;
}

.popup-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.popup-features li {
  font-size: 14px;
  margin-bottom: 8px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* Common Interactive Containers */
#industry,
#track,
#logoTrack {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.btn-gradient,
.btn,
.btn-md,
.primary,
.secondary {
  font-size: var(--fs-body);
}

/* ==========================================================================
   6. PILLARS & VALUE CARDS
   ========================================================================== */
.pillars {
  background: #f1f1f1;
}

.pillars-title {
  text-align: left;
  font-size: var(--fs-h2);
  margin-bottom: 50px;
  font-weight: 600;
}

.pillars-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.pillars-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  flex: 1;
}

.pillar-item {
  flex: 0 0 calc(50% - 30px);
  transition: transform 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-5px);
}

.pillar-item h4 {
  font-size: var(--fs-h5);
  margin-bottom: 8px;
}

.pillar-item p {
  font-size: var(--fs-body);
  color: #555555;
  line-height: 1.5;
}

.pillar-item span {
  font-weight: 800;
}

.pillar-item span:hover {
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  stroke: #000000;
  fill: none;
  mix-blend-mode: multiply;
}

.pillars-image {
  flex: 0 0 320px;
  text-align: center;
  perspective: 1000px;
}

.pillars-image img {
  width: 100%;
  max-width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: float 4s ease-in-out infinite;
}

.pillars-image:hover img {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.gradient-underline-heading {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 8px;
}

.gradient-underline-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0072CE 0%, #8A2BE2 33%, #E91E63 66%, #FF6F00 100%);
  transition: width 0.4s ease-in-out;
}

.gradient-underline-heading:hover::after {
  width: 40%;
}

.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #ff5fa2, #5f7cff, #ffa05f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(95, 124, 255, 0.15);
}

.value-card:hover::after {
  opacity: 1;
}

/* ==========================================================================
   7. VISION SECTION
   ========================================================================== */
.vision {
  position: relative;
  background: #f5f5f5;
  text-align: center;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url("./images/bc-img.webp") no-repeat center;
  background-size: contain;
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vision-title {
  font-size: var(--fs-h2);
  margin-bottom: 50px;
  font-weight: 600;
  background: linear-gradient(90deg, #5f7cff, #ff5fa2, #ffa05f);
  color: #ffffff;
}

.vision-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.vision-item {
  flex: 0 0 22%;
  text-align: center;
}

.vision-icon {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe, #ff5fa2, #ffa05f);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: pulse 3s infinite;
}

.vision-icon img {
  width: clamp(30px, 4vw, 45px);
  filter: brightness(0) invert(1);
}

.vision-item p {
  font-size: var(--fs-body);
  color: #333333;
  line-height: 1.4;
}

.vision-item:hover .vision-icon {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   8. ANIMATIONS & SCROLL TIMELINE
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
              transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-in-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered Delay for Child Elements */
.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.is-visible > *:nth-child(2) { transition-delay: 0.25s; }
.is-visible > *:nth-child(3) { transition-delay: 0.4s; }
.is-visible > *:nth-child(4) { transition-delay: 0.55s; }

.timeline-node {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #ff5fa2, #5f7cff);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
}

.timeline-node.is-visible::before {
  transform: scaleY(1);
}

/* ==========================================================================
   9. AWARD & RECOGNITION SECTION
   ========================================================================== */
.award-sec {
  background: #fdfaf6;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.award-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #a47327;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.3;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.award-card {
  max-width: 780px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0d5c1;
  padding: 20px 20px 0 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
  will-change: transform, box-shadow;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(164, 115, 39, 0.18);
}

.wire-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 12px;
}

.wire-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wire-menu-icon {
  font-size: 16px;
  cursor: pointer;
}

.wire-logo {
  font-size: 20px;
  letter-spacing: -0.5px;
  font-family: sans-serif;
}

.wire-nav-links {
  gap: 15px;
  font-weight: 600;
}

.wire-nav-links a {
  color: #333333;
  text-decoration: none;
  font-size: 11px;
}

.wire-lang-links {
  gap: 10px;
  color: #666666;
  font-size: 12px;
}

.award-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: visible !important;
  border: 1px solid #dcdcd3;
  margin-bottom: 25px;
}

.award-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-card:hover .award-main-img {
  transform: scale(1.02);
}

.award-trophy-overlay {
  position: absolute;
  bottom: -35px;
  right: -20px;
  width: clamp(140px, 22vw, 240px);
  z-index: 10;
  pointer-events: none;
  animation: awardTrophyFloat 4s ease-in-out infinite;
}

.award-trophy-img {
  width: 70%;
  height: auto;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes awardTrophyFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

.award-description {
  font-size: var(--fs-body);
  color: #333333;
  text-align: left;
  line-height: 1.5;
  margin: 25px 10px;
  font-weight: 500;
}

.award-footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  border-top: 1px solid #e2d9cc;
  padding: 12px 10px;
  margin: 0 -20px;
  gap: 10px;
}

.award-footer-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b73b9;
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 15px);
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.award-footer-bar .contact-item:hover {
  transform: translateY(-2px);
  color: #1e4b85;
}

.award-footer-bar .contact-item i {
  font-size: 18px;
}

.award-footer-bar .contact-item:last-child {
  color: #c8417c;
}

.award-footer-bar .contact-item:last-child:hover {
  color: #9d2456;
}

/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================================================== */
@media (max-width: 992px) {
  .gm-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .gm-title {
    padding: 0;
  }
  .gm-col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 15px;
  }
  .gm-item p {
    max-width: 120px;
    margin: auto;
    font-size: clamp(10px, 1.2vw, 16px);
  }
  .footer-bottom::after {
    content: "";
    transform: translateX(45px);
    width: 80%;
  }
  .faq-question,
  .faq-answer {
    font-size: clamp(16px, 1vw, 18px);
  }
  .about-page .about-image {
    justify-content: center;
  }
  .faq-heading {
    margin-bottom: 0;
  }
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillars-wrap {
    flex-direction: column;
    text-align: center;
  }
  .pillars-content {
    justify-content: center;
    gap: 10px 0;
  }
  .pillar-item {
    flex: 0 0 100%;
  }
  .pillars {padding: var(--py-md);}
  .pillars {text-align: center;padding-bottom: 0;}
  .pillars-title {margin-bottom: 20px;}


}

@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
  }
  .gm-icon img {
    width: 35%;
  }
  .team-info img {
    width: 45px;
  }
  .about-container {
    gap: 0;
  }
  .about-text h2 {
    margin-bottom: 15px;
  }
  .faq-question,
  .faq-answer {
    font-size: clamp(14px, 1vw, 18px);
  }
  .popup-grid {
    grid-template-columns: 1fr;
  }
  .popup-img img {
    height: 100px;
  }
  .vision-wrap {
    gap: 30px;
  }
  .vision-item {
    flex: 0 0 45%;
  }
  .gradient-underline-heading {
    padding-bottom: 6px;
  }
  .gradient-underline-heading::after {
    height: 3px;
  }
  .faq-sec-new {padding: var(--py-sm);}
  .faq-item.active .faq-icon::before {content: "−";display: none;}
  .vision-title {margin-bottom: 0;} 
  .vision-wrap {padding: var(--py-sm);}
  .about-container {padding: 0;}
  .pillars-wrap {gap: 30px;}
  .pillars-image {flex: 0 0 268px;}
  .hc-mm-nav {margin-top: clamp(15px, 3vw, 30px);}
}

@media (max-width: 576px) {
  .gm-item p {
    max-width: 200px;
  }
  .contact-wrapper {
    display: block;
  }
  .faq-title {
    margin-bottom: 20px;
  }
  .faq-question,
  .faq-answer {
    font-size: 12px;
  }
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form button {
    display: table;
    margin: 0 auto;
  }
  .vision-item {
    width: 100%;
  }
  .award-card {
    padding: 12px 12px 0 12px;
  }
  .award-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 8px;
  }
  body.hc-mm-open .hc-mm-panel {transform: translateX(clamp(-60px, -5vw, -10%));height: clamp(250px, 60vh, 60%); width: clamp(200px, 60vw, 65%);}
  .hc-mm-nav {margin-top: 35px;} 
}

@media (max-width: 379px) {
  .footer-bottom::after {
    content: "";
    transform: translateX(25px);
    width: 70%;
  }
  .team-card {
    padding: 0;
  }
  .team-info h4 {
    font-size: calc(1.275rem - 0.7vw);
  }
  .about-page .about-image {
    width: 90%;
  }
  .btn-box {
    margin-top: 10px;
  }
  .logo {
    width: 80%;
  }
  .award-trophy-overlay {width: 116px;}
  .vision-wrap {gap: 20px;}
  .about-container {padding: var(--py-sm);}
  .about-container {padding-bottom: 0;}
  .hc-mm-nav {margin-top: clamp(12px, 2.5vw, 30px);}
  body.hc-mm-open .hc-mm-panel {transform: translateX(-20%);height: 60%;width: 65%;}
  .hc-mm-nav {margin-top: 35px;}
}