/* ==========================================================================
   MOTEX® STUDIO LANDING PAGE STYLESHEET
   Exact Recreation of Visual Reference Screenshot with Video Background
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Variables & Root Setup
   -------------------------------------------------------------------------- */
:root {
  --motex-bg: #0d0e10;
  --motex-accent: #FF4D2E;
  --motex-text-white: #FFFFFF;
  --motex-text-light: #E3E3E5;
  --motex-text-gray: #9A9A9F;
  --motex-text-muted: #55555C;
  --motex-border: rgba(255, 255, 255, 0.12);
  --motex-btn-bg: rgba(255, 255, 255, 0.02);
  --motex-btn-hover-bg: rgba(255, 255, 255, 0.06);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base Body Styling */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: var(--motex-bg);
  color: var(--motex-text-light);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   2. Main Container (1500px Max-Width Centered)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}
@media (max-width:767px){
  .container{
    padding-left:15px;
    padding-right:15px;
  }
}
/* --------------------------------------------------------------------------
   3. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.header-section {
  width: 100%;
  padding-top: 28px;
  padding-bottom: 20px;
  z-index: 1000;
  position: relative;
}

/* Logo Image from images folder */
.logo-img {
  height: 53px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: var(--motex-text-white) !important;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 14px !important;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  opacity: 1;
}

/* Remove default Bootstrap dropdown toggle arrow */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

.nav-caret {
  font-size: 10px;
  margin-left: 4px;
  vertical-align: 1px;
  opacity: 0.9;
  color: var(--motex-text-white);
}

/* Header Right Elements */
.contact-email {
  color: #6b6b6b; 
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}


.email-icon {
  font-size: 15px;
  opacity: 0.8;
}

.header-divider {
  width: 1px;
  height: 22px;
  background-color: var(--motex-border);
  margin: 0 4px;
}

/* "Get a Quote" Button */
.btn-get-quote {
  background-color: var(--motex-btn-bg);
  border: 1px solid var(--motex-border);
  border-radius: 10px;
  padding: 14px 30px;
  color: var(--motex-text-white);
  transition: all 0.25s ease;
  min-width: 118px;
}

.btn-get-quote:hover {
  background-color: var(--motex-btn-hover-bg);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--motex-accent);
}
.btn-get-quote:hover .quote-line-1{
   color: var(--motex-accent);
}

.quote-line-1 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--motex-text-white);
}

.quote-symbol img{
  
  height: 20px;
  margin-left: 4px;
}
.contact-email:hover .email-icon{
color: var(--motex-accent) !important;
}
/* --------------------------------------------------------------------------
   4. Main Hero Section & Background Video (No Overlay)
   -------------------------------------------------------------------------- */
.hero-section {
  width: 100%;
}

.hero_banner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  border-radius: 0;
  padding-top: 60px;
}

/* Background Video */
.hero_background_video,
.hero_banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Hero Content Above Video */
.hero_banner_content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;min-height: calc(100vh - 120px);
}


/* Main Typography Left */
.hero-title-wrapper {
  line-height: 0.9;
}

.hero-main-title {
  display: flex;
  align-items: flex-start;
  line-height: 0.88;
}

.title-motex {
  font-size: 200px;
  font-weight: 700;
  color: var(--motex-text-light);
  letter-spacing: -0.025em;
}

.badge-inner {
  font-size: clamp(1.3rem, 2.7vw, 2.5rem);
  font-weight: 800;
  color: var(--motex-text-light);
  line-height: 1;
}

.sub-title-container {
  display: flex;
  justify-content: flex-start;
  padding-left: 430px;
  margin-top: 20px;
}

.hero-sub-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--motex-text-white);
  letter-spacing: -0.015em;
  margin-top: -6px;
  line-height: 1;
}

/* Upper Right Paragraph & Button */
.hero-desc-wrapper {
  max-width: 580px;
}

.hero-description {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.hero-right-col{
  margin-top: 150px;
  max-width: 558px;
}
.btn-start-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--motex-btn-bg);
  border: 1px solid var(--motex-border);
  border-radius: 10px;
  padding: 12px 28px;
  color: var(--motex-text-light);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  height: 48px;
}

.btn-start-project:hover {
  background-color: #171717;
  border-color: #1e1e1e;
  color: var(--motex-accent);
}

