*{
  letter-spacing: 0 !important;
}
/* Page - Exhibition Stall Fabricators in India */
/* Hero */
.modular-hero {
  padding: 1.5em 10px;
  background: #f5f5f5;
  border-top: 1px solid var(--border);
}

/* Mobile: remove left/right padding so hero touches screen edges */
@media (max-width: 767px) {
  .modular-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .modular-hero {
    padding: 1em 0;
  }
}

.modular-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.modular-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75em 0;
  width: 100%;
}

@media (min-width: 768px) {
  .modular-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .modular-hero-title {
    font-size: 4rem;
  }
}

.modular-hero-title-dark {
  color: #2C3034;
}

.modular-hero-title-red {
  color: #C6050E;
}

.modular-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-top: 15px;
}

.modular-hero-right-side {
  width: 100%;
}

@media (min-width: 1024px) {
  .modular-hero-content {
    /* Image ~col-12 (3x) + Form ~col-4 */
    grid-template-columns: 3fr 1fr;
  }
}

.modular-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}

.modular-hero-text {
  font-size: 1em;
  color: #4A5568;
  line-height: 1.6;
  margin: 0.25em 0 1.5em 0;
}

@media (min-width: 768px) {
  .modular-hero-text {
    font-size: 1.125em;
  }
}

.modular-hero-tags {
  overflow: hidden;
  margin-bottom: 1.5em;
}

.modular-hero-tags-track {
  display: flex;
  width: max-content;
  animation: modular-hero-tags-scroll 30s linear infinite;
}

.modular-hero-tags-group {
  display: flex;
  flex-shrink: 0;
  gap: 0.5em;
  padding-right: 0.5em;
}

@keyframes modular-hero-tags-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.modular-hero-tag {
  display: inline-block;
  flex-shrink: 0;
  background-color: #FFFFFF;
  color: #1b2232;
  font-size: 0.75em;
  padding: 0.4em 0.875em;
  border: 0.0625em solid #E2E8F0;
  border-radius: 2em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.modular-hero-tag:hover {
  background-color: #C6050E;
  color: #FFFFFF;
  border-color: #C6050E;
  /*transform: translateY(-0.125em) scale(1.05);*/
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
}

@media (min-width: 768px) {
  .modular-hero-tag {
    font-size: 0.875em;
    padding: 0.5em 1em;
  }
}

.modular-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  align-self: flex-start;
  background-color: #C6050E;
  color: #FFFFFF !important;
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.75em 1.25em;
  border-radius: 0.5em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .modular-hero-cta {
    width: auto;
    font-size: 1em;
    padding: 0.75em 1.5em;
  }
}
.modular-page a.modular-hero-cta:hover {
  transform: translateY(-0.0625em);
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
  background-color: rgba(198, 5, 14, 0.95);
}

.modular-hero-cta-arrow {
  font-size: 1.125em;
}

.blog-hero-meta {
  margin: 0 0 1rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modular-hero-right {
  position: relative;
  border: 2px solid rgb(198, 5, 14);
  border-radius: 14px;
  padding: 8px;
}

.modular-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.modular-hero-right:hover .modular-hero-image {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* Counter / Stats - Moved to modular-common.css */

/* Know Us */
.modular-knowus {
  background-color: #FFFFFF;
  padding: 2em 0;
}

@media (min-width: 768px) {
  .modular-knowus {
    padding: 3em 0;
  }
}

.modular-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0 0 2em 0;
}

@media (min-width: 768px) {
  .modular-section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .modular-section-title {
    font-size: 3rem;
  }
}

.modular-knowus-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  align-items: center;
}

@media (min-width: 1024px) {
  .modular-knowus-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3em;
  }
}

@media (min-width: 1024px) {
  .modular-knowus-inner {
    gap: 4em;
  }
}

.modular-knowus-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.modular-knowus-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.25em 0;
}

@media (min-width: 768px) {
  .modular-knowus-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .modular-knowus-heading {
    font-size: 3rem;
  }
}

.modular-knowus-heading-accent {
  color: #C6050E;
}

.modular-knowus-text {
  font-size: 1em;
  line-height: 1.625;
  color: #4A5568;
  margin: 0;
}

@media (min-width: 768px) {
  .modular-knowus-text {
    font-size: 1.125em;
  }
}

.modular-knowus-image-wrap {
  border-radius: 1.25em;
  overflow: hidden;
  box-shadow: 0 1.25em 2.5em -0.5em rgba(0, 0, 0, 0.15), 0 0.5em 1em -0.5em rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.modular-knowus-image-wrap:hover {
  box-shadow: 0 1.5em 3em -0.5em rgba(0, 0, 0, 0.2), 0 0.75em 1.5em -0.5em rgba(0, 0, 0, 0.15);
}

.modular-knowus-image {
  width: 100%;
  height: 20em;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (min-width: 768px) {
  .modular-knowus-image {
    height: 25em;
  }
}

.modular-knowus-image-wrap:hover .modular-knowus-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}

@media (min-width: 1024px) {
  .modular-knowus-image {
    height: 30em;
  }
}

/* Why Choose Us */
.modular-whychoose {
  background-color: #F0F0F0;
  padding: 2em 0;
  color: #2C3034;
}

.modular-whychoose-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
}

