@charset "UTF-8";
/*
 * Common Sections CSS
 * Contains styles for: Counter/Stats, CTA Bar, Our Work, Blog, Our Clients, Testimonials, FAQ
 * All selectors prefixed with custom- to avoid conflicts with app.css (Bootstrap)
 */

/* CTA Bar */
.custom-cta-bar {
  background-color: #C6050E;
  padding: 1.5em 0;
}

.custom-cta-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.custom-cta-bar-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

@media (min-width: 768px) {
  .custom-cta-bar-buttons {
    flex-direction: row;
    gap: 1.5em;
  }
}

.custom-cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  white-space: nowrap;
  background-color: #FFFFFF!important;
  color: #2C3034;
  border: 0.125em solid #FFFFFF;
  border-radius: 0.75em;
  padding: 0.5em 1.5em;
  font-size: 0.9em;
  font-weight: 500;
  width: 100%;
  min-width: 100%;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
  .custom-cta-bar-btn {
    width: auto;
    min-width: 12.5em;
    font-size: 1em;
    padding: 0.5em 2em;
  }
}

.custom-cta-bar-btn-wide {
  width: 100%;
  min-width: 100%;
}

@media (min-width: 768px) {
  .custom-cta-bar-btn-wide {
    width: auto;
    min-width: 17.5em;
  }
}

.custom-cta-bar-btn:hover {
  background-color: #F3F4F6;
  color: #2C3034;
  border-color: #F3F4F6;
  transform: translateY(-0.0625em);
  box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.12);
}

.custom-cta-bar-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* Counter / Stats */
.custom-counter {
  background-color: #C6050E;
  padding: 1em 0;
}

@media (min-width: 768px) {
  .custom-counter {
    padding: 0.35em 0;
  }
}

.custom-counter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5em 1em;
}

.custom-counter-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 1em;
  width: 100%;
  padding-bottom: 0.5em;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.custom-counter-grid::-webkit-scrollbar {
  height: 4px;
}

.custom-counter-grid::-webkit-scrollbar-track {
  background: transparent;
}

.custom-counter-grid::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .custom-counter-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

.custom-counter-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  min-width: 120px;
  scroll-snap-align: start;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .custom-counter-item {
    min-width: 140px;
  }
}

@media (min-width: 1024px) {
  .custom-counter-item {
    min-width: auto;
    scroll-snap-align: none;
  }
}

.custom-counter-icon-wrap {
  border-radius: 0.75em;
  border: 0.125em solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25em;
  height: 2.25em;
  margin-bottom: 0.5em;
}

.custom-counter-icon {
  color: #FFFFFF;
  flex-shrink: 0;
}

.custom-counter-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75em;
  font-weight: 500;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .custom-counter-label {
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .custom-counter-label {
    font-size: 0.8125em;
  }
}

.custom-counter-number {
  font-weight: 700;
  color: #FFFFFF;
}

/* Our Work */
.custom-ourwork {
  background-color: #F8F8F8;
  padding: 2em 0;
  overflow: visible;
}

.custom-ourwork-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  overflow: visible;
}

.custom-ourwork-header {
  text-align: center;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .custom-ourwork-header {
    margin-bottom: 2em;
  }
}

.custom-ourwork-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.25em 0;
}

@media (min-width: 768px) {
  .custom-ourwork-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .custom-ourwork-title {
    font-size: 3rem;
  }
}

.custom-ourwork-title-accent {
  color: #C6050E;
}

.custom-ourwork-subtitle {
  font-size: 1em;
  color: #4A5568;
  margin: 0.5em 0 0 0;
}

@media (min-width: 768px) {
  .custom-ourwork-subtitle {
    font-size: 1.125em;
  }
}

.custom-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  grid-auto-rows: auto;
}

@media (min-width: 768px) {
  .custom-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .custom-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.custom-work-card {
  background-color: #FFFFFF;
  border-radius: 1.25em;
  overflow: hidden;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: block;
  visibility: visible;
  opacity: 1;
}

.custom-work-card:hover {
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.12);
}