/* Bottom Left Quote */
.hero-quote-wrapper {
  max-width: 620px;
}

.hero-quote {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.quote-bright {
  color: var(--motex-text-light);
}
.hero-quote .quote-bright{ 
  margin-left: 50px;
}
.quote-muted {
  color: var(--motex-text-muted);
}

/* Bottom Right Copyright & Category Tag Pills */
.footer-copyright-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--motex-text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.category-pills-container {
  width: auto;
}

.pill-row {
  width: auto;
}
.pill-row:nth-child(2) .pill-tag:nth-child(1){
color: var(--motex-text-white);
}
.pill-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--motex-text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

/* Active Highlighted Pills (3D Animation & Explainer Video) */
.pill-tag.pill-active {
  border-color: var(--motex-accent);
  color: var(--motex-accent);
  background-color: transparent;
}
/* --------------------------------------------------------------------------
   5. About Motex Section
   -------------------------------------------------------------------------- */
.about-motex-section {
  width: 100%;
  padding: 50px 0 70px 0;
  background-color: var(--motex-bg);
  position: relative;
}

.about-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.about-statement {
  font-size: 52px;
  font-weight: 700;
  color:#e8e8e8;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.about-word {
  display: inline-block;
  color: rgba(255, 255, 255, 0.15);
  margin-right: 0.28em;
  will-change: color;
}

/* --------------------------------------------------------------------------
   6. Brands / Trusted By Section
   -------------------------------------------------------------------------- */
.brands-section {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 25px;
  background-color: var(--motex-bg);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.brands-section .container {
  transform-origin: center top;
  will-change: transform;
}

.brands-badge-text {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b6b;
  letter-spacing: -0.01em;
}

.brand-card {
  background-color: #121212;
  border-radius: 20px;
  padding: 22px 18px;
  height: 120px;
  transition: all 0.25s ease;
  user-select: none;
  cursor: pointer;
}

.brand-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.brand-card img{
   height: 30px;
    opacity: 0.25;
}
.brand-card:hover img{
    opacity: 1;
}
.brands-badge-icon img{
  height: 15px;
  width: 15px;
}


/* --------------------------------------------------------------------------
   7. Services / What We Do Section (Accordion)
   -------------------------------------------------------------------------- */
.services-section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
  background-color: var(--motex-bg);
  position: relative;
  overflow-x: clip;
}

.services-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
}

.services-main-title {
  font-size:120px;
  font-weight: 700;
  color: var(--motex-text-white);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.services-description {
  font-size: 20px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-top: auto;
}
.custom-services-accordion{
  max-width: 1280px;
  margin: auto;
}
/* Accordion Item Styling */
.custom-services-accordion .service-item {
  background-color: #121212;
  border: 1px solid #121212;
  border-radius: 16px !important;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  will-change: transform, opacity;
}

.custom-services-accordion .service-button {
  background-color: #121212 !important;
  box-shadow: none !important;
  padding: 30px !important;
  width: 100%;
  border: none;
}

.custom-services-accordion .service-button::after {
  display: none !important;
}

.width-100 {
  width: 100%;
}

.service-number {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.service-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--motex-text-white);
  letter-spacing: -0.015em;
}

/* Plus/Minus Icons in Orange Circle */
.accordion-icon {
  font-size: 30px;
  color: var(--motex-accent);
}

.service-button.collapsed .icon-minus {
  display: none;
}

.service-button:not(.collapsed) .icon-plus {
  display: none;
}

.service-body {
  border-top: none;
  background-color: transparent;
}

.service-media-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0c0d0f;
}

.service-thumb-media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.service-subheading {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--motex-text-white);
  letter-spacing: -0.015em;
}

.service-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.55;
}

.categories-label {
  font-size: 13px;
  font-weight: 500;
  color: #6A6A72;
}

.service-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #6A6A72;
  white-space: nowrap;
}

.service-pill.pill-active {
  border-color: var(--motex-accent);
  color: var(--motex-accent);
  background-color: transparent;
}

.service-pill.pill-highlight {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--motex-text-white);
}

/* --------------------------------------------------------------------------
   8. Latest Work Section
   -------------------------------------------------------------------------- */