.modular-whychoose-header {
  text-align: center;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .modular-whychoose-header {
    margin-bottom: 2em;
  }
}

.modular-whychoose-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3034;
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .modular-whychoose-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .modular-whychoose-title {
    font-size: 3rem;
  }
}

.modular-whychoose-accent {
  color: #C6050E;
}

/* New banner-style content */
.modular-whychoose-hero {
  margin-bottom: 2rem;
}

.modular-whychoose-subtitle {
  margin: 0.5rem auto 0;
  max-width: 900px;
  color: #4A5568;
  font-size: 1.05rem;
  line-height: 1.7;
}

.modular-whychoose-points {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

.modular-whychoose-points li {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 1.4rem 0.85rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  color: #2C3034;
  font-size: 1rem;
  text-align: center;
  flex-direction: column;
}

.modular-whychoose-icon {
  color: #C6050E;
}

.modular-whychoose-count {
  font-size: 1.15rem;
  font-weight: 800;
  color: #C6050E;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.modular-whychoose-content {
  font-size: 1rem;
  font-weight: 700;
  color: #2C3034;
  line-height: 1.35;
}

.modular-whychoose-points li svg {
  width: 32px;
  height: 32px;
  color: #C6050E;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .modular-whychoose-subtitle {
    font-size: 1.15rem;
  }

  .modular-whychoose-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .modular-whychoose-title {
    font-size: 2.8rem;
  }

  .modular-whychoose-points {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.modular-whychoose-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  align-items: start;
}

/* Ensure images always come first on mobile/tablet */
.modular-whychoose-image-wrap {
  order: 1;
}

.modular-whychoose-content {
  order: 2;
}

@media (min-width: 1024px) {
  .modular-whychoose-block {
    grid-template-columns: 1fr 1fr;
    gap: 3em;
  }
  
  /* Reset order on desktop - let HTML order determine the zig-zag layout */
  .modular-whychoose-image-wrap {
    order: initial;
  }
  
  .modular-whychoose-content {
    order: initial;
  }
}

.modular-whychoose-block-mt {
  margin-top: 2em;
}

.modular-whychoose-image-wrap {
  border-radius: 0.75em;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.modular-whychoose-image-wrap:hover {
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1);
}

.modular-whychoose-image {
  width: 100%;
  height: 20em;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (min-width: 768px) {
  .modular-whychoose-image {
    height: 25em;
  }
}

.modular-whychoose-image-wrap:hover .modular-whychoose-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}

@media (min-width: 1024px) {
  .modular-whychoose-image {
    height: auto;
  }
}

.modular-whychoose-content {
  display: flex;
  flex-direction: column;
  gap: 0em;
}

.modular-whychoose-item {
  margin-bottom: 0;
}

.modular-whychoose-subheading {
  font-size: 1.125em;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
  .modular-whychoose-subheading {
    font-size: 1.25em;
  }
}

.modular-whychoose-block-heading {
  font-size: 1.125em;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.25em 0;
}

@media (min-width: 768px) {
  .modular-whychoose-block-heading {
    font-size: 1.25em;
  }
}

@media (min-width: 1024px) {
  .modular-whychoose-block-heading {
    font-size: 1.5em;
  }
}

.modular-whychoose-text {
  font-size: 1em;
  color: #4A5568;
  line-height: 1.625;
  margin: 0;
}

.modular-whychoose-text-bold {
  font-weight: 500;
}

.modular-whychoose-text-semibold {
  font-weight: 600;
}

.modular-whychoose-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.modular-whychoose-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 1em;
  color: #4A5568;
  line-height: 1.625;
}

