/* 
   RR Events Custom Styling Overrides
   Brand: RR Events (Exhibition Stall Design & Fabrication Specialists)
   Primary Color (Purple): #393184
   Accent Color (Orange): #EF8C16
   Light Background: #F7F7FA
   Dark Text: #111111
*/

:root {
  --tp-theme-1: #393184 !important;
  --tp-theme-2: #f2f1f9 !important;
  --tp-theme-accent: #EF8C16 !important;
  --tp-text-body: #555555 !important;
  --tp-heading-primary: #111111 !important;
}

/* =============================================
   GLOBAL OVERFLOW FIX — kills horizontal scroll
   caused by absolutely-positioned hero shapes
   ============================================= */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* =============================================
   HEADER — RR Events (Home 3 Structure)
   ============================================= */

/* Header background: white with a soft shadow (overrides the absolute position default) */
.header__area-3 {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(57, 49, 132, 0.08) !important;
  position: relative !important; /* Override absolute so it flows normally */
  z-index: 999 !important;
}

/* Sticky state — keep white */
.header__sticky.header__area-3 {
  background: #ffffff !important;
  box-shadow: 0 4px 18px rgba(57, 49, 132, 0.12) !important;
}

/* ---- RR Text Logo ---- */
.rr-logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}
.rr-logo-main {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #393184;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.rr-logo-main em {
  font-style: normal;
  color: #EF8C16;
}
.rr-logo-sub {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  font-weight: 600;
  margin-top: 2px;
}

/* ---- Hamburger — 3 bars, no background, no border ---- */
.rr-hamburger-wrap {
  /* d-xl-none handles show/hide; this block is pure styling */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  margin-left: 14px;
  cursor: pointer;
  padding: 4px 0;
  flex-shrink: 0;
  background: none;
  border: none;
}

/* Three bars: bar1 short, bar2 full-width, bar3 medium */
.rr-hamburger-wrap .bar1 {
  display: block;
  width: 16px;
  height: 2px;
  background: #393184;
  border-radius: 2px;
  transition: background 0.2s ease, width 0.2s ease;
}
.rr-hamburger-wrap .bar2 {
  display: block;
  width: 26px;
  height: 2px;
  background: #393184;
  border-radius: 2px;
  transition: background 0.2s ease, width 0.2s ease;
}
.rr-hamburger-wrap .bar3 {
  display: block;
  width: 20px;
  height: 2px;
  background: #393184;
  border-radius: 2px;
  transition: background 0.2s ease, width 0.2s ease;
}
.rr-hamburger-wrap:hover .bar1,
.rr-hamburger-wrap:hover .bar2,
.rr-hamburger-wrap:hover .bar3 {
  background: #EF8C16;
  width: 26px;
}

/* Gap between Get Quote btn and hamburger */
.rr-header-right {
  gap: 10px;
}

/* ---- Get Quote Button (header right) ---- */
.rr-header-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #393184;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
}
.rr-header-quote-btn:hover {
  background: #EF8C16;
  color: #ffffff;
  transform: translateY(-1px);
}
.rr-header-quote-btn i {
  font-size: 15px;
  transition: transform 0.2s ease;
}
.rr-header-quote-btn:hover i {
  transform: translateX(3px);
}

/* ---- Kill menu-counter numbers entirely ---- */
.main-menu-3 > nav > ul > li::before,
.menu-counter > nav > ul > li::before {
  display: none !important;
  content: none !important;
}

/* ---- Sidebar logo ---- */
.sidebar__logo .rr-logo-main {
  font-size: 28px;
}

/* Mean-menu reveal button — hide, we use our own hamburger */
.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* Header padding on mobile */
@media (max-width: 991px) {
  .header__area-3 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}

/* Hide header button on mobile to prevent horizontal overflow */
@media (max-width: 767px) {
  .header-btn {
    display: none !important;
  }
}



/* =============================================
   PREMIUM CAPABILITIES ICON STRIP
   ============================================= */
.rr-capabilities-strip {
  background: linear-gradient(135deg, #1a153e 0%, #393184 60%, #2e2870 100%);
  box-shadow: 0 -4px 20px rgba(57, 49, 132, 0.25);
}

.rr-cap-inner {
  width: 100%;
  align-items: stretch;
}

/* Each capability column */
.rr-cap-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 30px;
  transition: background 0.3s ease;
  cursor: default;
  min-width: 180px;
}

.rr-cap-item:hover {
  background: rgba(255,255,255,0.07);
}

/* Orange icon circle */
.rr-cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 140, 22, 0.18);
  border: 1.5px solid rgba(239, 140, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rr-cap-item:hover .rr-cap-icon {
  background: #EF8C16;
  border-color: #EF8C16;
}

.rr-cap-icon i {
  font-size: 20px;
  color: #EF8C16;
  transition: color 0.3s ease;
}

.rr-cap-item:hover .rr-cap-icon i {
  color: #ffffff;
}

/* Text block */
.rr-cap-text {
  display: flex;
  flex-direction: column;
}

.rr-cap-text strong {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}

.rr-cap-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 0.2px;
}

/* Vertical pipe divider */
.rr-cap-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  flex-shrink: 0;
  margin: 16px 0;
}

/* — Responsive stacking — */

/* 1024px: tighten padding */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rr-cap-item {
    padding: 28px 20px;
    gap: 14px;
  }
  .rr-cap-text strong { font-size: 14px; }
}