.custom-work-card-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.custom-work-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.custom-work-card:hover .custom-work-card-image {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.custom-work-card-body {
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

@media (min-width: 768px) {
  .custom-work-card-body {
    padding: 1.25em;
  }
}

.custom-work-card-title {
  font-size: 1.125em;
  font-weight: 700;
  color: #2C3034;
  margin: 0;
}

.custom-work-card-size {
  font-size: 1em;
  font-weight: 500;
  color: #C6050E!important;
  margin: 0;
}

.custom-work-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875em;
  color: #4A5568;
  margin: 0;
}

.custom-ourwork-footer {
  text-align: center;
  margin-top: 2.5em;
}

.custom-ourwork-loadmore {
  padding: 0.75em 2em;
  background-color: #C6050E;
  color: #FFFFFF !important;
  border: none;
  border-radius: 0.5em;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.custom-ourwork-loadmore:hover {
  background-color: rgba(198, 5, 14, 0.9);
  color: #FFFFFF !important;
  transform: translateY(-0.0625em);
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
}

/* Blog */
.custom-blog {
  background-color: #FFFFFF !important;
  padding: 2em 0 !important;
  letter-spacing: 0!important ;
}

.custom-blog-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1em !important;
}

.custom-blog-header {
  text-align: center !important;
  margin-bottom: 1.5em !important;
}

@media (min-width: 768px) {
  .custom-blog-header {
    margin-bottom: 2em !important;
  }
}

.custom-blog-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #2C3034 !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .custom-blog-title {
    font-size: 2.5rem !important;
  }
}

@media (min-width: 1024px) {
  .custom-blog-title {
    font-size: 3rem !important;
  }
}

.custom-blog-title-accent {
  color: #C6050E !important;
}

.custom-blog-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5em !important;
}

@media (min-width: 768px) {
  .custom-blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.custom-blog-card {
  background-color: #FFFFFF !important;
  border-radius: 0.75em !important;
  border: 0.0625em solid #E5E7EB !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: box-shadow 0.3s ease !important;
}

.custom-blog-card:hover {
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1) !important;
}

.custom-blog-card-image {
  width: 100% !important;
  height: 16em !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease, filter 0.3s ease !important;
}

.custom-blog-card:hover .custom-blog-card-image {
  transform: scale(1.03) !important;
  filter: brightness(1.05) !important;
}

.custom-blog-card-body {
  padding: 1.25em !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

@media (min-width: 768px) {
  .custom-blog-card-body {
    padding: 1.5em !important;
  }
}

.custom-blog-card-meta-row {
  display: flex !important;
  align-items: center !important;
  gap: 0.75em !important;
  margin-bottom: 1em !important;
}

.custom-blog-card-tag {
  background-color: rgba(198, 5, 14, 0.1) !important;
  color: #C6050E !important;
  font-size: 0.75em !important;
  font-weight: 500 !important;
  padding: 0.25em 0.75em !important;
  border-radius: 2em !important;
}

.custom-blog-card-date {
  display: flex !important;
  align-items: center !important;
  gap: 0.25em !important;
  font-size: 0.75em !important;
  color: #4A5568 !important;
}

.custom-blog-card-date-icon {
  width: 0.875em !important;
  height: 0.875em !important;
  flex-shrink: 0 !important;
}

.custom-blog-card-title {
  font-size: 1.125em !important;
  font-weight: 700 !important;
  color: #2C3034 !important;
  margin: 0 0 0.5em 0 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

.custom-blog-card-excerpt {
  font-size: 0.875em !important;
  color: #4A5568 !important;
  line-height: 1.625 !important;
  margin: 0 0 1em 0 !important;
  flex: 1 !important;
}

.custom-blog-card-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25em !important;
  color: #C6050E !important;
  font-size: 0.875em !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: gap 0.2s ease, transform 0.2s ease, opacity 0.2s ease !important;
}

.custom-blog-card-link:hover {
  gap: 0.5em !important;
  transform: translateX(0.125em) !important;
  opacity: 0.9 !important;
}

.custom-blog-card-arrow {
  width: 1em !important;
  height: 1em !important;
  flex-shrink: 0 !important;
}

/* Our Clients */
.custom-clients {
  background-color: #F8F8F8;
  padding: 2em 0;
}
.custom-section-title{
  display: flex;
  justify-content: center;
}

.custom-clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.custom-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

@media (min-width: 768px) {
  .custom-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .custom-clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.custom-clients-item {
  background-color: #FFFFFF;
  border-radius: 0.5em;
  padding: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4em;
  border: 0.0625em solid #EEEEEE;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .custom-clients-item {
    padding: 1em;
    min-height: 5em;
  }
}

.custom-clients-item img {
  max-height: 2em;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.2s ease;
}

@media (min-width: 768px) {
  .custom-clients-item img {
    max-height: 2.5em;
  }
}

.custom-clients-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.custom-clients-title-accent {
  color: #C6050E;
  padding-left: 10px;
}

/* Testimonials */
.custom-testimonials {
  background-color: #FFFFFF;
  padding: 2em 0;
}

.custom-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.custom-testimonials-header {
  text-align: center;
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .custom-testimonials-header {
    margin-bottom: 3em;
  }
}

.custom-testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3034;
  margin: 0;
}