.modular-whychoose-bullet {
  color: #C6050E;
  flex-shrink: 0;
}
.custom-faq-title{
    font-size: 2rem !important;
}  
/* Pop up display stand page */ 
.section-sub-heading{
  margin-top: 20px !important;
  margin-bottom: 5px !important;
  font-weight: 600 !important;
}
.modular-whychoose-subtext{
    margin: 0 0 0.75rem !important;
    color: inherit !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    font-weight: 400;
}
.modular-whychoose-key-features{
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
.leading-snug{
  padding-left: 7px;
}
/* Exhibition Stand Design */
.exhibition-stand-design-heading{
  font-size: 1.6rem !important;
}
.stand-design-list {
    list-style: none; /* remove default bullet */
    padding-left: 0;
    margin: 0;
}
.stand-design-list li {
    position: relative;
    padding-left: 28px!important; /* space for custom bullet */
    margin-bottom: 5px!important;
    font-size: 18px;
    line-height: 1.6;
    color: #6f5a55;
}
.stand-design-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #6f5a55; /* bullet color */
    border-radius: 50%;
}
.stand-design-list-content {
    font-weight: 600;
}
.stand-design-list-content span {
    font-weight: 400;
    color: #6f5a55;
}
.stand-design-list li:last-child {
    margin-bottom: 0;
}
/* Trade Show Booth Page */
.why-choose-second-heading{
  font-weight: 500 !important;
  font-size: 1.3rem !important;

}
/* Custom Exhibition Stall Design Build Page */
.why-choose-topic-heading{
  font-weight: 700 !important;
    font-size: 1rem !important;
}
/* Magnetic Pop Up Display Stand Page */
.magnetic-hero-heading{
  font-size: 1.9rem !important;
}
/* About US Page Css */
.years-of-excellence-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 1em;
  width: fit-content;
  background-color: #FDE8EC;
  border: 1px solid #CC0000;
  border-radius: 9999px;
  margin-bottom: 1em;
}

.years-of-excellence-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  background-color: #CC0000;
  border-radius: 50%;
}

.years-of-excellence-text {
  color: #CC0000;
  font-size: 0.875em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em !important;
}

.modular-hero-left svg {
  color: #C6050E;
}
.hero-tag-wrapper{
  margin-bottom: 35px;
  display: flex;
  column-gap: 25px;
  margin-top: 10px;
}
.hero-tag-items{
  display: flex;
  align-items: center;
  gap: 0.5em;
}

/* Our Journey styles are handled via utility classes in HTML */
.milestone { 
  background: #fafafa; 
  padding: 2rem 3rem; 
  overflow: hidden; 
}
.milestone h2 { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 800; 
  text-align: center; 
  text-transform: uppercase; 
  letter-spacing: .05em; 
  margin-bottom: 2.5rem!important; 
}
.timeline { 
  display: flex; 
  justify-content: space-between; 
  position: relative; 
  padding: 6rem 0; 
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2%;
  right: 2%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  transform: translateY(-50%);
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  z-index: 1;
}
.timeline-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.timeline-circle::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline-circle::after {
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline-year { 
  font-size: .85rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: .25rem; 
}
.timeline-label {
  font-size: .6rem;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}
.timeline-item.top .timeline-label { 
  position: absolute; 
  bottom: calc(50% + 50px); 
}
.timeline-item.top .timeline-year { 
  position: absolute; 
  bottom: calc(50% - 30px); 
  transform: translateY(50%); 
}
.timeline-item.top .timeline-circle { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
}
.timeline-item.top .timeline-stem {
  position: absolute;
  bottom: calc(50% + 14px);
  width: 3px;
  height: 28px;
  background: var(--primary);
  border-radius: 2px;
}
.timeline-item.bottom .timeline-label { 
  position: absolute; 
  top: calc(50% + 50px); 
}
.timeline-item.bottom .timeline-year { 
  position: absolute; 
  top: calc(50% - 30px); 
  transform: translateY(-50%); 
}
.timeline-item.bottom .timeline-circle { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
}
.timeline-item.bottom .timeline-stem {
  position: absolute;
  top: calc(50% + 14px);
  width: 3px;
  height: 28px;
  background: var(--primary);
  border-radius: 2px;
}

/* Our Capabilities */
.capabilities {
  padding: 2rem 0 !important;
  background:#fafafa !important;
}

.capabilities-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

.capabilities-title {
  text-align: center !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c6050e !important;
  margin-bottom: 2.5rem !important;
}

.cap-block {
  padding: 2rem 1.5rem !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
  margin-bottom: 2.5rem !important;
}

.cap-block-header {
  margin-bottom: 1.5rem !important;
}

.cap-block-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 999px !important;
  background: rgba(198, 5, 14, 0.06) !important;
  margin-bottom: 0.75rem !important;
}

.cap-block-pill-india {
  background: rgba(198, 5, 14, 0.08) !important;
}

.cap-block-pill-icon {
  width: 20px !important;
  height: 20px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c6050e !important;
  font-size: 0.8rem !important;
}

.cap-block-pill-text {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #4b5563 !important;
}

.cap-block-heading {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 !important;
}

.cap-highlight {
  color: #c6050e !important;
}

.cap-block-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.cap-block-text p {
  margin: 0 0 0.75rem 0 !important;
  font-size: 0.95rem !important;
  color: #4b5563 !important;
}

.cap-block-text ul {
  margin: 0.25rem 0 0 !important;
  padding-left: 1.1rem !important;
  font-size: 0.95rem !important;
  color: #4b5563 !important;
}

.cap-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem !important;
}