/* 768-991px: hide dividers, 2-up grid */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rr-cap-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rr-cap-divider { display: none; }
  .rr-cap-item {
    padding: 24px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* Below 767px: single column stack */
@media (max-width: 767px) {
  .rr-cap-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rr-cap-divider { display: none; }
  .rr-cap-item {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 12px;
  }
  .rr-cap-icon {
    width: 44px;
    height: 44px;
  }
  .rr-cap-icon i { font-size: 17px; }
  .rr-cap-text strong { font-size: 13px; }
  .rr-cap-text span { font-size: 11px; }
}

/* Smallest: 360px - single column */
@media (max-width: 420px) {
  .rr-cap-inner {
    grid-template-columns: 1fr;
  }
}



/* Custom Accents and Highlights */
.text-accent {
  color: var(--tp-theme-accent) !important;
}

.bg-accent {
  background-color: var(--tp-theme-accent) !important;
}

/* Override standard button layouts to support accent color */
.tp-btn-accent {
  background-color: var(--tp-theme-accent) !important;
  color: #ffffff !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  border: none;
}

.tp-btn-accent:hover {
  background-color: #d1780d !important;
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(239, 140, 22, 0.2);
}

/* Override default theme button hover highlights when white slide background appears */
.tp-btn:hover,
.tp-btn-2:hover,
.tp-btn-3:hover,
.tp-btn-p:hover,
.tp-btn-ts:hover,
.tp-btn-ps:hover,
.tp-btn-d:hover,
.tp-btn-df:hover,
.tp-btn-df-active:hover,
.tp-btn-df-active-2:hover {
  color: #393184 !important;
}

.tp-btn:hover i,
.tp-btn-2:hover i,
.tp-btn-3:hover i,
.tp-btn-p:hover i {
  color: #393184 !important;
}

/* WhatsApp button hover text color override to green */
.tp-btn[style*="#25d366"]:hover,
.tp-btn[style*="background-color: #25d366"]:hover,
.tp-btn[style*="background-color:#25d366"]:hover {
  color: #25d366 !important;
}

.tp-btn[style*="#25d366"]:hover i,
.tp-btn[style*="background-color: #25d366"]:hover i,
.tp-btn[style*="background-color:#25d366"]:hover i {
  color: #25d366 !important;
}

/* Floating WhatsApp Quick-Chat Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Custom adjustments for corporate exhibition look */
.services__item:hover {
  border-color: var(--tp-theme-accent) !important;
}

.ser__icon i {
  color: var(--tp-theme-1) !important;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(57, 49, 132, 0.1) !important;
}

/* Float WhatsApp adjustments on mobile */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }
}

/* ====================================================
   Home 3 Hero — RR Events Brand Colour Overrides
   Keeps the Home 3 structure exactly; changes palette
   ==================================================== */

/* Meta pill above the H1 */
.banner__content-meta {
  background-color: var(--tp-theme-1) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  padding: 6px 18px !important;
  border-radius: 30px !important;
  white-space: nowrap !important;   /* never wrap onto 2 lines */
}

/* Shrink pill text slightly on small phones so it stays 1 line */
@media (max-width: 480px) {
  .banner__content-meta {
    font-size: 8.5px !important;
    letter-spacing: 0.6px !important;
    padding: 5px 14px !important;
  }
}

/* Decorative right-side gradient block — use RR purple */
.banner__d-image::before {
  background: var(--tp-theme-1) !important;
  opacity: 0.15 !important;
}

/* Phone call-info text colours */
.banner__cinfo a {
  color: var(--tp-theme-1) !important;
}
.banner__cinfo a span {
  color: #EF8C16 !important;
  font-weight: 700 !important;
}

/* Sub-strip below hero */
.appoinment-cta-2__content {
  border-radius: 8px !important;
  border: 1.5px solid #ebebf5 !important;
  padding: 28px 35px !important;
  box-shadow: 0 4px 20px rgba(57,49,132,0.06) !important;
}
.appoinment-cta-2__content-title {
  font-size: 18px !important;
  color: #111111 !important;
}

/* Custom Form Styling Override for Home pages */
.homepage-quote-section .form-control,
.homepage-quote-section .form-select {
  background-color: #f7f7fa !important;
  border: 1px solid #e5e5ed !important;
  color: #111111 !important;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.homepage-quote-section .form-control:focus,
.homepage-quote-section .form-select:focus {
  border-color: #393184 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 8px rgba(57, 49, 132, 0.15) !important;
}

/* =============================================
   SERVICES SECTION — RR Events Brand Overrides
   ============================================= */

/* Background overlay so text is readable over services-bg.jpg */
.services__area {
  position: relative;
}
.services__area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 250, 0.92);
  z-index: 0;
  pointer-events: none;
}
.services__area .container {
  position: relative;
  z-index: 1;
}

/* Icon colour — always RR purple */
.services__item .ser__icon i {
  color: #393184 !important;
}

/* Title hover */
.services__item .ser__title:hover {
  color: #393184 !important;
}

/* Learn more link */
.services__item .ser__more-option a {
  color: #393184 !important;
  font-weight: 700 !important;
  transition: color 0.2s ease;
}
.services__item .ser__more-option a:hover {
  color: #EF8C16 !important;
}

/* The template's hover shadow drop — use RR purple instead of default */
.services__item-tp::after {
  background-color: #393184 !important;
}

/* Premium equal-height cards & layouts */
.services__item {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 50px 35px !important;
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
  position: relative !important;
}

.services__item:hover {
  background: #393184 !important;
  border-color: #393184 !important;
  box-shadow: 0 15px 35px rgba(57, 49, 132, 0.25) !important;
  transform: translateY(-5px);
}

.services__item-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  height: 100% !important;
  width: 100% !important;
}

/* Ensure paragraph stretches to push links to the bottom */
.services__item-content p {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #666666 !important;
  text-align: center !important;
  transition: color 0.3s ease !important;
}

.services__item:hover .services__item-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Titles: same height so paragraphs start at the exact same vertical level */
.services__item .ser__title {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 15px !important;
  color: #111111 !important;
  font-family: 'DM Sans', sans-serif !important;
  text-align: center !important;
  transition: color 0.3s ease !important;
}

.services__item .ser__title a {
  color: inherit !important;
  transition: color 0.3s ease !important;
}

.services__item:hover .ser__title,
.services__item:hover .ser__title a {
  color: #ffffff !important;
}

/* Icon style */
.services__item .ser__icon {
  margin-bottom: 25px !important;
  font-size: 50px !important;
  color: #393184 !important;
  transition: color 0.3s ease !important;
}

.services__item .ser__icon i {
  color: inherit !important;
  transition: color 0.3s ease !important;
}

.services__item:hover .ser__icon,
.services__item:hover .ser__icon i {
  color: #ffffff !important;
}

/* Learn more link for index.html */
.services__item .ser__more-option a {
  transition: color 0.3s ease !important;
}

.services__item:hover .ser__more-option a {
  color: #ffffff !important;
}

.services__item:hover .ser__more-option a i {
  color: #ffffff !important;
}

/* services__item-btn styling for services page */
.services__item-btn {
  border-top: 1px solid #f5f5f5 !important;
  padding-top: 15px !important;
  margin-top: 25px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: border-color 0.3s ease !important;
}

.services__item:hover .services__item-btn {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
}

.services__item-btn a {
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  transition: color 0.3s ease !important;
}

.services__item:hover .services__item-btn a {
  color: #ffffff !important;
}

.services__item:hover .services__item-btn a[href*="get-quote"] {
  color: #EF8C16 !important; /* Keep request quote orange for rich contrast */
}