.latest-work-section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 140px;
  background-color: var(--motex-bg);
}
.about-motex-section .custom-container{
  max-width: 1200px;
  margin: auto;
}
.work-section-title {
  font-size: 120px;
  font-weight: 700; 
  color: var(--motex-text-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: auto;
}

.work-description {
  font-size: 20px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.work-card {
  width: 100%;
}

.work-card-media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #121316;
}

.work-video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Highlighted Border for Card 3 in Screenshot */


.work-card-meta {
  background-color: #171717;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 30px;
 
}

.work-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--motex-text-white);
  letter-spacing: -0.01em;
}
.work-title:hover {
  color: var(--motex-accent);
   cursor: pointer;
} 
.work-year {
  font-size: 16px;
  font-weight: 500;
  color: #6A6A72;
}

/* View All Project Button Bar */
.work-btn-all {
  width: 100%;
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 17px 34px;
  color: var(--motex-text-white);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.work-btn-all:hover ,.work-btn-all:hover .icon-arrow {
  color: var(--motex-accent);
}

.icon-arrow {
  font-size: 16px;
  color: var(--motex-text-white);
}

/* --------------------------------------------------------------------------
   9. Testimonials / Client Stories Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 140px;
  background-color: var(--motex-bg);
}
.testimonials-section .custom-container{
  max-width: 1380px;
  margin: auto;
}
.testimonials-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
}

.testimonials-main-title {
  font-size: 120px;
  font-weight: 700; 
  color: var(--motex-text-white);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-align: left;
  margin-right: -299px !important;
}

/* Profile Card */
.testimonial-profile-card {
  background-color: #121316;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.profile-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
}

.profile-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--motex-text-gray);
}

/* Social Buttons Grid (2x2) */
.social-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 26px);
  gap: 9px;
}

.social-btn {
  width: 26px;
  height: 26px;
  background-color: #FF4D2E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-btn:hover {
  opacity: 0.85;
  color: #FFFFFF;
}

/* Review Card */
.testimonial-review-card {
  background-color: #121316;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.star-rating {
  color: var(--motex-accent);
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.company-label {
  font-size: 14px;
  font-weight: 400; 
  color: #55555C;
}

.review-text {
  font-size: 18px;
  font-weight: 700;
  color: #e8e8e8; 
  line-height: 1.6;
  margin-top: 40px !important; 
}

/* Bottom Footer Cards */
.testimonial-footer-card {
  background-color: #121316;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.rating-large {
  font-size: 38px;
  font-weight: 800;
  color: var(--motex-text-white);
}

.rating-small {
  font-size: 16px;
  font-weight: 500;
  color: #55555C;
}

.rating-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--motex-text-gray);
}

/* Avatar Stack */
.avatar-stack .stack-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #121316;
}

.ms-n2 {
  margin-left: -8px !important;
}

.stack-badge {
  background-color: var(--motex-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 50%;
  border: 2px solid #121316;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.trusted-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--motex-text-gray);
  line-height: 1.2;
}

.trusted-subtext {
  font-size: 12px;
  font-weight: 400;
  color: #55555C;
}

.leave-review-btn {
  background-color: #111111 ;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 10px 22px;
  color: var(--motex-text-white);
  font-size: 15px;
  font-weight: 500; 
  transition: all 0.25s ease;
}

.leave-review-btn:hover {
  background-color: #171717;;
  color: var(--motex-accent);
}

/* --------------------------------------------------------------------------
   10. Numbers Section (By The Numbers)
   -------------------------------------------------------------------------- */
section.py-5{
  padding:100px 0px !important
}
.numbers-section {
  width: 100%;
  padding-top: 130px;
  padding-bottom: 160px;
  background-color: var(--motex-bg);
}

.numbers-main-title {
  font-size: 120px;
  font-weight: 700; 
  color: var(--motex-text-white);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.numbers-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  margin-left: -110px;
}

.numbers-description {
  font-size: 20px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.6;
  letter-spacing: -0.005em;
}

.est-text-muted {
  font-size: 16px;
  font-weight: 400;
  color: #55555C;
}

.est-divider {
  width: 180px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.est-text-highlight {
  font-size: 16px;
  font-weight: 400;
  color: var(--motex-accent);
}

/* Stat Cards */
.stat-card {
  background-color: #121212;
  border: 1px solid #121212;   
  border-radius: 16px;
  transition: all 0.25s ease;
  min-height: 200px;
}


.stat-number {
  font-size: 52px;
  font-weight: 700; 
  color: var(--motex-text-white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
    align-items: center;
}

.stat-symbol {
  color: var(--motex-accent);
  margin-left: 2px;
  font-size: 28px !important;
  font-weight: 600;
}

.stat-index {
  font-size: 14px;
  font-weight: 400;
  color: #55555C;
}

.stat-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--motex-text-white);
  letter-spacing: -0.01em;
}

.stat-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.8;
}