.cap-subheading {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin: 0 0 0.4rem 0 !important;
}

.cap-stats-grid { 
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
}

.cap-stat-card {
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 0.85rem 0.9rem !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.1rem !important;
}

.cap-stat-icon {
  width: 26px !important;
  height: 26px !important;
  border-radius: 999px !important;
  background: rgba(198, 5, 14, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c6050e !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.25rem !important;
}

.cap-stat-value {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.cap-stat-label {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
}

/* Our Team */
.team-section {
  padding: 2rem !important;
  background: #ffffff !important;
}
.team-title{
  margin-bottom: 8px !important;
}
.team-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.team-header {
  text-align: center !important;
  margin-bottom: 2.25rem !important;
}

.team-kicker {
  font-size: 0.9rem !important;
  color: #6b7280 !important;
  margin: 0 !important;
  margin-bottom: 18px !important;
}

.team-intro {
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: left !important;
  color: #4b5563 !important;
}

.team-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1rem 2rem !important;
  margin-top: 2rem !important;
}

.team-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid rgba(148, 163, 184, 0.25) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.team-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18) !important;
  border-color: rgba(198, 5, 14, 0.35) !important;
}

.team-photo {
  width: 100% !important;
  height: 220px !important;           /* uniform height for all photos */
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #e5e7eb !important;
}

.team-photo img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;       /* edge‑to‑edge, no circles */
  border-radius: 12px 12px 0 0 !important;
  filter: none !important;
  transition: transform 0.25s ease !important;
}

.team-card:hover .team-photo img {
  transform: scale(1.03) !important;
}

.team-info {
  padding: 0.75rem 0.9rem 0.9rem !important;
}

.team-name {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 0.25rem 0 !important;
}

.team-role {
  font-size: 0.8rem !important;
  color: #c6050e !important;
  margin: 0 !important;
}

/* Default vertical padding for sections on this page */
.modular-page section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.modular-hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 0.5em 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .modular-hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Contact page - Get In Touch + Get Free Quote */
.contact-touch-section {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #fff7f7 0%, #ffffff 40%, #fff7f7 100%);
}

.contact-touch-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-touch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-touch-left {
  display: flex;
  flex-direction: column;
}

.contact-touch-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.75rem 0;
  color: #111827;
}

.contact-touch-title span {
  color: #c6050e;
}

.contact-touch-text {
  margin: 0 0 1.75rem 0;
  color: #4b5563;
  font-size: 0.975rem;
  line-height: 1.7;
}