@media (min-width: 768px) {
  .custom-testimonials-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .custom-testimonials-title {
    font-size: 3rem;
  }
}

.custom-testimonials-title-accent {
  color: #C6050E;
}

.custom-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25em;
}

@media (min-width: 768px) {
  .custom-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.custom-testimonial-card {
  background-color: #FFFFFF;
  border-radius: 0.75em;
  border: 0.0625em solid #E5E7EB;
  padding: 1em;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .custom-testimonial-card {
    padding: 1.25em;
  }
}

.custom-testimonial-card:hover {
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.1);
}

.custom-testimonial-quote-mark {
  color: #C6050E;
  font-size: 2em;
  line-height: 0.3125em;
}

.custom-testimonial-quote {
  font-size: 0.875em!important;
  color: #2C3034!important;
  line-height: 1.5!important;
  margin: 0 0 0.75em 0!important;
  flex: 1;
}

.custom-testimonial-stars {
  display: flex;
  gap: 0.125em;
  margin-bottom: 0.75em;
}

.custom-testimonial-star {
  width: 0.875em;
  height: 0.875em;
  color: #C6050E;
  fill: #C6050E;
  flex-shrink: 0;
}

.custom-testimonial-author {
  margin-top: auto;
}

.custom-testimonial-name {
  font-size: 0.875em!important   ;
  font-weight: 600!important;
  color: #2C3034!important;
  margin: 0 0 0.25em 0!important;
  line-height: 1.6!important;
}

.custom-testimonial-role {
  font-size: 0.75em!important;
  color: #4A5568;
  margin: 0 0 0.25em 0!important;
}

.custom-testimonial-company {
  font-size: 0.75em!important;
  color: #C6050E!important;
  font-weight: 500;
  margin: 0!important;
}

/* FAQ */
.custom-faq {
  background-color: #F8F8F8;
  padding: 2em 0;
}

.custom-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.custom-faq-header {
  text-align: center;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .custom-faq-header {
    margin-bottom: 2em;
  }
}

.custom-faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.25em 0;
}

@media (min-width: 768px) {
  .custom-faq-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .custom-faq-title {
    font-size: 3rem;
  }
}

.custom-faq-title-accent {
  color: #C6050E;
}

.custom-faq-subtitle {
  font-size: 1em;
  color: #4A5568;
  margin: 0.75em 0 0 0;
}

.custom-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}

@media (min-width: 1024px) {
  .custom-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3em;
  }
}

.custom-faq-list-wrap {
  display: flex;
  flex-direction: column;
}

.custom-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.custom-faq-item {
  background-color: #FFFFFF;
  border-radius: 0.75em;
  border: 0.0625em solid #E5E7EB;
  padding: 0 1em;
  box-shadow: 0 0.0625em 0.25em rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.custom-faq-item h4{
    font-size: 0.96rem !important;
    font-weight: 500 !important;
    letter-spacing: normal;
}

@media (min-width: 768px) {
  .custom-faq-item {
    padding: 0 1.5em;
  }
}

.custom-faq-item:hover {
  background-color: #FAFAFA;
  border-color: #D1D5DB;
  box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.1);
}

.custom-faq-question-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #2C3034;
  padding: 0.875em 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9em;
  font-family: Inter, system-ui, sans-serif;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .custom-faq-question-btn {
    font-size: 1em;
    padding: 1em 0;
  }
}

.custom-faq-question-btn:hover {
  color: #C6050E;
  text-decoration: none;
}

.custom-faq-question-btn span {
  flex: 1;
  padding-right: 1em;
}