/* Right Media Artwork */
.numbers-media-wrapper {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #121316;
}

.numbers-img {
  width: 130%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   10. How We Work Section
   -------------------------------------------------------------------------- */
.process-section {
  width: 100%;
  padding-top: 130px;
  padding-bottom: 150px;
  background-color: var(--motex-bg);
}

.process-main-title {
  font-size: 120px;
  font-weight: 700; 
  color: var(--motex-text-white);
  line-height: 1;
  letter-spacing: -0.035em;
  position: relative;
}

.process-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
  margin-left: 12px;
  vertical-align: top;
}

/* Process Cards */
.process-card {
  background-color: #121212;
  border: 1px solid #171717;
  border-radius: 16px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  min-height: 320px;
  will-change: transform;
}


.step-label {
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
}

.step-number {
  font-size: 14px;
  font-weight: 400;
  color: var(--motex-accent);
}

.step-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--motex-text-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 80px;
}

.step-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--motex-text-gray);
  line-height: 1.8;
  letter-spacing: -0.005em;
}

/* Process Media Banner & Play Icon */
.process-media-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #121316;
}

.process-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.process-media-wrapper:hover .process-bg-img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Play Icon Overlay */
.play-icon-img {
  width: 150px;
  height: auto;
  cursor: pointer;
  will-change: transform;
  pointer-events: none;
}


/* --------------------------------------------------------------------------
   12. Blog / Articles Section (From The Studio)
   -------------------------------------------------------------------------- */
.blog-section {
  width: 100%;
  padding-top: 130px;
  padding-bottom: 140px;
  background-color: var(--motex-bg);
}
.blog-section .custom-container{
max-width: 1380px;
margin: auto;
}
.blog-tag {
  color: var(--motex-accent);
  font-size: 16px;
  font-weight: 400;
}

.blog-main-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--motex-text-white);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.blog-header-line {
  height: 1px;
  background-color: #1e1e1e;
}

.blog-btn-all {
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 10px 24px;
  color: var(--motex-text-white);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.blog-btn-all:hover {
  background-color: #171717;
  color: var(--motex-accent);
}

/* Article Cards */
.article-card {
  background-color: #121316;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.article-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Feature Article Card */
.feature-article-card {
  min-height: 480px;
}

.article-bg-img {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
}

.article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 16, 0.2) 0%, rgba(12, 13, 16, 0.92) 80%);
  z-index: 1;
}

.article-feature-title {
  font-size: 28px;
  font-weight: 600; 
  color: var(--motex-text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Category Pill */
.article-pill {
  display: inline-block;
  background-color: rgba(12, 13, 16, 0.85);
  border: 1px solid var(--motex-accent);
  color: var(--motex-accent);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 400;
}

/* Standard Article Card */
.article-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 16px;
}

.article-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.standard-article-card:hover .article-card-img {
  transform: scale(1.05);
}

.article-date {
  font-size: 14px;
  font-weight: 400; 
  color: #6A6A72;
}

.article-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-top: auto;
}

.article-desc {
  font-size: 16px;
  font-weight: 400;
  color: #6A6A72;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. Ready To Start CTA Section
   -------------------------------------------------------------------------- */
.cta-ready-section {
    position: relative;
    overflow: hidden;
}

.cta-ready-section::before,
.cta-ready-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

/* Top gradient */
.cta-ready-section::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        #0D0E10 0%,
        rgba(11, 11, 11, 0) 100%
    );
}

/* Bottom gradient */
.cta-ready-section::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        #0D0E10 0%,
        rgba(16, 16, 16, 0) 100%
    );
}