.contact-touch-text-intro {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.contact-touch-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-touch-card {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-touch-card:hover {
  border-color: rgba(198, 5, 14, 0.28);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

.contact-touch-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9rem;
  font-size: 1.25rem;
}

.contact-touch-card-icon-phone,
.contact-touch-card-icon-mail,
.contact-touch-card-icon-web {
  background: #fee2e2;
  color: #b91c1c;
}

.contact-touch-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.contact-touch-card-label {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #9ca3af !important;
  margin: 0 0 0.1rem 0 !important;
}

.contact-touch-card-value {
  margin: 0 !important;
  font-size: 0.97rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

.contact-touch-card-arrow {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.contact-touch-card:hover .contact-touch-card-arrow {
  color: #c6050e;
}

.contact-touch-social {
  margin-top: auto;
}

.contact-touch-social-label {
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #9ca3af !important;
  margin: 0 0 0.75rem 0 !important;
}

.contact-touch-social-icons {
  display: flex !important;
  gap: 0.6rem !important;
}

.contact-social-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 0.9rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.contact-social-icon:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25) !important;
}

.contact-social-icon-fb {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(221 44% 41% / var(--tw-bg-opacity, 1)) !important;
}

.contact-social-icon-in {
  background: #0ea5e9 !important;
}

.contact-social-icon-ig {
  background: radial-gradient(circle at 30% 30%, #f97316, #db2777, #7c3aed) !important;
}

.contact-social-icon-yt {
  background: #ef4444 !important;
}

.contact-touch-right {
  display: flex;
  align-items: stretch;
}

.contact-quote-card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.4rem 1.5rem 1.25rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-top: 4px solid #f97373;
}

.contact-quote-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-quote-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #b91c1c;
}

.contact-quote-title {
  margin: 0 0 0.1rem 0 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.contact-quote-subtitle {
  margin: 0 !important;
  font-size: 0.78rem !important;
  color: #9ca3af !important;
}

.contact-quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.contact-quote-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-quote-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.contact-quote-field input {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  outline: none;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-quote-field input:focus {
  border-color: #c6050e;
  box-shadow: 0 0 0 2px rgba(198, 5, 14, 0.2);
  background-color: #ffffff;
}

.contact-quote-button {
  margin-top: 0.4rem;
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  background: #c6050e;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.contact-quote-button:hover {
  background: #b1040c;
}

.contact-quote-button-arrow {
  font-size: 1rem;
}

.contact-quote-meta {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.contact-quote-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.contact-quote-meta-item svg {
  width: 16px;
  height: 16px;
}

.contact-quote-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c6050e;
}

/* Contact page - Our Offices */
.contact-offices-section {
  padding: 2.5rem 0 2.5rem;
  background: #f3f4f6;
}

.contact-offices-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-offices-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-offices-title {
  margin: 0 0 0.1rem 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0!important;
}

.contact-offices-title-accent {
  color: #c6050e !important;
}

.contact-offices-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-office-card {
  background: #ffffff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.contact-office-card-primary .contact-office-card-header {
  background: #c6050e;
  color: #ffffff;
}

.contact-office-card-primary .contact-office-pill {
  color: rgba(255, 255, 255, 0.9);
}

.contact-office-card-header {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  background: #ffffff;
}

.contact-office-pill {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.contact-office-title-row {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-office-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.contact-office-title-icon-outline {
  background: #ffffff;
  color: #c6050e;
  border: 1px solid rgba(198, 5, 14, 0.15);
}

.contact-office-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
}

.contact-office-card-heading {
  font-size: 1.1rem !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
}

.contact-office-card-primary .contact-office-title {
  color: #ffffff!important;
}

.contact-office-body {
  padding: 1rem 1.2rem 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-office-body-multi {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-office-badge {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: #c6050e;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.contact-office-address {
  margin: 0 0 0.4rem 0;
  line-height: 1.5;
}

.contact-office-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #4b5563;
}

.contact-office-row + .contact-office-row {
  margin-top: 0.75rem;
}

.contact-office-row-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  margin-top: 2px;
}

.contact-office-row-address {
  align-items: flex-start;
}

.contact-office-row-address .contact-office-row-icon {
  margin-top: 3px;
}

.contact-office-row-address .contact-office-row-text {
  line-height: 1.5;
}

.contact-office-divider {
  margin: 0.7rem 0;
  border-top: 1px solid #e5e7eb;
}

.contact-office-hours {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.contact-offices-section svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   Contact page - Offices Across the World
   ======================================== */
.contact-world-section {
  padding: 2.5rem 0 2.5rem;
  background: #f8f9fa;
}

.contact-world-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-world-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-world-title {
  margin: 0 0 0.4rem 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0!important;
}

.contact-world-title-accent {
  color: #c6050e !important;
}

.contact-world-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.contact-world-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.contact-world-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.contact-world-card-wide {
  grid-column: span 6;
}

.contact-world-card:not(.contact-world-card-wide) {
  grid-column: span 2;
}

.contact-world-card-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-world-pill {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.contact-world-region {
  margin: 0.25rem 0 0 0;
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #111827;
}

.contact-world-body {
  padding: 1rem 1rem 1rem;
  font-size: 0.88rem;
  color: #4b5563;
  flex: 1;
}

.contact-world-body-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

.contact-world-col {
  min-width: 0;
}

.contact-world-location {
  margin-bottom: 0;
}

.contact-world-location-title {
  margin: 0 0 0.5rem 0;
  font-size: 1rem !important;
  font-weight: 700;
  color: #111827;
}

.contact-world-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4b5563;
  margin-top: 0.2rem;
}

.contact-world-row-address {
  align-items: flex-start;
}

.contact-world-row-address .contact-world-row-icon {
  margin-top: 5px;
}

.contact-world-row-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c6050e;
}

.contact-world-row-text {
  line-height: 1.5;
}

.contact-world-section svg {
  width: 16px;
  height: 16px;
}
.our-work-title{
  margin-bottom: 0!important;
}

/* Blog category bar (blogs-main-page) */
.category-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.category-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.category-slider {
  position: relative;
  display: flex;
  gap: 0.5rem;
}

.category-tags {
  margin: 0;
}

/* Blog slider tags (independent of hero tags) */
.blog-tag-fixed {
  flex-shrink: 0;
}

.blog-tags-scroll {
  flex: 1 1 auto;
  overflow: hidden;
}

.blog-tags {
  width: max-content;
}

.blog-tags-track {
  display: flex;
  width: max-content;
  animation: blog-tags-scroll 30s linear infinite;
}

.blog-tags-group {
  display: flex;
  flex-shrink: 0;
  gap: 0.5em;
  padding-right: 0.5em;
}

@keyframes blog-tags-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.blog-tag {
  display: inline-block;
  flex-shrink: 0;
  background-color: #ffffff;
  color: #1b2232;
  font-size: 0.8em;
  padding: 0.45em 1em;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-tag:hover {
  background-color: #C6050E;
  color: #FFFFFF;
  border-color: #C6050E;
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
}

.blog-tag--active {
  background-color: #C6050E;
  color: #FFFFFF!important;
  border-color: #C6050E;
  font-weight: 600;
}

/* Blogs main listing layout (blogs-main-page) */
.blogs-layout {
  padding: 10px !important;
}

.blogs-layout-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 0.9fr) !important;
  gap: 1.75rem !important;
  align-items: flex-start !important;
}

.blogs-main {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
}

.blog-card {
  display: flex !important;
  gap: 1.25rem !important;
  background: #ffffff !important;
  border-radius: 1rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
}

.blog-card-media {
  flex: 0 0 260px !important;
}

.blog-card-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.blog-card-body {
  flex: 1 1 auto !important;
  padding: 1rem 1.25rem 1.1rem 0 !important;
}

.blog-card-date {
  margin: 0 0 0.25rem 0 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #9ca3af !important;
}

.blog-card-title {
  margin: 0 0 0.4rem 0 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.blog-card-excerpt {
  margin: 0 0 0.75rem 0 !important;
  font-size: 0.9rem !important;
  color: #4b5563 !important;
  line-height: 1.5 !important;
}

.blog-card-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px !important;
  background: #c6050e !important;
  color: #ffffff !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.blogs-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  align-self: flex-start !important;
  position: relative !important;
}

.blogs-widget {
  background: #ffffff !important;
  border-radius: 0.75rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08) !important;
  padding: 1rem 1.1rem 1.1rem !important;
}

.blogs-widget-toc {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 90px !important;
  z-index: 5 !important;
}

.blogs-widget-title {
  margin: 0 0 0.6rem 0 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.blogs-widget-separator {
  height: 1px;
  background: #e5e7eb;
  margin: 0 0 0.85rem 0;
}

.blogs-widget-list {
  list-style: disc !important;
  padding: 0 0 0 1.1rem !important;
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: #4b5563 !important;
}

.blogs-widget-list li + li {
  margin-top: 0.35rem !important;
}

.blogs-widget-list--scroll {
  max-height: 8.5rem;
  overflow-y: auto;
  padding-right: 0.25rem !important;
}

/* Subtle custom scrollbar for services list */
.blogs-widget-list--scroll::-webkit-scrollbar {
  width: 6px;
}

.blogs-widget-list--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.blogs-widget-list--scroll::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}

.blogs-widget-list--scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

.blogs-widget-media img {
  width: 100% !important;
  border-radius: 0.75rem !important;
  display: block !important;
}

.blogs-widget-heading {
  margin: 0.6rem 0 0.1rem 0 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.blogs-widget-caption {
  margin: 0 !important;
  font-size: 0.8rem !important;
  color: #6b7280 !important;
}

.blogs-widget-quote {
  padding-top: 1.2rem !important;
}

.blogs-widget-subtitle {
  margin: 0 0 0.75rem 0 !important;
  font-size: 0.8rem !important;
  color: #6b7280 !important;
}

.blogs-quote-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.blogs-quote-input {
  border-radius: 0.6rem !important;
  border: 1px solid #e5e7eb !important;
  padding: 0.45rem 0.6rem !important;
  font-size: 0.85rem !important;
}

.blogs-quote-button {
  margin-top: 0.25rem !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0.6rem !important;
  padding: 0.6rem 0.75rem !important;
  background: #c6050e !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

/* Blog detail page */
.blog-detail-meta {
  margin: 0.35rem 0 2rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000!important;
}

.blog-detail-meta-item {
  white-space: nowrap;
}

.blog-detail-meta-separator {
  opacity: 0.7;
}

.blogs-widget-toc .blogs-toc-list {
  list-style: none;
  padding: 0.25rem 0 0.25rem 0;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
  max-height: 15.5rem !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

.blogs-widget-toc .blogs-toc-list::-webkit-scrollbar {
  width: 6px;
}

.blogs-widget-toc .blogs-toc-list::-webkit-scrollbar-track {
  background: transparent;
}

.blogs-widget-toc .blogs-toc-list::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}

.blogs-toc-list li + li {
  margin-top: 0.35rem!important;
}

.blogs-toc-list a {
  text-decoration: none;
  color: inherit;
}

.blogs-toc-list a:hover {
  color: #c6050e;
}

.blogs-toc-index {
  font-weight: 600;
  margin-right: 0.25rem;
}

.blogs-toc-faqs {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.3rem 0 0 0;
  font-size: 0.85rem;
}

/* Global sticky quick-contact buttons */
.quick-contact-buttons {
  position: fixed !important;
  right: 18px !important;
  bottom: 22vh !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  z-index: 50 !important;
}

.quick-contact-button {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease !important;
  opacity: 0.96 !important;
}

.quick-contact-button:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.45) !important;
}

.quick-contact-email {
  background: #4b5563 !important;
}

.quick-contact-call {
  background: #c6050e !important;
}

.quick-contact-whatsapp {
  background: #22c55e !important;
}

.quick-contact-icon {
  font-size: 1.1rem !important;
  line-height: 1 !important;
}

/* Exhibition Stand Builders - Our Booth Solutions cards */
.custom-blog-card-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 0.75rem 0 !important;
  font-size: 0.85rem !important;
  color: #4b5563 !important;
}

.custom-blog-card-list li + li {
  margin-top: 0.25rem !important;
}

.custom-blog-card-cta {
  display: none !important;
}

/* Blog detail - summary box */
.blog-summary {
  margin: 0 0 1.75rem 0 !important;
  padding: 1.5rem 1.75rem !important;
  background: #f3f4f6 !important;
  border-radius: 0.5rem !important;
  border-left: 4px solid #c6050e !important;
}

.blog-summary-heading {
  margin: 0 0 0.75rem 0 !important;
  font-size: 0.95rem !important;
  color: #111827 !important;
}

.blog-summary-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-summary-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  font-size: 0.95rem !important;
  color: #4b5563 !important;
}