.custom-faq-chevron {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-faq-item[data-state="open"] .custom-faq-chevron {
  transform: rotate(180deg);
}

.custom-faq-answer {
  font-size: 0.875em;
  color: #4A5568;
  line-height: 1.625;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.custom-faq-item[data-state="open"] .custom-faq-answer {
  max-height: 20em;
  padding: 0 0 1.5em 0;
}

.custom-faq-form-wrap {
  background-color: #FFFFFF;
  border-radius: 1.25em;
  padding: 1.5em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.08);
  border: 0.0625em solid #E5E7EB;
}

@media (min-width: 768px) {
  .custom-faq-form-wrap {
    padding: 1em 2em;
  }
}

@media (min-width: 1024px) {
  .custom-faq-form-wrap {
    position: sticky;
    top: 2em;
    height: fit-content;
  }
}

.custom-faq-form-title {
  font-size: 1.25em;
  font-weight: 700;
  color: #2C3034;
  margin: 0 0 0.25em 0;
}

@media (min-width: 768px) {
  .custom-faq-form-title {
    font-size: 1.5em;
  }
}

.custom-faq-form-subtitle {
  font-size: 0.875em;
  color: #4A5568;
  margin: 0 0 0.8em 0;
}

.custom-faq-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.custom-faq-form .custom-field {
  margin-bottom: 0;
}

.custom-faq-form input[type="text"],
.custom-faq-form input[type="email"],
.custom-faq-form input[type="tel"] {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1em;
  font-family: Inter, system-ui, sans-serif;
  color: #2C3034;
  background-color: #FFFFFF;
  border: 0.0625em solid #E5E7EB;
  border-radius: 0.5em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-faq-form input::placeholder {
  color: #4A5568;
}

.custom-faq-form input:focus {
  outline: none;
  border-color: #C6050E;
  box-shadow: 0 0 0 0.1875em rgba(198, 5, 14, 0.3);
}

.custom-faq-form-submit {
  width: 100%;
  background-color: #C6050E;
  color: #FFFFFF !important;
  font-size: 1em;
  font-weight: 600;
  padding: 0.875em 1.5em;
  border-radius: 0.5em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.custom-faq-form-submit:hover {
  background-color: rgba(198, 5, 14, 0.9);
  color: #FFFFFF !important;
  transform: translateY(-0.0625em);
  box-shadow: 0 0.25em 0.5em rgba(198, 5, 14, 0.3);
}

.custom-faq-form-arrow {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
}

/* Additional Responsive Enhancements for custom Sections */

/* Mobile First - Very Small Screens */
@media (max-width: 480px) {
  /* custom section inner padding */
  .custom-ourwork-inner,
  .custom-blog-inner,
  .custom-clients-inner,
  .custom-faq-inner,
  .custom-testimonials-inner,
  .custom-cta-bar-inner {
    padding: 0 0.75em !important;
  }
  
  /* Section titles on very small screens */
  .custom-section-title,
  .custom-ourwork-title,
  .custom-blog-title,
  .custom-clients-title,
  .custom-faq-title,
  .custom-testimonials-title {
    font-size: 1.5rem !important;
  }
  
  /* Card body padding */
  .custom-work-card-body,
  .custom-blog-card-body {
    padding: 0.875em !important;
  }
  
  /* FAQ item padding */
  .custom-faq-item {
    padding: 0 0.875em !important;
  }
  
  /* FAQ form padding */
  .custom-faq-form-wrap {
    padding: 1em !important;
  }
  
  /* Button text size */
  .custom-cta-bar-btn {
    font-size: 0.85em !important;
    padding: 0.5em 1.25em !important;
    width: 100% !important;
    min-width: 100% !important;
  }
  
  .custom-cta-bar-btn-wide {
    width: 100% !important;
    min-width: 100% !important;
  }
  
  /* Work grid - single column */
  .custom-work-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5em !important;
  }
  
  /* Blog grid - single column */
  .custom-blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25em !important;
  }
  
  /* Clients grid - horizontal scroll */
  .custom-clients-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 0.75em !important;
    padding-bottom: 0.5em !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  .custom-clients-item {
    flex: 0 0 auto !important;
    min-width: 100px !important;
    scroll-snap-align: start !important;
  }
  
  /* FAQ grid - single column */
  .custom-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5em !important;
  }
  
  /* Testimonials grid - single column */
  .custom-testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Small screens - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .custom-work-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .custom-blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .custom-clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Ensure all images are responsive */
.custom-work-card-image,
.custom-blog-card-image,
.custom-clients-item img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}