/* Content always above */
.cta-ready-section > * {
    position: relative;
    z-index: 2;
}
.cta-ready-section {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 170px;
  background-color: var(--motex-bg);
  position: relative;
  overflow: hidden;
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/Image-4-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform-origin: center center;
  will-change: transform;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 13, 15, 0.45) 0%, rgba(12, 13, 15, 0.88) 100%);
  pointer-events: none;
}

.ready-banner-card {
  width: 100%;
  background-color: transparent;
  min-height: 420px;
}


.ready-title-accent {
  width: 4px;
  background-color: var(--motex-accent);
  border-radius: 4px;
  flex-shrink: 0;
}

.ready-title {
  font-size: 120px;
  font-weight: 700;
  color: var(--motex-text-white);
  line-height: 1em;
  letter-spacing: -0.035em;
  max-width: 507px;
}

.ready-subheading {
  font-size: 28px;
  font-weight: 600;
  color: var(--motex-text-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ready-btn {
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 12px 30px;
  color: var(--motex-text-white);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.ready-btn:hover {
  background-color: #171717;
  color: var(--motex-accent);
}

/* Feature Item Bar */
.ready-feature-item {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
}

.feature-icon {
  color: var(--motex-accent);
  font-size: 14px;
}

.feature-text {
  color: #8A8A92;
}

/* --------------------------------------------------------------------------
   14. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
  width: 100%;
  background-color: var(--motex-bg);
  color: var(--motex-text-gray);
}

.footer-logo {
  height: 84px;
  width: auto;
}

.footer-tagline {
  font-size: 28px;
  font-weight: 600;
  color: var(--motex-text-white);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.footer-info-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
}

.footer-info-text {
  font-size: 14px;
  font-weight: 400;
  color: #8A8A92;
  line-height: 1.5;
}

.footer-column-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--motex-text-white);
  letter-spacing: -0.015em;
}

.footer-link {
  color: #8A8A92;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--motex-text-white);
}

.link-arrow {
  color: var(--motex-bg);
    font-size: 10px;
    height: 18px;
    width: 18px;
    border-radius: 50px;
    background: var(--motex-accent);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Newsletter Form */
.newsletter-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
  line-height: 1.35;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  color: var(--motex-text-white) !important;
  padding: 12px 140px 12px 0 !important;
  font-size: 28px;
  font-weight: 600;
  box-shadow: none !important;
}

.newsletter-input::placeholder {
  color: #4A4A52;
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #111111 !important;
  border: 1px solid #1e1e1e !important;
  border-radius: 8px !important;
  color: var(--motex-text-white) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 14px 30px !important;
  transition: all 0.25s ease !important;
}

.newsletter-btn:hover {
  background-color: #171717 !important;
  color: var(--motex-accent) !important;
}

/* Social Media Block */
.social-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
}

.footer-social-btn {
  width: 50px;
  height: 50px;
  background-color: var(--motex-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 25px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-social-btn:hover {
  opacity: 0.85;
  color: #FFFFFF;
}

/* Recognized By */
.awards-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--motex-text-white);
}

.award-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #6A6A72;
}
.footer-social-block{
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
/* Bottom Bar */
.copyright-text {
  font-size: 14px;
  font-weight: 400;
  color: #55555C;
}

.brand-orange {
  color: var(--motex-accent);
}

.legal-link {
  font-size: 14px;
  font-weight: 400;
  color: #55555C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: var(--motex-text-white);
}

.legal-divider {
  color: #33333A;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints & Overrides
   -------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------
   15. Responsive Breakpoints & Overrides
   -------------------------------------------------------------------------- */

/* Large Screens & Desktops (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background-color: #121316;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }

  .navbar-nav {
    gap: 8px !important;
    margin-bottom: 15px;
  }

  .navbar-nav .nav-link {
    padding: 8px 12px !important;
  }

  .sub-title-container {
    padding-left: clamp(4rem, 15vw, 12rem);
  }

  .hero-right-bottom {
    justify-content: flex-start !important;
  }

  .category-pills-container {
    align-items: flex-start !important;
  }

  .pill-row {
    justify-content: flex-start !important;
  }
  .services-main-title,
  .process-main-title,
  .testimonials-main-title,
  .work-section-title,
  .blog-main-title,.numbers-main-title {
    font-size: 60px;
  }
}

/* Medium Screens & Tablets (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .hero_banner {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero_banner_content {
    min-height: auto;
  }

  .banner-btm-sc {
    margin-top: 80px !important;
  }

  .hero-quote-wrapper {
    margin-bottom: 24px;
  }

  .services-section,
  .numbers-section,
  .process-section,
  .testimonials-section,
  .cta-ready-section,
  .blog-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .numbers-media-wrapper {
    min-height: 340px;
    margin-top: 24px;
  }

  .process-media-wrapper {
    height: 340px;
  }

  .feature-article-card {
    min-height: 380px;
  }

  .ready-title {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .testimonials-tag {
    position: static !important;
    display: inline-block !important;
    margin-bottom: 12px;
  }
  .title-motex {
    font-size: 85px;
  }
}

/* Small Screens & Mobile (max-width: 767.98px) */
@media (max-width: 991.98px) {
  .banner-btm-sc {
    margin-top: 40px !important;
  }

  .hero-main-title {
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .title-motex {
    font-size: 85px;
  }

  .hero-sub-title {
    font-size: 30px;
    margin-right: -85px !important;
  }
  .hero-right-col{
    margin-top: 0;
  }

  .sub-title-container {
    padding-left: 0;
    justify-content: center;
  }

  .reg-circle-badge {
    border-width: 3px;
    margin-left: 6px;
    margin-top: 8px;
  }

  .hero-quote {
    font-size: 1.25rem;
  }

  .hero-description {
    text-align: center!important;
  }

  .hero-cta-wrapper {
 margin: auto;
    justify-content: center;
    display: flex;
  }
  .hero-quote-wrapper{
    text-align: center;
  }
  .category-pills-container {
        align-items: center !important;
    }
  .pill-tag {
    padding: 6px 16px;
    font-size: 12px;
  }

  .about-motex-section {
    padding: 40px 0 50px 0;
  }

  .about-statement {
    font-size: 30px;
  }

  .services-section,
  .numbers-section,
  .process-section,
  .testimonials-section,
  .cta-ready-section,
  .blog-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }
   .testimonials-main-title{
    margin-right: 0 !important;
    
   }

  .services-main-title,
  .process-main-title,
  .testimonials-main-title,
  .work-section-title,
  .blog-main-title,.numbers-main-title {
    font-size: 40px;
  }
.numbers-tag {
    margin-left: 0px;
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
  .work-video {
    height: 220px;
  }
  .footer-logo {
    height: 60px;
    width: auto;
}
.footer-tagline {
    font-size: 22px;
}

  .service-button {
    padding: 18px 14px;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-number {
    font-size: 1.15rem;
  }

  .service-body {
    padding: 12px 14px !important;
  }

  .service-thumb-media {
    height: 180px;
  }

  .numbers-media-wrapper {
    min-height: 260px;
  }

  .process-card {
    min-height: auto;
    padding: 24px 20px !important;
  }

  .step-title {
    font-size: 1.4rem;
  }

  .process-media-wrapper {
    height: 240px;
    border-radius: 14px;
  }

  .play-icon-img {
    width: 65px;
  }

  .testimonial-profile-card,
  .testimonial-review-card,
  .testimonial-footer-card {
    padding: 20px !important;
  }

  .ready-banner-card {
    min-height: auto;
    padding: 24px 16px !important;
  }

  .ready-subheading {
    font-size: 1.25rem;
  }

  .ready-btn {
    width: 100%;
    text-align: center;
  }

  .feature-article-card {
    min-height: 320px;
  }

  .article-card-img {
    height: 200px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 12px;
    text-align: center;
  }
}

/* Extra Small Phones (max-width: 420px) */
@media (max-width: 420px) {
  .stat-card {
    padding: 16px !important;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 1rem;
  }

  .pill-tag {
    padding: 5px 12px;
    font-size: 11px;
  }

  .quote-line-1,
  .quote-line-2 {
    font-size: 10px;
  }

  .btn-get-quote {
    padding: 4px 10px;
    min-width: auto;
  }
}

/* GPU Optimization for Scroll Animated Sections */
.numbers-section .container,
.process-section .container,
.testimonials-section .container,
.cta-ready-section .container,
.blog-section .container {
  will-change: transform, opacity;
}