.blog-summary-list li + li {
  margin-top: 0.4rem !important;
}

.blog-summary-list li::before {
  content: "✓";
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: #c6050e;
}

.blog-summary-share {
  margin-top: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.blog-summary-share-label {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
}

.blog-summary-share-icons {
  display: flex !important;
  gap: 0.5rem !important;
}

.blog-summary-share-icons a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  border: 1px solid #e5e7eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280 !important;
  background: #ffffff !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

.blog-summary-share-icons a:hover {
  background: #c6050e !important;
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(198, 5, 14, 0.35) !important;
}

/* Blog detail - body sections */
.blog-detail-section {
  margin: 1.75rem 0 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #4b5563 !important;
}

.blog-detail-heading {
  margin: 0 0 0.75rem 0 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.blog-detail-heading-index {
  color: #c6050e !important;
  margin-right: 0.15rem !important;
}

.blog-detail-heading-main {
  color: #111827 !important;
}

.blog-detail-section p {
  margin: 0 0 0.75rem 0 !important;
}

.blog-detail-list {
  margin: 0.25rem 0 0.75rem 0 !important;
  padding-left: 1.25rem !important;
}

.blog-detail-list li {
  margin-bottom: 0.25rem !important;
}

.blog-detail-section-conclusion .blog-detail-heading-conclusion,
.blog-detail-section-faqs .blog-detail-heading-faqs {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #c6050e !important;
}

.blog-detail-faq h3 {
  margin: 0 0 0.3rem 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

.blog-detail-faq + .blog-detail-faq {
  margin-top: 0.75rem !important;
}

.related-articles {
  padding: 3rem 0 3.5rem !important;
  background: #f9fafb;
}

.related-articles-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1.25rem !important;
}

.related-articles-title {
  margin: 0 0 1.2rem 0 !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  position: relative !important;
}

.related-articles-title::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0.1rem;
  width: 4px;
  height: 2rem;
  border-radius: 999px;
  background: #c6050e;
}

.related-articles-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.related-card {
  background: #ffffff !important;
  border-radius: 1rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16) !important;
  border-color: rgba(198, 5, 14, 0.35) !important;
}