/* Section header text colour adjustment */
.services__area .section__title {
  color: #111111 !important;
}

/* st-meta-2 badge colour */
.services__area .st-meta-2 {
  color: #EF8C16 !important;
}

/* Custom Who We Are Buttons */
.about-btn-learn {
  background-color: #393184 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: 2px solid #393184 !important;
  margin-right: 15px !important;
  margin-bottom: 10px !important;
}

.about-btn-learn:hover {
  background-color: transparent !important;
  color: #393184 !important;
  border-color: #393184 !important;
}

.about-btn-download {
  background-color: #EF8C16 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: 2px solid #EF8C16 !important;
  margin-bottom: 10px !important;
}

.about-btn-download:hover {
  background-color: transparent !important;
  color: #EF8C16 !important;
  border-color: #EF8C16 !important;
}

/* Hide template offset hover elements */
.services__item-tp::before,
.services__item-tp::after {
  display: none !important;
}

/* Why Partner With Us (Choose Us) spec-cards styling */
.spec-card {
  padding: 35px 30px !important;
  background: #ffffff !important;
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.spec-card:hover {
  border-color: #EF8C16 !important;
  box-shadow: 0 10px 30px rgba(239, 140, 22, 0.08) !important;
  transform: translateY(-5px);
}

/* Event Cards & Event Schedules */
.event-card,
.event-card-item {
  padding: 35px 30px !important;
  background: #ffffff !important;
  border-top: 4px solid #393184 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s ease !important;
  border-left: 1px solid #eee !important;
  border-right: 1px solid #eee !important;
  border-bottom: 1px solid #eee !important;
}

.event-card:hover,
.event-card-item:hover {
  transform: translateY(-5px) !important;
  border-top-color: #EF8C16 !important;
  box-shadow: 0 10px 30px rgba(57, 49, 132, 0.08) !important;
}

/* Event Detail Subpages Related Cards */
.related-event-card {
  padding: 25px !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
  background: #fafafa !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.related-event-card:hover {
  border-color: #EF8C16 !important;
  background: #ffffff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03) !important;
}

/* Responsive: on tablet 6 cards go 2-col */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services__area .col-xl-4.col-lg-4.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: single column */
@media (max-width: 575px) {
  .services__area .col-xl-4.col-lg-4.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .services__item {
    padding: 35px 25px !important;
  }
}

/* =============================================
   CUSTOM PADDING UTILITIES FOR BOOTSTRAP 4
   ============================================= */
.p-40 {
  padding: 40px !important;
}
.p-50 {
  padding: 50px !important;
}

@media (max-width: 767px) {
  .p-40 {
    padding: 25px 20px !important;
  }
  .p-50 {
    padding: 30px 20px !important;
  }
}

/* =============================================
   PREMIUM B2B FORM STYLING OVERRIDES
   ============================================= */
.quote-form-container,
.enquiry-form-container,
.quote-form-wrapper,
.quick-quote-form-container,
.form-container-box,
.ps__form {
  border: 1px solid #eef0f6 !important;
  box-shadow: 0 15px 45px rgba(57, 49, 132, 0.05) !important;
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 50px !important;
}

@media (max-width: 767px) {
  .quote-form-container,
  .enquiry-form-container,
  .quote-form-wrapper,
  .quick-quote-form-container,
  .form-container-box,
  .ps__form {
    padding: 30px 20px !important;
  }
}

/* Style inputs, selects, textareas inside all forms */
.quote-form-container input:not([type="submit"]):not([type="button"]),
.quote-form-container select,
.quote-form-container textarea,
.enquiry-form-container input:not([type="submit"]):not([type="button"]),
.enquiry-form-container textarea,
.quote-form-wrapper input:not([type="submit"]):not([type="button"]),
.quote-form-wrapper select,
.quote-form-wrapper textarea,
.quick-quote-form-container input:not([type="submit"]):not([type="button"]),
.quick-quote-form-container select,
.quick-quote-form-container textarea,
.ps__form input:not([type="submit"]):not([type="button"]),
.ps__form textarea,
/* Also target general page layout forms */
.col-xl-8 .bg-white form input.form-control,
.col-xl-8 .bg-white form select.form-select,
.col-xl-8 .bg-white form textarea.form-control,
.col-lg-8 .bg-white form input,
.col-lg-8 .bg-white form select,
.col-lg-8 .bg-white form textarea {
  width: 100% !important;
  border: 1px solid #dcdce6 !important;
  padding: 12px 18px !important;
  border-radius: 6px !important;
  font-size: 14.5px !important;
  color: #111111 !important;
  background: #ffffff !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Height styling for inputs and selects */
.quote-form-container input:not([type="file"]):not([type="submit"]):not([type="button"]),
.quote-form-container select,
.enquiry-form-container input:not([type="submit"]):not([type="button"]),
.quote-form-wrapper input:not([type="file"]):not([type="submit"]):not([type="button"]),
.quote-form-wrapper select,
.quick-quote-form-container input:not([type="submit"]):not([type="button"]),
.quick-quote-form-container select,
.ps__form input:not([type="submit"]):not([type="button"]),
.col-xl-8 .bg-white form input.form-control,
.col-xl-8 .bg-white form select.form-select,
.col-lg-8 .bg-white form input,
.col-lg-8 .bg-white form select {
  height: 48px !important;
}

/* Focus styles */
.quote-form-container input:focus,
.quote-form-container select:focus,
.quote-form-container textarea:focus,
.enquiry-form-container input:focus,
.enquiry-form-container textarea:focus,
.quote-form-wrapper input:focus,
.quote-form-wrapper select:focus,
.quote-form-wrapper textarea:focus,
.quick-quote-form-container input:focus,
.quick-quote-form-container select:focus,
.quick-quote-form-container textarea:focus,
.ps__form input:focus,
.ps__form textarea:focus,
.col-xl-8 .bg-white form input.form-control:focus,
.col-xl-8 .bg-white form select.form-select:focus,
.col-xl-8 .bg-white form textarea.form-control:focus,
.col-lg-8 .bg-white form input:focus,
.col-lg-8 .bg-white form select:focus,
.col-lg-8 .bg-white form textarea:focus {
  border-color: #393184 !important;
  box-shadow: 0 0 0 4px rgba(57, 49, 132, 0.1) !important;
  background: #ffffff !important;
}

/* Labels styling */
.quote-form-container label,
.enquiry-form-container label,
.quote-form-wrapper label,
.quick-quote-form-container label,
.col-xl-8 .bg-white form label,
.col-lg-8 .bg-white form label {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #555555 !important;
  display: block !important;
  margin-bottom: 7px !important;
  letter-spacing: 0.8px !important;
}

/* File upload container styling */
.file-upload-placeholder {
  border: 2px dashed #dcdce6 !important;
  border-radius: 6px !important;
  background: #fafafd !important;
  padding: 22px 20px !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  text-align: center !important;
  color: #666666 !important;
}

.file-upload-placeholder:hover {
  border-color: #393184 !important;
  background: #f2f1f9 !important;
}

.file-upload-placeholder i {
  color: #393184 !important;
  font-size: 26px !important;
  margin-bottom: 8px !important;
  display: block !important;
}

/* Form Submit Button Overrides */
.quote-form-container button[type="submit"],
.enquiry-form-container button[type="submit"],
.quote-form-wrapper button[type="submit"],
.quick-quote-form-container button[type="submit"],
.ps__form button[type="submit"],
.col-xl-8 .bg-white form button[type="submit"],
.col-lg-8 .bg-white form button[type="submit"] {
  background-color: #EF8C16 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 10px rgba(239, 140, 22, 0.2) !important;
}

.quote-form-container button[type="submit"]:hover,
.enquiry-form-container button[type="submit"]:hover,
.quote-form-wrapper button[type="submit"]:hover,
.quick-quote-form-container button[type="submit"]:hover,
.ps__form button[type="submit"]:hover,
.col-xl-8 .bg-white form button[type="submit"]:hover,
.col-lg-8 .bg-white form button[type="submit"]:hover {
  background-color: #393184 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(57, 49, 132, 0.25) !important;
}

/* Grey background overrides for contact page and brief forms */
.enquiry-form-container,
.quote-form-wrapper {
  background: #fafafd !important;
  border-color: #ededf5 !important;
}

/* Premium NiceSelect custom dropdown overrides to match input fields */
.nice-select {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  height: 48px !important;
  line-height: 48px !important;
  border: 1px solid #dcdce6 !important;
  border-radius: 6px !important;
  background-color: #ffffff !important;
  background-image: none !important; /* Kills any duplicate background caret */
  padding-left: 18px !important;
  font-size: 14.5px !important;
  color: #111111 !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

/* Ensure the selected text aligns perfectly within the flexbox container */
.nice-select span.current {
  display: block !important;
  line-height: 1 !important;
}

/* Kills any duplicate background image arrows on NiceSelect */
.nice-select.form-select,
.nice-select.custom-select {
  background-image: none !important;
}

/* Style the single NiceSelect chevron arrow */
.nice-select:after {
  border-bottom: 2px solid #393184 !important;
  border-right: 2px solid #393184 !important;
  content: '' !important;
  display: block !important;
  height: 7px !important;
  width: 7px !important;
  margin-top: -5px !important;
  right: 18px !important;
  transform: rotate(45deg) !important;
  transition: all 0.2s ease-in-out !important;
}

/* Focus, hover and open states */
.nice-select:hover,
.nice-select:focus,
.nice-select.open {
  border-color: #393184 !important;
  box-shadow: 0 0 0 4px rgba(57, 49, 132, 0.1) !important;
}

.nice-select.open:after {
  transform: rotate(-135deg) !important; /* Rotate caret up when open */
  border-bottom-color: #393184 !important;
  border-right-color: #393184 !important;
}

.nice-select:focus:after {
  border-bottom-color: #393184 !important;
  border-right-color: #393184 !important;
}

/* NiceSelect options dropdown panel styling */
.nice-select .list {
  border-radius: 6px !important;
  box-shadow: 0 10px 30px rgba(57, 49, 132, 0.08) !important;
  border: 1px solid #eef0f6 !important;
  width: 100% !important;
  margin-top: 5px !important;
}

.nice-select .option {
  display: flex !important;
  align-items: center !important;
  height: 40px !important;
  min-height: 40px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  font-size: 14px !important;
  color: #555555 !important;
  transition: all 0.2s ease !important;
}

.nice-select .option.selected {
  font-weight: 700 !important;
  color: #393184 !important;
  background-color: #f2f1f9 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f2f1f9 !important;
  color: #393184 !important;
}

/* =============================================
   FINAL CTA BUTTONS HOVER OVERRIDES
   ============================================= */
.final-cta .btn,
.final-cta .tp-btn-accent {
  transition: all 0.3s ease-in-out !important;
}

.final-cta .btn:hover,
.final-cta .tp-btn-accent:hover {
  background-color: #ffffff !important;
  color: #393184 !important;
  box-shadow: 0 8px 20px rgba(57, 49, 132, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* =============================================
   DELIVERABLE CARDS (SINGLE SERVICE PAGES)
   ============================================= */
.deliverable-card {
  padding: 35px 30px !important;
  border: 1px solid #eef0f6 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  height: 100%;
  box-shadow: 0 8px 30px rgba(57, 49, 132, 0.03) !important;
  transition: all 0.3s ease-in-out !important;
}

.deliverable-card:hover {
  transform: translateY(-5px) !important;
  border-color: #393184 !important;
  box-shadow: 0 15px 40px rgba(57, 49, 132, 0.08) !important;
}

.deliverable-card h5 {
  font-weight: 700 !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #393184 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
}

.deliverable-card h5 i {
  color: #EF8C16 !important;
  margin-right: 10px !important;
  font-size: 18px !important;
}

.deliverable-card p {
  font-size: 14px !important;
  color: #666 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* =============================================
   PORTFOLIO GALLERY & CARD STYLES
   ============================================= */
.portfolio-item-card {
  background: #ffffff !important;
  border: 1px solid rgba(57, 49, 132, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px 24px 28px 24px !important;
  box-shadow: 0 8px 25px rgba(57, 49, 132, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.portfolio-item-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(57, 49, 132, 0.1) !important;
  border-color: rgba(57, 49, 132, 0.15) !important;
}

.portfolio-item-card .portfolio-wrapper {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  margin-bottom: 22px !important;
}

.portfolio-item-card .portfolio-image img {
  width: 100% !important;
  height: 230px !important;
  aspect-ratio: 416 / 230 !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.portfolio-item-card:hover .portfolio-image img {
  transform: scale(1.06) !important;
}

.portfolio-item-card .portfolio-content-desc {
  flex-grow: 1 !important;
}

.portfolio-item-card .portfolio-content-desc span {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #EF8C16 !important;
  display: block !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.5px !important;
}

.portfolio-item-card .portfolio-content-desc h5 {
  font-weight: 800 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 19px !important;
  margin-bottom: 8px !important;
  color: #393184 !important;
  line-height: 1.3 !important;
}

.portfolio-item-card .portfolio-content-desc p {
  font-size: 13px !important;
  color: #777777 !important;
  margin-bottom: 22px !important;
}

.portfolio-item-card .portfolio-card-btns {
  border-top: 1px solid #f2f2f7 !important;
  padding-top: 18px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.portfolio-item-card .portfolio-card-btns a {
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: color 0.2s ease !important;
}

.portfolio-item-card .portfolio-card-btns a.popup-image {
  color: #393184 !important;
}

.portfolio-item-card .portfolio-card-btns a.popup-image:hover {
  color: #EF8C16 !important;
}

.portfolio-item-card .portfolio-card-btns a.quote-btn-link {
  color: #EF8C16 !important;
}

.portfolio-item-card .portfolio-card-btns a.quote-btn-link:hover {
  color: #393184 !important;
}

/* =============================================
   GALLERY INTERMEDIATE CTA SECTION OVERRIDES
   ============================================= */
.gallery-cta .tp-btn-accent {
  background-color: #EF8C16 !important;
  color: #ffffff !important;
  border: 2px solid #EF8C16 !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(239, 140, 22, 0.3) !important;
}

.gallery-cta .tp-btn-accent:hover {
  background-color: #ffffff !important;
  color: #393184 !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25) !important;
}

/* =============================================
   EVENTS PAGE INTERMEDIATE CTA BOX & BUTTONS
   ============================================= */
.events-cta-box {
  border-radius: 12px !important;
  background: linear-gradient(135deg, #393184 0%, #2e2870 100%) !important;
  box-shadow: 0 10px 30px rgba(57, 49, 132, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden !important;
  position: relative !important;
}

.events-cta-box .tp-btn-accent {
  background-color: #EF8C16 !important;
  color: #ffffff !important;
  border: 2px solid #EF8C16 !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 28px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(239, 140, 22, 0.3) !important;
  margin: 8px 12px !important; /* Elegant spacing between buttons */
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.events-cta-box .tp-btn-accent:hover {
  background-color: #ffffff !important;
  color: #393184 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2) !important;
}

.events-cta-box .btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 28px !important;
  transition: all 0.3s ease !important;
  margin: 8px 12px !important; /* Elegant spacing between buttons */
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.events-cta-box .btn-outline-white:hover {
  background-color: #ffffff !important;
  color: #393184 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2) !important;
}

/* =============================================
   CONTACT US PAGE INFO CARDS
   ============================================= */
.contact-info-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #ffffff !important;
  border: 1px solid rgba(57, 49, 132, 0.08) !important;
  border-radius: 12px !important;
  padding: 35px 25px !important;
  box-shadow: 0 8px 25px rgba(57, 49, 132, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-align: center !important;
}

.contact-info-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(57, 49, 132, 0.08) !important;
  border-color: rgba(57, 49, 132, 0.15) !important;
}

.contact-info-card .contact__icon {
  margin-bottom: 22px !important;
  display: block !important;
  text-align: center !important;
}

.contact-info-card .contact__icon i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  line-height: 60px !important;
  box-shadow: 0 4px 10px rgba(57, 49, 132, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.contact-info-card.phone-card .contact__icon i {
  color: #393184 !important;
  background: rgba(57, 49, 132, 0.08) !important;
}

.contact-info-card.whatsapp-card .contact__icon i {
  color: #25d366 !important;
  background: rgba(37, 211, 102, 0.1) !important;
}

.contact-info-card.email-card .contact__icon i {
  color: #393184 !important;
  background: rgba(57, 49, 132, 0.08) !important;
}

.contact-info-card.address-card .contact__icon i {
  color: #EF8C16 !important;
  background: rgba(239, 140, 22, 0.1) !important;
}

/* Hover transitions for icons */
.contact-info-card.phone-card:hover .contact__icon i,
.contact-info-card.email-card:hover .contact__icon i {
  background: #393184 !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.contact-info-card.whatsapp-card:hover .contact__icon i {
  background: #25d366 !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.contact-info-card.address-card:hover .contact__icon i {
  background: #EF8C16 !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.contact-info-card .contact__title {
  font-weight: 800 !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #393184 !important;
  margin-bottom: 12px !important;
  font-size: 19px !important;
}

.contact-info-card .contact__text {
  font-size: 14px !important;
  color: #555555 !important;
  line-height: 1.6 !important;
}

.contact-info-card .contact__text a {
  color: #555555 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

.contact-info-card .contact__text a:hover {
  color: #EF8C16 !important;
}

.contact-info-card .contact__button {
  margin-top: 20px !important;
}

.contact-info-card .contact__button a {
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.contact-info-card .contact__button a.btn-purple {
  background: #393184 !important;
  color: #ffffff !important;
  border: 1px solid #393184 !important;
}

.contact-info-card .contact__button a.btn-purple:hover {
  background: #EF8C16 !important;
  border-color: #EF8C16 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.contact-info-card .contact__button a.btn-whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
  border: 1px solid #25d366 !important;
}

.contact-info-card .contact__button a.btn-whatsapp:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.contact-info-card .contact__button a.btn-orange {
  background: #EF8C16 !important;
  color: #ffffff !important;
  border: 1px solid #EF8C16 !important;
}

.contact-info-card .contact__button a.btn-orange:hover {
  background: #393184 !important;
  border-color: #393184 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* =============================================
   CONTACT PAGE MAP & REGISTRATION DETAILS CARDS
   ============================================= */
.contact-map-wrapper {
  background: #ffffff !important;
  border: 1px solid rgba(57, 49, 132, 0.08) !important;
  border-radius: 12px !important;
  padding: 15px !important;
  box-shadow: 0 8px 25px rgba(57, 49, 132, 0.02) !important;
  margin-bottom: 25px !important;
  overflow: hidden !important;
}

.contact-registration-card {
  background: #ffffff !important;
  border: 1px solid rgba(57, 49, 132, 0.08) !important;
  border-radius: 12px !important;
  padding: 24px 28px !important;
  box-shadow: 0 8px 25px rgba(57, 49, 132, 0.02) !important;
}

.contact-registration-card span {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #EF8C16 !important;
  display: block !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.5px !important;
}

.contact-registration-card h5 {
  font-weight: 800 !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #393184 !important;
  margin-bottom: 10px !important;
  font-size: 19px !important;
}

.contact-registration-card p {
  font-size: 13.5px !important;
  color: #555555 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* =============================================
   SIDEBAR CARDS PADDING OVERRIDES (BOOTSTRAP 4 FIX)
   ============================================= */
.sidebar-card {
  padding: 30px !important;
}

@media (max-width: 767px) {
  .sidebar-card {
    padding: 20px !important;
  }
}

/* =============================================
   GET QUOTE PAGE STICKY BUTTON REMOVALS
   ============================================= */
.get-quote-page-body .whatsapp-float,
.get-quote-page-body .mobile-bottom-bar {
  display: none !important;
}

/* box-sizing: border-box overrides to prevent element width overflow */
.quote-form-container input,
.quote-form-container select,
.quote-form-container textarea,
.form-container-box input,
.form-container-box select,
.form-container-box textarea,
.nice-select {
  box-sizing: border-box !important;
}

/* Sidebar off-canvas drawer contact info text sizing and wrap fixes */
.sidebar__contact-text a {
  font-size: 13px !important;
  word-break: break-all !important;
  white-space: normal !important;
}

/* =============================================
   MOBILE HOME PAGE OPTIMISATIONS (≤767px)
   ============================================= */
@media (max-width: 767px) {

  /* --- HERO: centre-align text + reduce top gap --- */
  .banner__area-3.pt-120 {
    padding-top: 40px !important;
  }
  .banner__content {
    text-align: center !important;
  }
  .banner__content-title {
    text-align: center !important;
    font-size: 26px !important;
    line-height: 1.25 !important;
  }
  .banner__content-meta {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner__button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .banner__button .tp-btn {
    width: 100% !important;
    text-align: center !important;
  }
  .banner__cinfo {
    text-align: center !important;
  }

  /* --- WHO WE ARE: buttons inline side-by-side --- */
  .about-content-wrap .d-flex.flex-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }
  .about-btn-learn,
  .about-btn-download {
    padding: 10px 16px !important;
    font-size: 12px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
    flex: 1 1 0 !important;
    text-align: center !important;
  }

  /* --- RECENT WORK: title left-aligned with 5px padding --- */
  .featured-portfolio .section__wrapper {
    text-align: left !important;
    padding-left: 5px !important;
  }
  .featured-portfolio .section__title {
    text-align: left !important;
  }

  /* --- OUR WORKFLOW: full-width block cards, one by one --- */

  /* Force each column to 100% width (overrides inline width:20%) */
  .working-process .row > [class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  /* Each step becomes a block card with number left, text stacked right */
  .process-step {
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 18px !important;
    row-gap: 2px !important;
    align-items: center !important;
    padding: 18px 20px !important;
    background: #fff !important;
    border: 1px solid #eef0f6 !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 12px rgba(57,49,132,0.04) !important;
    text-align: left !important;
  }

  /* Block-style step number — spans both rows */
  .process-step .step-num {
    grid-row: 1 / 3 !important;
    grid-column: 1 !important;
    border-radius: 8px !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 16px !important;
    margin: 0 !important;
    text-align: center !important;
    align-self: center !important;
  }

  /* Title in row 1, col 2 */
  .process-step h5 {
    grid-row: 1 !important;
    grid-column: 2 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    align-self: end !important;
  }
  /* Description in row 2, col 2 */
  .process-step p {
    grid-row: 2 !important;
    grid-column: 2 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    align-self: start !important;
  }
}

/* Workflow block style for tablets too (≤991px) */
@media (max-width: 991px) {
  .process-step .step-num {
    border-radius: 8px !important;
  }
}

/* =============================================
   HOMEPAGE SPACING POLISH — scoped production pass
   ============================================= */
.banner__area-3.pt-120 {
  padding-top: 72px !important;
}

.banner__area-3.banner__height-3 {
  min-height: auto !important;
  padding-bottom: 52px !important;
}

.banner__area-3 .banner__item-3 {
  padding-top: 58px !important;
}

.banner__area-3 .banner__button {
  margin-top: 32px !important;
}

.banner__area-3 .appoinment-cta-2 {
  padding-top: 42px !important;
}

.banner__area-3 .appoinment-cta-2__content {
  padding: 22px 30px !important;
}

.about-snapshot.pt-120 {
  padding-top: 72px !important;
}

.about-snapshot.pb-90 {
  padding-bottom: 58px !important;
}

.about-snapshot .section__wrapper {
  margin-bottom: 18px !important;
}

.about-snapshot .about-img-wrap {
  padding-right: 18px !important;
}

.about-snapshot .about-content-wrap p.mb-20 {
  margin-bottom: 14px !important;
}

.about-snapshot .about-content-wrap p.mb-35 {
  margin-bottom: 24px !important;
}

.services__area.pt-120,
.featured-portfolio.pt-120,
.why-choose.pt-120,
.working-process.pt-120,
.events-preview.pt-120,
.faq-section.pt-120,
.homepage-quote-section.pt-100,
.final-cta.pt-100,
.testimonials-preview.pt-120 {
  padding-top: 72px !important;
}

.services__area.pb-80,
.featured-portfolio.pb-90,
.why-choose.pb-90,
.working-process.pb-90,
.events-preview.pb-90,
.faq-section.pb-120,
.homepage-quote-section.pb-100,
.final-cta.pb-100,
.testimonials-preview.pb-90 {
  padding-bottom: 62px !important;
}

.services__area .section__wrapper,
.featured-portfolio .section__wrapper,
.why-choose .section__wrapper,
.working-process .section__wrapper,
.events-preview .section__wrapper,
.faq-section .section__wrapper,
.homepage-quote-section .section__wrapper,
.testimonials-preview .section__wrapper {
  margin-bottom: 18px !important;
}

.services__area .section__wrapper + p.mb-55 {
  margin-bottom: 34px !important;
}

.featured-portfolio .row.mb-60,
.events-preview .row.mb-60 {
  margin-bottom: 34px !important;
}

.why-choose .col-xl-8.mb-60,
.working-process .col-xl-8.mb-60,
.faq-section .col-xl-8.mb-60,
.testimonials-preview .col-xl-8.mb-60 {
  margin-bottom: 34px !important;
}

.homepage-quote-section .col-xl-8.mb-50 {
  margin-bottom: 34px !important;
}

.services__area .row.mt-10 {
  margin-top: 0 !important;
}

.services__area .col-xl-4.mb-40,
.services__area .col-lg-4.mb-40,
.featured-portfolio .col-xl-4.mb-30,
.why-choose .col-lg-4.mb-30,
.events-preview .col-lg-4.mb-30,
.testimonials-preview .col-lg-4.mb-30 {
  margin-bottom: 24px !important;
}

.services__item {
  padding: 36px 28px !important;
}

.services__item .ser__icon {
  margin-bottom: 18px !important;
  font-size: 44px !important;
}

.services__item .ser__title {
  min-height: 48px !important;
  margin-bottom: 10px !important;
}

.services__item .ser__more-option {
  margin-top: 16px !important;
}

.spec-card,
.event-card,
.event-card-item {
  padding: 26px 24px !important;
}

.portfolio-item {
  margin-bottom: 22px !important;
}

.featured-portfolio .rr-home-project-carousel-wrap {
  position: relative;
}

.featured-portfolio .rr-home-project-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 12px;
  cursor: grab;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 49, 132, 0.45) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.featured-portfolio .rr-home-project-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.featured-portfolio .rr-home-project-carousel::-webkit-scrollbar {
  height: 6px;
}

.featured-portfolio .rr-home-project-carousel::-webkit-scrollbar-thumb {
  background: rgba(57, 49, 132, 0.45);
  border-radius: 10px;
}

.featured-portfolio .rr-home-project-track {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.featured-portfolio .rr-home-project-slide {
  flex: 0 0 calc((100% - 60px) / 3);
  height: auto;
  min-width: 0;
  scroll-snap-align: start;
}

.featured-portfolio .rr-home-project-slide .portfolio-item {
  height: 100%;
  margin-bottom: 0 !important;
  background: #111111;
}

.featured-portfolio .rr-home-project-slide .portfolio-item a,
.featured-portfolio .rr-home-project-slide .portfolio-item img {
  display: block;
  width: 100%;
}

.featured-portfolio .rr-home-project-slide .portfolio-item img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.working-process .process-step {
  margin-bottom: 8px !important;
}

.homepage-quote-section .form-container-box {
  padding: 38px !important;
}

.rr-client-logo-strip {
  overflow: hidden;
  background: #ffffff;
  padding: 30px 0;
}

.rr-client-logo-viewport {
  overflow: hidden;
  width: 100%;
}

.rr-client-logo-track {
  display: flex;
  width: max-content;
  animation: rr-client-logo-scroll 32s linear infinite;
  will-change: transform;
}

.rr-client-logo-group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
}

.rr-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 52px;
  flex: 0 0 150px;
}

.rr-client-logo-item img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

@keyframes rr-client-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rr-client-logo-track {
    animation-play-state: paused;
  }
}

.homepage-quote-section .mb-20 {
  margin-bottom: 16px !important;
}

.homepage-quote-section .mb-30 {
  margin-bottom: 22px !important;
}

.final-cta .mb-20 {
  margin-bottom: 14px !important;
}

.final-cta .mb-35 {
  margin-bottom: 26px !important;
}

@media (max-width: 991px) {
  .banner__area-3.pt-120 {
    padding-top: 52px !important;
  }

  .banner__area-3.banner__height-3 {
    padding-bottom: 40px !important;
  }

  .banner__area-3 .banner__item-3 {
    padding-top: 34px !important;
  }

  .banner__area-3 .banner__image {
    margin-top: 28px !important;
  }

  .about-snapshot.pt-120,
  .services__area.pt-120,
  .featured-portfolio.pt-120,
  .why-choose.pt-120,
  .working-process.pt-120,
  .events-preview.pt-120,
  .faq-section.pt-120,
  .homepage-quote-section.pt-100,
  .final-cta.pt-100,
  .testimonials-preview.pt-120 {
    padding-top: 54px !important;
  }

  .about-snapshot.pb-90,
  .services__area.pb-80,
  .featured-portfolio.pb-90,
  .why-choose.pb-90,
  .working-process.pb-90,
  .events-preview.pb-90,
  .faq-section.pb-120,
  .homepage-quote-section.pb-100,
  .final-cta.pb-100,
  .testimonials-preview.pb-90 {
    padding-bottom: 44px !important;
  }
}

@media (max-width: 767px) {
  .rr-client-logo-strip {
    padding: 22px 0;
  }

  .rr-client-logo-group {
    gap: 28px;
    padding: 0 14px;
  }

  .rr-client-logo-item {
    width: 112px;
    height: 42px;
    flex-basis: 112px;
  }

  .rr-client-logo-item img {
    max-height: 36px;
  }

  .featured-portfolio .rr-home-project-track {
    gap: 18px;
  }

  .featured-portfolio .rr-home-project-slide {
    flex-basis: 88%;
  }

  .banner__area-3.pt-120 {
    padding-top: 36px !important;
  }

  .banner__area-3.banner__height-3 {
    padding-bottom: 30px !important;
  }

  .banner__area-3 .banner__item-3 {
    padding-top: 24px !important;
  }

  .banner__area-3 .banner__button {
    margin-top: 24px !important;
  }

  .banner__area-3 .appoinment-cta-2 {
    padding-top: 24px !important;
  }

  .banner__area-3 .appoinment-cta-2__content {
    padding: 18px 18px !important;
  }

  .rr-cap-item {
    padding: 16px 16px !important;
  }

  .about-snapshot.pt-120,
  .services__area.pt-120,
  .featured-portfolio.pt-120,
  .why-choose.pt-120,
  .working-process.pt-120,
  .events-preview.pt-120,
  .faq-section.pt-120,
  .homepage-quote-section.pt-100,
  .final-cta.pt-100,
  .testimonials-preview.pt-120 {
    padding-top: 42px !important;
  }

  .about-snapshot.pb-90,
  .services__area.pb-80,
  .featured-portfolio.pb-90,
  .why-choose.pb-90,
  .working-process.pb-90,
  .events-preview.pb-90,
  .faq-section.pb-120,
  .homepage-quote-section.pb-100,
  .final-cta.pb-100,
  .testimonials-preview.pb-90 {
    padding-bottom: 36px !important;
  }

  .about-snapshot .col-lg-6.mb-30,
  .featured-portfolio .col-xl-4.mb-30,
  .why-choose .col-lg-4.mb-30,
  .events-preview .col-lg-4.mb-30,
  .testimonials-preview .col-lg-4.mb-30 {
    margin-bottom: 20px !important;
  }

  .about-snapshot .about-img-wrap {
    padding-right: 0 !important;
  }

  .services__area .section__wrapper + p.mb-55,
  .featured-portfolio .row.mb-60,
  .events-preview .row.mb-60,
  .why-choose .col-xl-8.mb-60,
  .working-process .col-xl-8.mb-60,
  .faq-section .col-xl-8.mb-60,
  .homepage-quote-section .col-xl-8.mb-50,
  .testimonials-preview .col-xl-8.mb-60 {
    margin-bottom: 26px !important;
  }

  .services__item {
    padding: 28px 22px !important;
  }

  .spec-card,
  .event-card,
  .event-card-item {
    padding: 22px 20px !important;
  }

  .homepage-quote-section .form-container-box {
    padding: 26px 18px !important;
  }

  .final-cta h2 {
    font-size: 28px !important;
  }
}

/* =============================================
   RR EVENTS FINAL SPACING QA
   Scoped section tightening for production pages
   ============================================= */
.page__title-area.page__title-height {
  min-height: 430px !important;
}

.page__title-area .page__title-wrapper.mt-100 {
  margin-top: 56px !important;
}

.about-overview.pt-120,
.what-we-do.pt-120,
.capability-grid.pt-120,
.mission-values.pt-120,
.business-details-block.pt-120,
.services-intro.pt-120,
.what-we-handle.pt-120,
.services-process.pt-120,
.services-faq.pt-120,
.events-grid-area.pt-120,
.portfolio-area.pt-110,
.contact-cards.pt-120,
.contact-faq.pt-100,
.quote-area.pt-120 {
  padding-top: 86px !important;
}

.about-overview.pb-90,
.what-we-do.pb-90,
.capability-grid.pb-90,
.mission-values.pb-90,
.services-intro.pb-60,
.service-cards.pb-90,
.what-we-handle.pb-90,
.services-process.pb-90,
.events-grid-area.pb-120,
.portfolio-area.pb-110,
.contact-cards.pb-80,
.contact-form-map-area.pb-120,
.quote-area.pb-120 {
  padding-bottom: 72px !important;
}

.business-details-block.pb-120,
.services-faq.pb-120,
.contact-faq.pb-100 {
  padding-bottom: 84px !important;
}

.portfolio-preview-banner.pt-80,
.gallery-cta.pt-80 {
  padding-top: 64px !important;
}

.portfolio-preview-banner.pb-80,
.gallery-cta.pb-80 {
  padding-bottom: 64px !important;
}

.events-grid-area .col-xl-8.mb-60,
.contact-faq .col-xl-8.mb-60,
.services-faq .col-xl-8.mb-60,
.services-process .col-xl-8.mb-60,
.what-we-handle .col-xl-8.mb-60,
.mission-values .col-xl-8.mb-60,
.what-we-do .col-xl-8.mb-60,
.portfolio-filter.mb-50,
.quote-area .col-lg-8.mb-50 {
  margin-bottom: 38px !important;
}

.contact-cards .col-lg-3.mb-30,
.events-grid-area .col-lg-4.mb-40,
.portfolio-area .col-lg-4.mb-30 {
  margin-bottom: 26px !important;
}

@media (max-width: 991px) {
  .page__title-area.page__title-height {
    min-height: 360px !important;
  }

  .page__title-area .page__title-wrapper.mt-100 {
    margin-top: 42px !important;
  }

  .about-overview.pt-120,
  .what-we-do.pt-120,
  .capability-grid.pt-120,
  .mission-values.pt-120,
  .business-details-block.pt-120,
  .services-intro.pt-120,
  .what-we-handle.pt-120,
  .services-process.pt-120,
  .services-faq.pt-120,
  .events-grid-area.pt-120,
  .portfolio-area.pt-110,
  .contact-cards.pt-120,
  .contact-faq.pt-100,
  .quote-area.pt-120 {
    padding-top: 58px !important;
  }

  .about-overview.pb-90,
  .what-we-do.pb-90,
  .capability-grid.pb-90,
  .mission-values.pb-90,
  .services-intro.pb-60,
  .service-cards.pb-90,
  .what-we-handle.pb-90,
  .services-process.pb-90,
  .events-grid-area.pb-120,
  .portfolio-area.pb-110,
  .contact-cards.pb-80,
  .contact-form-map-area.pb-120,
  .quote-area.pb-120,
  .business-details-block.pb-120,
  .services-faq.pb-120,
  .contact-faq.pb-100 {
    padding-bottom: 50px !important;
  }

  .portfolio-preview-banner.pt-80,
  .gallery-cta.pt-80 {
    padding-top: 48px !important;
  }

  .portfolio-preview-banner.pb-80,
  .gallery-cta.pb-80 {
    padding-bottom: 48px !important;
  }
}

@media (max-width: 767px) {
  .page__title-area.page__title-height {
    min-height: 310px !important;
  }

  .page__title-area .page__title-wrapper.mt-100 {
    margin-top: 28px !important;
  }

  .about-overview.pt-120,
  .what-we-do.pt-120,
  .capability-grid.pt-120,
  .mission-values.pt-120,
  .business-details-block.pt-120,
  .services-intro.pt-120,
  .what-we-handle.pt-120,
  .services-process.pt-120,
  .services-faq.pt-120,
  .events-grid-area.pt-120,
  .portfolio-area.pt-110,
  .contact-cards.pt-120,
  .contact-faq.pt-100,
  .quote-area.pt-120 {
    padding-top: 42px !important;
  }

  .about-overview.pb-90,
  .what-we-do.pb-90,
  .capability-grid.pb-90,
  .mission-values.pb-90,
  .services-intro.pb-60,
  .service-cards.pb-90,
  .what-we-handle.pb-90,
  .services-process.pb-90,
  .events-grid-area.pb-120,
  .portfolio-area.pb-110,
  .contact-cards.pb-80,
  .contact-form-map-area.pb-120,
  .quote-area.pb-120,
  .business-details-block.pb-120,
  .services-faq.pb-120,
  .contact-faq.pb-100 {
    padding-bottom: 38px !important;
  }

  .events-grid-area .col-xl-8.mb-60,
  .contact-faq .col-xl-8.mb-60,
  .services-faq .col-xl-8.mb-60,
  .services-process .col-xl-8.mb-60,
  .what-we-handle .col-xl-8.mb-60,
  .mission-values .col-xl-8.mb-60,
  .what-we-do .col-xl-8.mb-60,
  .portfolio-filter.mb-50,
  .quote-area .col-lg-8.mb-50 {
    margin-bottom: 26px !important;
  }

  .contact-cards .col-lg-3.mb-30,
  .events-grid-area .col-lg-4.mb-40,
  .portfolio-area .col-lg-4.mb-30 {
    margin-bottom: 20px !important;
  }
}