.related-card-media img {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  object-fit: fill !important;
}

.related-card-body {
  padding: 0.9rem 1rem 1.1rem !important;
}

.related-card-tag {
  margin: 0 0 0.25rem 0 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #c6050e !important;
}

.related-card-title {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  line-height: 1.4 !important;
}

/* Exhibition Stand Builders page - sticky quick contact buttons */
.esb-quick-contact {
  position: fixed !important;
  right: 0px !important;
  top: 50% !important;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  z-index: 9999 !important;
}

.esb-quick-contact-btn {
  width: 46px !important;
  height: 46px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease !important;
  opacity: 0.98 !important;
}

.esb-quick-contact-btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.45) !important;
}

.esb-quick-contact-icon {
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1 !important;
  transition: transform 0.18s ease !important;
}

.esb-quick-contact-email {
  background: #1d4ed8 !important;
}

.esb-quick-contact-call {
  background: #c6050e !important;
}

.esb-quick-contact-whatsapp {
  background: #16a34a !important;
}

.esb-quick-contact-btn:hover .esb-quick-contact-icon {
  transform: scale(1.06);
}

@media (max-width: 767px) {
  .esb-quick-contact {
    display: none !important;
  }
}

/* Exhibition Stand Builders - mobile fixed WhatsApp / Call buttons */
.mobile-fixed-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 9999;
}

.mobile-fixed-buttons .mobile-btn {
  flex: 1 1 50%;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff!important;
  text-decoration: none;
}

.mobile-btn-whatsapp {
  background-color: #c6050e!important;
}

.mobile-btn-call {
  background-color: #333333!important;
}
.custom-blog-card-image{
  height: 12em !important;
}
@media (max-width: 767px) {
  .mobile-fixed-buttons {
    display: flex;
  }
}

/* Double Decker Booth page */
.double-decker-booth-heading{
  font-size: 1.9rem !important;
}
/* Country Pavilion Exhibition Stand Design Contractor page */
.fa-check-circle-o::before{
  color: #c6050e
}
/* How We Work section (our-services.html) */
.how-we-work {
  padding: 2.8rem 0 3rem !important;
  background: #f3f5f8 !important;
  position: relative !important;
  overflow: hidden !important;
}

.how-we-work-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.how-we-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(198, 5, 14, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 5, 14, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(198, 5, 14, 0.07) 1px, transparent 1px);
  background-size: 28px 28px, 84px 84px, 84px 84px;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.how-we-work-header {
  text-align: center !important;
  margin-bottom: 1.8rem !important;
}

.how-we-work-title {
  margin: 0 0 0.35rem 0 !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.how-we-work-title-accent {
  color: #C6050E !important;
}

.how-we-work-subtitle {
  margin: 0 !important;
  font-size: 0.95rem !important;
  color: #4b5563 !important;
}

.how-we-work-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 335px) !important;
  grid-template-rows: auto auto !important;
  gap: 2.5rem 3rem !important;
  align-items: start !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 1.6rem 0 0 0 !important;
  justify-content: center !important;
}

.how-we-work-grid::after {
  content: "";
  position: absolute !important;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    repeating-linear-gradient(to right,
      rgba(198, 5, 14, 0.20) 0 2px,
      transparent 2px 246px),
    repeating-linear-gradient(to bottom,
      rgba(198, 5, 14, 0.14) 0 2px,
      transparent 2px 232px);
}

.how-work-connector {
  position: absolute !important;
  top: -10px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 40px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.how-step-card {
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06) !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
  padding: 1.25rem 1rem 1.05rem !important;
  overflow: visible !important;
  border-radius: 18px !important;
  min-height: 190px !important;
}

/* Outer colored outline */
.how-step-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(198, 5, 14, 0.42), rgba(198, 5, 14, 0.10));
  z-index: 0;
  opacity: 1;
}

/* Inner white fill + subtle ring */
.how-step-card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: #ffffff;
  border: 4px solid rgba(198, 5, 14, 0.14);
  z-index: 1;
}

.how-step-card-top {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin-bottom: 0.3rem !important;
}

.how-step-card-top-left .w-12 {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  border: 2px solid rgba(198, 5, 14, 0.16) !important;
  color: #c6050e !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 0.65rem 0 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
}

.how-step-card-top-left .w-12 svg {
  width: 34px !important;
  height: 34px !important;
  display: block !important;
}

.how-step-card-top-right {
  text-align: center !important;
}

.how-step-badge {
  display: none !important;
}

.how-step-title {
  margin: 0 !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  color: #c6050e !important;
  line-height: 1.25 !important;
  text-align: center !important;
  margin-top: 0.1rem !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

.how-step-text {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  padding: 0 0.4rem !important;
  font-size: 0.88rem !important;
  color: #4b5563 !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

@media (max-width: 1024px) {
  .how-we-work-grid {
    gap: 2.2rem 1rem !important;
  }
  .how-step-card { padding: 1.15rem 0.95rem 1rem !important; }
}

@media (max-width: 900px) {
  .how-we-work-grid {
    grid-template-columns: repeat(2, 220px) !important;
    justify-content: center !important;
    gap: 2rem 1.1rem !important;
  }

  .how-work-connector {
    display: none !important;
  }
  .how-we-work-grid::after {
    background-image:
      repeating-linear-gradient(to right,
        rgba(198, 5, 14, 0.18) 0 2px,
        transparent 2px 238px),
      repeating-linear-gradient(to bottom,
        rgba(198, 5, 14, 0.12) 0 2px,
        transparent 2px 232px);
  }
}

@media (max-width: 640px) {
  .how-we-work-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
    gap: 1.35rem !important;
    padding-top: 0.35rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .how-work-connector {
    display: none !important;
  }
  .how-step-card {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
  }

  /* Reduce outer ring overlap so cards feel spaced */
  .how-step-card::before {
    inset: -6px !important;
  }

  .how-step-card::after {
    inset: -2px !important;
  }

  .how-we-work-grid::after {
    background-image:
      repeating-linear-gradient(to bottom,
        rgba(198, 5, 14, 0.18) 0 2px,
        transparent 2px 232px);
  }
}
.landing-page-hero{
  padding: 1.5rem 55px!important;
}
.landing-page-hero-content{
  grid-template-columns: 2fr 1fr !important;
}
@media (max-width: 767px) {
  .landing-page-hero {
      padding-left: 15px !important;
      padding-right: 15px !important;
  }
  .landing-page-hero-content{
    grid-template-columns: 1fr !important;
  }
}
