/* =========================================================
   MARKA COMMUNICATIONS — MAIN STYLESHEET
   Prefix: mar-
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --mar-black:#000000;
  --mar-navy:#18212F;
  --mar-white:#ffffff;
  --mar-yellow:#FABB1B;
  --mar-cream:#EFEF9C3; /* fallback, corrected below */
  --mar-cream-yellow:#EFEF9C;
  --mar-yellow-soft:#FFF4CF;
  --mar-text-gray:#5A5F66;
  --mar-heading:#0E1116;
  --mar-radius-sm:8px;
  --mar-radius-md:16px;
  --mar-radius-lg:28px;
  --mar-radius-pill:50px;
  --mar-section-space:80px;
  --mar-container-max:1320px;
  --mar-font-main:'Inter', sans-serif;
  --mar-shadow-soft:0 10px 30px rgba(24,33,47,0.08);
  --mar-shadow-card:0 15px 40px rgba(24,33,47,0.12);
  --mar-shadow-glow:0px 0px 10px rgba(255,0,0,0.5);
  --mar-transition:all .3s ease;
}

/* ---------- Base ---------- */
*{box-sizing:border-box;}
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: clip;
  width: 100%;
}
body {
  font-family: var(--mar-font-main);
  color: var(--mar-text-gray);
  font-size: 16px;
  line-height: 1.6;
  background: var(--mar-white);
}
img{max-width:100%;height:auto;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:var(--mar-font-main);cursor:pointer;}
h1,h2,h3,h4,h5,h6{
  color:var(--mar-heading);
  font-weight:700;
  margin:0;
  line-height:1.2;
}
p{margin:0;}
.container {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.mar-container{
  width:100%;
  max-width:var(--mar-container-max);
  margin:0 auto;
  padding:0 20px;
}
section{position:relative;}

/* ---------- Utility ---------- */
.mar-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--mar-heading);
  margin-bottom:14px;
}
.mar-eyebrow .mar-diamond{
  width:10px;height:10px;
  background:var(--mar-yellow);
  transform:rotate(45deg);
  display:inline-block;
}
.mar-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 28px;
  background:var(--mar-yellow);
  color:var(--mar-black);
  font-weight:700;
  font-size:18px;
  border-radius:var(--mar-radius-pill);
  border:2px solid var(--mar-yellow);
  white-space:nowrap;
  transition:var(--mar-transition);
}
.mar-btn .mar-btn-arrow{
  width:26px;height:26px;
  border-radius:50%;
  background:#fff;
  color:var(--mar-yellow);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:var(--mar-transition);
}
.mar-btn .mar-btn-arrow i{color:#000; transition: color 0.3s ease;}
.mar-btn:hover{
  color:var(--mar-black);
  background-color: transparent !important;
  color: var(--mar-yellow) !important;
  border-color: var(--mar-yellow) !important;
  box-shadow: none !important;
}
.mar-btn:hover .mar-btn-arrow{
  transform:translateX(3px);
  background: var(--mar-yellow) !important;
}
.mar-btn:hover .mar-btn-arrow i {
  color: var(--mar-white) !important;
}
/* Explicit red drop-shadow requested for Explore More + Free Consultation buttons */
.mar-btn-shadow-red{
  box-shadow: none !important;
}
.mar-btn-shadow-red:hover{
  box-shadow: none !important;
}
.mar-btn-outline{
  background:transparent;
  border:2px solid var(--mar-navy);
  color:var(--mar-navy);
  transition:var(--mar-transition);
}
.mar-btn-outline .mar-btn-arrow{
  background:var(--mar-navy);
  color:var(--mar-yellow);
}
.mar-btn-outline .mar-btn-arrow i {
  color: var(--mar-yellow);
}
.mar-btn-outline:hover {
  background: var(--mar-navy) !important;
  color: var(--mar-white) !important;
  border-color: var(--mar-navy) !important;
  box-shadow: none !important;
}
.mar-btn-outline:hover .mar-btn-arrow {
  transform: translateX(3px);
  background: var(--mar-yellow) !important;
}
.mar-btn-outline:hover .mar-btn-arrow i {
  color: var(--mar-navy) !important;
}
.mar-btn-dark{
  background:var(--mar-navy);
  color:var(--mar-white);
  border:2px solid var(--mar-navy);
  transition:var(--mar-transition);
}
.mar-btn-dark .mar-btn-arrow{
  background:var(--mar-yellow);
  color:var(--mar-black);
}
.mar-btn-dark .mar-btn-arrow i {
  color: var(--mar-black);
}
.mar-btn-dark:hover {
  background: transparent !important;
  color: var(--mar-navy) !important;
  border-color: var(--mar-navy) !important;
  box-shadow: none !important;
}
.mar-btn-dark:hover .mar-btn-arrow {
  background: var(--mar-navy) !important;
}
.mar-btn-dark:hover .mar-btn-arrow i {
  color: var(--mar-white) !important;
}
.mar-btn-play{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  color:var(--mar-heading);
  background:none;
  border:none;
  font-size:15px;
}
.mar-btn-play .mar-play-circle{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--mar-yellow);
  color:var(--mar-black);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:var(--mar-transition);
}
.mar-btn-play:hover .mar-play-circle{
  transform:scale(1.12);
  box-shadow: none !important;
}


/* ---------- Header ---------- */
.mar-header{
  position:relative;
  width:100%;
  z-index:999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(6px);
  padding:18px 0;
  border-bottom:1px solid transparent;
}
.mar-header-mar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.mar-logo img{height:42px;}
.mar-nav{
  display:flex;
  align-items:center;
  gap:38px;
}
.mar-nav a{
  font-weight:500;
  font-size:15.5px;
  color:var(--mar-heading);
  padding:6px 0;
}
.mar-nav a:hover,
.mar-nav a.mar-active{
  color:var(--mar-yellow);
}
.mar-nav a.mar-active{font-weight:700;}
.mar-header-cta .mar-btn{padding:14px 24px;}
.mar-nav-toggle{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
  width:40px;
  height:40px;
  cursor:pointer;
}
.mar-nav-toggle span{
  width:26px;height:2px;background:var(--mar-heading);
  display:block;
}

/* ---------- Mobile Offcanvas Nav ---------- */
.mar-offcanvas{
  width:300px;
  background:var(--mar-white);
}
.mar-offcanvas .offcanvas-header{
  border-bottom:1px solid #EFEFEF;
  padding:20px;
}
.mar-offcanvas .mar-logo img{height:36px;}
.mar-offcanvas-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:10px;
}
.mar-offcanvas-nav a{
  font-weight:600;
  font-size:16px;
  color:var(--mar-heading);
  padding:14px 6px;
  border-bottom:1px solid #F3F3F3;
}
.mar-offcanvas-nav a:hover,
.mar-offcanvas-nav a.mar-active{color:var(--mar-yellow-soft-text,#B8860B);}
.mar-offcanvas-nav a.mar-active{font-weight:700;}
.mar-offcanvas-cta{
  margin-top:24px;
  width:100%;
  justify-content:center;
}

/* ---------- Offcanvas Contact Info ---------- */
.mar-offcanvas-contact-info {
  margin-top: 30px;
  border-top: 1px solid #ECEEF1;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
}

/* Custom scrollbar for offcanvas contact info */
.mar-offcanvas-contact-info::-webkit-scrollbar {
  width: 4px;
}
.mar-offcanvas-contact-info::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.mar-offcanvas-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mar-offcanvas-contact-item i {
  color: #B8860B; /* brand dark yellow/gold for readability on light BG */
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.mar-offcanvas-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mar-offcanvas-contact-item strong {
  color: #151A26;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mar-offcanvas-contact-item span {
  color: #4B5563;
  font-size: 13px;
  line-height: 1.4;
}

.mar-offcanvas-contact-item a {
  color: #B8860B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.mar-offcanvas-contact-item a:hover {
  opacity: 0.8;
}

/* ---------- Hero ---------- */
.mar-hero{
  padding:70px 0 140px;
  background:transparent;
  position:relative;
  overflow:hidden;
  min-height:90vh;
  display:flex;
  align-items:center;
}
.mar-hero .mar-container{width:100%;}
.mar-hero-slide{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding:30px 0;
}
.mar-hero-tag {
    display: inline-block;
    background: #FEF9C3;
    color: #FAB914;
    font-weight: 700;
    font-size: 36px;
    padding: 0px 14px;
    border-radius: 6px;
    margin-bottom: 6px;
}
.mar-hero-title{
  font-family:"Inter", sans-serif;
  font-size:85px;
  font-weight:900;
  line-height:72px;
  letter-spacing:0;
  color:#000;
  text-shadow:0px 4px 4px rgba(0, 0, 0, 0.25);
  margin:10px 0 20px;
}
.mar-hero-text {
    font-size: 16px;
    color: #666666;
    max-width: 460px;
    margin-bottom: 34px;
}
.mar-hero-actions{
  display:flex;
  align-items:center;
  gap:34px;
}
.mar-hero-visual{position:relative;}
.mar-hero-visual img {
    border-radius: 0;
    width: 100%;
    max-width: 800px;
    height: auto;  
}
.mar-hero-floatcard{
  position:absolute;
  max-width:230px;
  z-index:5;
  animation: floatCard 4s ease-in-out infinite;
}
.mar-hero-floatcard img{width:38px;height:38px;flex-shrink:0;}
.mar-bg-yellow-card-icon{
  min-width:50px;
  min-height:50px;
  background:#fabb1b;
  padding:2px;
  border-radius:10px;
  line-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:12px;
  flex-shrink:0;
}
.mar-bg-yellow-card-icon img {
    height: auto;
    width: 30px;
}
.mar-floatcard-1 {
    top: 3%;
    left: 40%;
    animation-delay: 0s;
}
.mar-floatcard-2 {
    top: 38%;
    left: 24%;
    animation-delay: 1.2s;
}
.mar-floatcard-3 {
    bottom: 5%;
    left: 31%;
    animation-delay: 2.4s;
}
.mar-hero-arrows{
  position:absolute;
  top: 37%;
  width:1700px;
  left:0;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:5;
  right:0;
  margin:auto;
}
.mar-hero-arrow{
  pointer-events:all;
  width:52px;height:52px;
  border-radius:50%;
  border:2px solid #000;
  background:var(--mar-white);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:var(--mar-transition);
}
.mar-hero-arrow:hover{background:var(--mar-yellow);border-color:var(--mar-yellow);}
.mar-hero-dots{
  position:static;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  margin:40px 0 0;
  padding:0;
}
.carousel-indicators[class*="mar-hero-dots"] [data-bs-target],
.mar-hero-dots [data-bs-target]{
  box-sizing:content-box;
  flex:0 1 auto;
  width:11px;
  height:11px;
  padding:0;
  margin-right:3px;
  margin-left:3px;
  text-indent:-999px;
  cursor:pointer;
  background-color:#D9D9D9;
  background-clip:padding-box;
  border:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  opacity:.5;
  transition:opacity .6s ease;
  border-radius:50%;
}
.mar-hero-dots button.active{
  width:11px;
  border-radius:5px;
  background:var(--mar-yellow);
  max-height:11px;
  padding:0;
  height:11px!important;
  opacity:1;
}
.mar-hero-dots.carousel-indicators button.active{
  background-color:#FABB1B;
}
/* Hero no longer ends in a full-width dark strip — the trust card floats and overlaps instead */

/* ---------- Trust / Stats — black diagonal band with floating card ---------- */
.mar-trust-wrap{
  position:relative;
  z-index:20;
  margin-top:-96px;
  background:#000;
  padding:100px;
  height:400px;
  overflow:hidden;
  clip-path:polygon(0 12%, 100% 0%, 100% 82%, 0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.mar-trust-glow {
    position: absolute;
    bottom: -51%;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #FCE7F3;
    opacity: 0.22;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}
.mar-trust{
  width:88%;
  max-width:1280px;
  margin:0 auto;
  min-height:120px;
  background:#1C2433;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 15px 40px rgba(0,0,0,.18);
  padding:30px 50px;
  display:flex;
  position:relative;
  z-index:2;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  color:var(--mar-white);
}
.mar-trust-col{flex:1;display:flex;flex-direction:column;gap:8px;}
.mar-trust-col-1{align-items:flex-start;text-align:left;}
.mar-trust-col-4{align-items:flex-end;text-align:right;}
.mar-trust-label{font-size:18px;font-weight:500;color:var(--mar-white);}
.mar-trust-label i{color:var(--mar-yellow);font-size:14px;margin-left:2px;}
.mar-trust-star{width:18px;height:18px;display:inline-block;vertical-align:middle;margin-left:2px;}
.mar-trust-number{font-size:42px;font-weight:700;color:var(--mar-white);line-height:1.1;}

.mar-trust-video {
    width: 181px;
    height: 113px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    cursor: pointer;
    margin: 0 auto;
}
.mar-trust-video img{width:100%;height:100%;object-fit:cover;transition:var(--mar-transition);}
.mar-trust-video:hover img{transform:scale(1.08);}
.mar-trust-video .mar-play-btn{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,.25);
}
.mar-trust-video .mar-play-btn span{
  width:36px;height:36px;border-radius:50%;
  background:var(--mar-yellow);
  display:flex;align-items:center;justify-content:center;
  color:var(--mar-black);
  transition:var(--mar-transition);
}
.mar-trust-video:hover .mar-play-btn span{transform:scale(1.2);}

.mar-trust-rating{align-items:flex-start;}
.mar-trust-stars-row{color:var(--mar-yellow);font-size:20px;letter-spacing:3px;}
.mar-trust-review-text{color:var(--mar-white);font-size:15px;}

.mar-trust-clients-label{
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--mar-white);
  font-size:13px;
  font-weight:600;
}
.mar-trust-clients-number{font-size:42px;font-weight:700;color:var(--mar-white);}
.mar-progress{
  width:150px;height:10px;background:#D9D9D9;
  border-radius:999px;margin-top:4px;overflow:hidden;
}
.mar-progress span{
  display:block;height:100%;width:45%;
  background:#FABB1B;border-radius:999px;
}

/* ---------- Products ---------- */
.mar-products{
  padding:var(--mar-section-space) 0 40px;
  position:relative;
  overflow:hidden;
}
.mar-product-glow {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #FCE7F3;
  opacity: 0.22;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}
.mar-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:50px;
}
.mar-h2{font-size:50px;font-weight:700;line-height:1.4;}
.mar-section-title {
    max-width: 620px;
}
.mar-carousel-nav{display:flex;gap:10px;}
.mar-carousel-nav button {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
    background: var(--mar-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--mar-transition);
}
.mar-carousel-nav button:hover{background:var(--mar-yellow);border-color:var(--mar-yellow);}
.mar-logos-marquee{
  overflow:hidden;
  position:relative;
  padding:20px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.mar-logos-track-mar-inner{
  display:flex;
  align-items:center;
  gap:70px;
  width:max-content;
  animation:mar-logo-scroll 28s linear infinite;
}
.mar-logos-marquee:hover .mar-logos-track-mar-inner{animation-play-state:paused;}
@keyframes mar-logo-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.mar-logo-item img {
    height: 45px;
    width: 100%!important;
    object-fit: contain;
}
.mar-logo-item {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    flex-shrink: 0;
    position: relative;
    border-radius: 20px;
    padding: 28px 24px;
    background: linear-gradient(90deg, rgb(252 231 243 / 10%) 0%, rgb(224 242 254 / 10%) 100%), rgb(255 255 255 / 10%);
    border: 1px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -2px 8px 12px 0px rgb(0 0 0 / 7%);
    transition: .35s ease;
    height: 80px;
    margin: 10px 0 20px 0;
}
.mar-logo-item:hover{transform:translateY(-3px);}

/* ---------- 360 Services ---------- */
/* ---------- 360 Services ---------- */
:root {
  --orbit-radius: 240px;
}
@media (max-width: 991px) {
  :root {
    --orbit-radius: 170px;
  }
}
.mar-services {
    padding: 100px 0;
    position: relative;
    /* background: radial-gradient(circle at center, rgba(253, 181, 21, 0.04) 0%, rgba(255, 255, 255, 0) 70%), var(--mar-white); */
    overflow: hidden;
}
.mar-services::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(253, 181, 21, 0.04);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.mar-services::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: rgba(2, 102, 255, 0.03);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}
.mar-services .mar-services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) {
  .mar-services .mar-services-grid {
    grid-template-columns: 1fr !important;
    gap: 60px;
    text-align: center;
  }
}
.mar-services-content {
  text-align: left;
}
@media (max-width: 991px) {
  .mar-services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.mar-services-title {
  margin: 6px 0 22px;
  max-width: 600px;
}
.mar-services-text {
  margin-bottom: 34px;
  max-width: 480px;
}
.mar-services-circular-showcase {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .mar-services-circular-showcase {
    width: 420px;
    height: 420px;
  }
}
.mar-services-orbit-wrap {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mar-services-orbit-wrap.mar-outer {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.015);
}
.mar-services-orbit-wrap.mar-inner {
  width: 320px;
  height: 320px;
  border: 1px solid #E5E5E5;
}
@media (max-width: 991px) {
  .mar-services-orbit-wrap.mar-outer {
    width: 340px;
    height: 340px;
  }
  .mar-services-orbit-wrap.mar-inner {
    width: 220px;
    height: 220px;
  }
}
.mar-service-orbit-item {
  --angle: 0deg;
  position: absolute;
  width: 70px;
  height: 70px;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
  animation: mar-orbit-item-move 100s linear infinite;
}
.mar-service-orbit-item:hover {
  z-index: 1000;
}
.mar-services-circular-showcase:hover .mar-service-orbit-item {
  animation-play-state: paused;
}
@keyframes mar-orbit-item-move {
  from {
    transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle) - 360deg));
  }
}
.mar-service-icon-float {
  width: 100%;
  height: 100%;
  animation: mar-icon-float 4s ease-in-out infinite;
}
@keyframes mar-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.mar-service-icon-mar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FDB515;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  cursor: pointer;
  pointer-events: all;
  transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mar-service-icon-mar-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FDB515;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.mar-service-orbit-item:hover .mar-service-icon-mar-inner::before {
  animation: mar-icon-ripple 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
@keyframes mar-icon-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.mar-service-icon-mar-inner svg {
  width: 24px;
  height: 24px;
}
.mar-service-orbit-item:hover .mar-service-icon-mar-inner {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 20px 50px rgba(253,181,21,.35);
}
.mar-service-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-15px);
  margin-right: 14px;
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 18px;
  white-space: normal;
  width: 250px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: opacity 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 350ms;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mar-service-tooltip strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--mar-yellow);
  display: block;
}
.mar-service-tooltip span {
  font-size: 12px;
  line-height: 1.4;
  color: #E2E8F0;
  font-weight: 400;
  display: block;
}
.mar-service-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #000000;
}
.mar-service-orbit-item:hover .mar-service-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.mar-center-badge {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
    z-index: 10;
    animation: mar-badge-pulse 3s ease-in-out infinite;
}
.mar-center-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes mar-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(253,181,21,.15);
  }
}


/* angle positions set inline via style attr using --a custom prop, handled in JS/HTML */

/* ---------- Process steps list (why choose left column) ---------- */
.mar-process-list{padding:var(--mar-section-space) 0;}
.mar-pl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    overflow: hidden;
}

section#about .mar-pl-grid .mar-pl-col {
    max-height: 700px;
    overflow-y: auto;
    padding-right: 10px;
    padding-left: 10px;
    scroll-behavior: smooth;
    position: relative;
}

.mar-pl-cta{text-align:center;margin-top:50px;}
.mar-pl-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 20px;
    border-bottom: 0px solid #ECECEC;
    cursor: pointer;
}
.mar-pl-item.mar-open {
    align-items: self-start;
}
.mar-pl-icon{
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;color:var(--mar-white);
  transition:var(--mar-transition);
}
.mar-pl-icon img{width:24px;height:24px;filter:brightness(0) invert(1);}
.mar-pl-icon{box-shadow:0 0 10px rgba(0, 0, 0, 0.25);}
.mar-icon-business{background:linear-gradient(180deg,#027CFF 0%,#0266FF 100%);}
.mar-icon-solution{background:linear-gradient(180deg,#838FFF 0%,#5665FF 100%);}
.mar-icon-design{background:linear-gradient(180deg,#814AFF 0%,#6724FF 100%);}
.mar-icon-testing{background:linear-gradient(180deg,#F9128F 0%,#DB0277 100%);}
.mar-icon-maintenance{background:linear-gradient(180deg,#FACC15 0%,#FF0000 100%);}
.mar-icon-partnership{background:linear-gradient(180deg,#814AFF 0%,#F9CF2C 100%);}
.mar-pl-body h4{font-size:17px;margin-bottom:6px;}
.mar-pl-body p {
    font-size: 14.5px;
    display: none;
}
.mar-pl-item.mar-open .mar-pl-body p{display:block;}
.mar-pl-arrow{
  margin-left:auto;
  width:44px;height:44px;
  border-radius:50%;
  border:0px solid #E3E3E3;
  background:var(--mar-white);
  display:flex;align-items:center;justify-content:center;
  transition:var(--mar-transition);
  flex-shrink:0;
}
.mar-pl-arrow i{
  color:#000;
  font-size:20px;
}
.mar-pl-item:hover .mar-pl-arrow{background:var(--mar-yellow);border-color:var(--mar-yellow);}
.mar-pl-item.mar-open .mar-pl-arrow{transform:rotate(180deg);}
.mar-pl-item.mar-open .mar-pl-icon{transform:scale(1.2);}

.mar-why-title{margin:8px 0 16px;}
.mar-why-text {
    margin-bottom: 30px;
    max-width: 635px;
}
.mar-counters{display:flex;flex-direction:column;gap:20px;margin-bottom:36px;}
.mar-counter-item{display:flex;align-items:center;gap:18px;}
.mar-counter-circle{
  width:75px;height:75px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;font-weight:800;color:var(--mar-heading);
  flex-shrink:0;
}
.mar-counter-item span.mar-counter-label{font-weight:600;color:var(--mar-heading);font-size:16px;}
.mar-circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.mar-circle-track {
  /* stroke: var(--mar-navy); */
  stroke-width: 2px;
  fill: none;
}
.mar-circle-fill {
  stroke: var(--mar-yellow);
  stroke-width: 3.5px;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 219.91;
  stroke-dashoffset: 219.91;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Timeline ---------- */
.mar-timeline-section{
  padding: 50px 0; 
  overflow:hidden;
}

/* Sticky horizontal timeline wrapper on desktop */
@media (min-width: 992px) {
  .mar-timeline-pin-wrap {
    position: relative;
    height: 160vh; /* Reduced scroll height for faster horizontal transition */
  }
  .mar-timeline-section {
    position: sticky;
    top: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
}
.mar-timeline-head{text-align:center;margin-bottom:20px;}
.mar-timeline-tag {
    display: block;
    width: fit-content;
    margin: 0 auto 18px;
    background: #FEF9C3;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #826800;
    font-weight: 700;
}
@media (min-width: 992px) {
  .mar-timeline-tag {
    display:inline-block;
    margin-left: 13%;
    margin-right: 0;
  }
}
.mar-timeline-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}
.mar-timeline-track-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}
.mar-timeline-track-wrap::-webkit-scrollbar{display:none;}
.mar-timeline-track-wrap.mar-dragging{cursor:grabbing;}
.mar-timeline-track{
  display:flex;
  align-items:stretch;
  gap:0;
  min-width:1300px;
  position:relative;
  padding-top:10px;
}
@media (min-width: 992px) {
  .mar-timeline-track {
    padding-left: 13%;
    padding-right: 8%;
  }
}
.mar-timeline-step{
  flex:1;
  min-width:380px;
  position:relative;
  padding:0 18px;
  display:flex;
  flex-direction:column;
}
.mar-timeline-dot-row{
  display:flex;align-items:center;margin-bottom:50px;position:relative;
}
.mar-timeline-badge {
    width: 99px;
    height: 66px;
    border-radius: 31px;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    border: 1px solid #666666;
    z-index: 2;
    flex-shrink: 0;
    position: relative;
}
.mar-timeline-badge:after {
    content: "";
    width: 2px;
    height: 51px;
    background: #000;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.mar-timeline-line {
    flex: 1;
    height: 0;
    border-top: 2px dotted #000;
    margin-right: -36px;
    position: relative;
    z-index: 1;
}
.mar-timeline-card{
  position:relative;
  background:var(--mar-yellow);
  border-radius:var(--mar-radius-md);
  padding:50px;
  flex:1;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.05);
}
.mar-timeline-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:inherit;
  background:linear-gradient(180deg, #000000 0%, #666666 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.mar-timeline-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}
.mar-timeline-card p {
    font-size: 16px;
    color: #000;
}

/* ---------- Blog ---------- */
.mar-blog{padding:var(--mar-section-space) 0;}
.mar-blog-head{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  margin-bottom:50px;
  gap:20px;
}
.mar-blog-head-spacer{display:block;}
.mar-blog-head-text{text-align:center;}
.mar-blog-head-text .mar-eyebrow{display:flex;justify-content:center;}
.mar-blog-title{text-align:center;}
.mar-blog-nav{
  display:flex;gap:10px;justify-self:end;
}
.mar-blog-nav button {
    border: 0;
    padding: 10px;
    height: 62px;
    width: 62px;
    border-radius: 50px;
    background: #FABB1B;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--mar-transition);
}
.mar-blog-nav button:hover{transform:scale(1.08);}
.mar-blog-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.mar-blog-img-wrap{
  border-radius: 0; 
  position:relative;
  height:280px;
}

.mar-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.mar-blog-date {
    position: absolute;
    bottom: -20px;
    left: 16px;
    background: var(--mar-yellow);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    z-index: 2;
}
.mar-blog-body{padding:20px 4px 0;}
.mar-blog-body h4{font-size:19px;margin-bottom:16px;}
.mar-blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 90px;
}
.mar-blog-author img{
  width:34px!important;
  height:34px;
  border-radius:50%;
  object-fit:cover;
}
.mar-blog-author span{font-weight:600;font-size:14px;color:var(--mar-heading);}
.mar-blog-author-line{flex:1;height:2px;background:var(--mar-yellow);}
/* ---------- CTA ---------- */
.mar-cta{
  background:var(--mar-yellow);
  padding:80px 0;
  text-align:center;
}
.mar-cta-title{max-width:920px;margin:0 auto 18px;}
.mar-cta-sub{font-weight:700;font-size:20px;color:#000;margin-bottom:14px;}
.mar-cta-desc {
    max-width: 764px;
    margin: 0 auto 24px;
    color: #4a3d10;
}
.mar-cta-list{
  text-align:left;
  max-width:680px;
  margin:0 auto 34px;
  display:inline-block;
}
.mar-cta-list li{
  position:relative;
  padding-left:24px;
  margin-bottom:8px;
  color:#000;
  font-size:16px;
}
.mar-cta-list li::before{
  content:'';
  position:absolute;left:0;top:9px;
  width:7px;height:7px;background:var(--mar-black);border-radius:50%;
}
.mar-cta .mar-btn-dark{margin:0 auto;}

/* ---------- Footer ---------- */
.mar-footer{
  background:#111827;
  color:#fff;
  padding:70px 0 0;
}
.mar-footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:0px solid rgba(255,255,255,.08);
}
.mar-footer-logo img{height:38px;margin-bottom:16px;}
.mar-footer-about p{font-size:16px;line-height:1.7;max-width:475px;color:#fff;}
.mar-footer h5{color:#fff;font-size:17px;margin-bottom:20px;display:flex;align-items:center;gap:8px;}
.mar-footer h5 i{color:var(--mar-yellow);font-size:15px;}
.mar-footer-links li{margin-bottom:12px;}
.mar-footer-links a{
  display:flex;align-items:center;gap:8px;font-size:16px;color:#fff;
  transition:var(--mar-transition);
}
.mar-footer-links a i{color:var(--mar-yellow);font-size:13px;}
.mar-footer-links a:hover{color:var(--mar-yellow);}
.mar-footer-contact li{
  display:flex;align-items:flex-start;gap:14px;
  margin-bottom:16px;font-size:16px;
  color:#fff;
}
.mar-footer-contact li i{color:var(--mar-yellow);margin-top:2px;}
.mar-footer-contact a{color:#fff;transition:var(--mar-transition);}
.mar-footer-contact a:hover{color:var(--mar-yellow);}

.mar-footer-social{
  display:flex;
  gap:12px;
  margin-top:22px;
}
.mar-footer-social a{
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:var(--mar-transition);
  color:#FABB1B;
  font-size:16px;
}
.mar-footer-social a:hover{background:#FABB1B;color:#111827;}

.mar-footer-copyright{
  background:#18212F; 
}
.mar-footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  font-size:13.5px;
  flex-wrap:wrap;
  gap:10px;
}
.mar-footer-bottom{color:#fff;}
.mar-footer-bottom a{color:#fff;}
.container.mar-footer-bottom span a {
    color: #fabb1b;
    text-decoration: underline;
}
.mar-footer-copyright-name{
  color:var(--mar-yellow);
  font-weight:600;
}
.mar-footer-copyright-name:hover{text-decoration:underline;}
.mar-footer-bottom-links{display:flex;gap:20px;}

/* ---------- Video Popup (Magnific) tweaks ---------- */
.mar-video-popup {
  max-width: 900px;
  margin: 40px auto;
  position: relative;
}
.mar-video-popup video{width:100%;border-radius:12px;}
.mar-video-popup .mfp-close {
  color: #ffffff !important;
  font-size: 38px;
  opacity: 0.8;
  top: -45px;
  right: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: var(--mar-transition);
}
.mar-video-popup .mfp-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* ---------- Custom Scrollbar Tweaks ---------- */
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #888888 !important;
  opacity: 0.7 !important;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #555555 !important;
  opacity: 1 !important;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.mCS_no_scrollbar .mCSB_scrollTools {
  display: none !important;
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--mar-navy);
  outline-offset:3px;
}
.mar-trust-stars-row {
    color: #F9CF2C;
    font-size: 26px;
    letter-spacing: 3px;
}

 
@media(min-width:768px){.mar-our-product-bg {
    background: url(../images/product-bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 150px 0 0 0;
    margin-top: -100px;
    background-attachment: scroll;
}}

.mar-our-product-bg > section, .mar-timeline-pin-wrap {
    /* background: #ffffff4f; */
    backdrop-filter: blur(1px);
} 
.mar-our-product-bg > section:first-child {
    padding-top: 180px;
    margin-top: -100px;
}
@media (min-width: 1360px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1217px;
}
.mar-hero-arrows { 
    width: 1400px; 
}
}
@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
    .mar-hero-arrows { 
    width: 1700px; 
}
}

ul.mar-footer-links li a img {
    width: 12px;margin-right: 10px;
}


a.text-underline {
    text-decoration: underline;
}
section#contact a.mar-btn.mar-btn-dark:hover {
    color: #fff;
}
.mar-timeline-badge:after {
    content: "";
    width: 1px;
    height: 51px;
    background: #000;
    position: absolute;
    bottom: -50px;
}

/* ---------- Floating Cards and Badges animations ---------- */
.mar-float-mar-inner {
  display: flex;
  align-items: center;
  background: var(--mar-white);
  border-radius: 14px;
  box-shadow: var(--mar-shadow-card);
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--mar-heading);
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.mar-float-mar-inner:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.mar-floating-badge-wrap {
  position: absolute;
  top: 25%;
  right: -4%;
  z-index: 10;
}
.mar-floating-badge {
  background: var(--mar-white);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--mar-shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(250, 187, 27, 0.25);
  animation: badgeFloat 4.5s ease-in-out infinite;
}
.mar-floating-badge .mar-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--mar-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mar-black);
  font-size: 18px;
  flex-shrink: 0;
}
.mar-floating-badge .mar-badge-text h6 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--mar-heading);
  white-space: nowrap;
}
.mar-floating-badge .mar-badge-text span {
  font-size: 11px;
  color: var(--mar-text-gray);
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsiveness for floating badge */
@media (max-width: 991.98px) {
  .mar-floating-badge-wrap {
    right: 2%;
    top: 15%;
  }
  .mar-floating-badge {
    padding: 8px 12px;
    border-radius: 12px;
    gap: 8px;
  }
  .mar-floating-badge .mar-badge-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .mar-floating-badge .mar-badge-text h6 {
    font-size: 12px;
  }
  .mar-floating-badge .mar-badge-text span {
    font-size: 10px;
  }
}
@media (max-width: 575.98px) {
  .mar-floating-badge-wrap {
    right: 4%;
    top: 10%;
  }
}

/* ---------- Mobile/Tablet Services List Redesign ---------- */
/* ---------- Mobile/Tablet Services List Redesign ---------- */
.mar-services-mobile-cards {
  display: none !important;
  padding: 30px 15px;
}
@media (max-width: 767.98px) {
  .mar-services-mobile-cards {
    display: block !important;
  }
}
.mar-mobile-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .mar-mobile-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.mar-mob-service-card {
  background: var(--mar-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mar-mob-service-card:active {
  transform: scale(0.98);
}
.mar-mob-service-card:hover .mar-mob-card-mar-icon-box {
  transform: rotate(12deg);
}
.mar-mob-card-mar-icon-box {
  width: 60px;
  height: 60px;
  background: #FDB515;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 8px 20px rgba(253, 181, 21, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mar-mob-card-mar-icon-box svg {
  width: 26px;
  height: 26px;
}
.mar-mob-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mar-mob-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mar-heading);
  margin: 0;
}
.mar-mob-card-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Media queries to control the step-by-step card sizes dynamically on desktop viewports */
@media (min-width: 1200px) {
  .mar-timeline-step {
    flex: 0 0 26.36vw !important;
    width: 26.36vw !important;
    min-width: 26.36vw !important;
  }
}

/* ---------- Added Custom Styling ---------- */
.mar-cta-badge {
    background-color: #FFE41B;
    color: #0e1116;
    padding: 0px 8px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 900;
    margin: 0;
}

.mar-offcanvas-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mar-offcanvas-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--mar-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.mar-offcanvas-socials a:hover {
  background: var(--mar-yellow);
  color: var(--mar-black);
  transform: translateY(-3px);
}

.mar-footer-offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mar-office-item h6 {
  color: var(--mar-yellow);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mar-office-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mar-office-item p i {
  color: var(--mar-yellow);
  margin-top: 3px;
  font-size: 12px;
  width: 14px;
  text-align: center;
}
.mar-office-item p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mar-office-item p a:hover {
  color: var(--mar-yellow);
}
.mar-office-meta {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

/* ---------- Mobile Sticky Bottom Nav Bar (App Dock Style) ---------- */
.mar-mobile-bottom-nav {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  height: 68px;
  background: #18191be0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 0 12px;
}

.mar-cta-badge {
    background-color: #FFE41B;
    color: #0e1116;
    padding: 0px 8px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 700;
    margin: 0;
}

.mar-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6E737A; /* Inactive grey icon outline */
  text-decoration: none;
  transition: all 0.25s ease;
  flex: 1;
  height: 100%;
  position: relative;
}

.mar-nav-tab svg,
.mar-nav-tab i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mar-nav-tab svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}

.mar-nav-tab .mar-nav-tab-dot {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.mar-nav-tab:hover {
  color: #A0A5AD;
}

.mar-nav-tab.active,
.mar-nav-tab.mar-active {
  color: #FABB1B; /* Active yellow icon */
}

.mar-nav-tab.active .mar-nav-tab-dot,
.mar-nav-tab.mar-active .mar-nav-tab-dot {
  background-color: #FABB1B;
  box-shadow: 0 0 6px #FABB1B;
}

.mar-nav-tab.active svg,
.mar-nav-tab.mar-active svg,
.mar-nav-tab.active i,
.mar-nav-tab.mar-active i {
  transform: scale(1.05);
}

.mar-nav-center-btn {
  flex: 0 0 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mar-center-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FABB1B;
  color: #18191B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(250, 187, 27, 0.6);
  transition: all 0.25s ease;
  margin: 0 auto;
}

.mar-center-circle svg,
.mar-center-circle i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mar-center-circle svg {
  fill: none;
  stroke: #18191B !important;
  stroke-width: 2.5px;
}

.mar-center-circle i {
  font-size: 20px;
  color: #18191B !important;
}

.mar-center-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(250, 187, 27, 0.85);
}

/* Responsive updates for mobile viewports */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 96px !important; /* Larger bottom padding due to floating bar height + offset */
  }
  .mar-footer {
    display: none !important;
  }
}

/* =========================================================
   MERGED FROM BOOKING-PICKER.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — BOOKING DATE & TIME PICKER STYLE
   ========================================================= */

:root {
  --bcal-gold: #FDB913;
  --bcal-gold-hover: #FFF5DB;
  --bcal-gold-light: #FFF8E8;
  --bcal-border: #ECECEC;
  --bcal-white: #ffffff;
  --bcal-text-dark: #111827;
  --bcal-text-muted: #6b7280;
  --bcal-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  --bcal-radius-lg: 24px;
  --bcal-radius-md: 12px;
  --bcal-radius-full: 999px;
  --bcal-transition-fast: 150ms ease;
  --bcal-transition-normal: 200ms ease;
  --bcal-transition-popup: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modal Overlay Container */
.mar-booking-calendar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bcal-transition-popup);
}

.mar-booking-calendar-overlay.mar-booking-calendar-active {
  opacity: 1;
  pointer-events: all;
}

/* Popup Main Panel */
.mar-booking-calendar-popup {
  width: 950px;
  background: var(--bcal-white);
  border-radius: var(--bcal-radius-lg);
  box-shadow: var(--bcal-shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform var(--bcal-transition-popup), opacity var(--bcal-transition-popup);
  max-height: 95vh;
  overflow-y: auto;
}

.mar-booking-calendar-overlay.mar-booking-calendar-active .mar-booking-calendar-popup {
  transform: scale(1);
  opacity: 1;
}

/* =========================================================
   TOP BAR (Tabs for Pickup & Return)
   ========================================================= */
.mar-booking-calendar-topbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--bcal-border);
  padding-bottom: 20px;
}

.mar-booking-calendar-tab-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mar-booking-calendar-tab-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bcal-text-muted);
  transition: color var(--bcal-transition-normal);
}

.mar-booking-calendar-tab-wrapper:has(.mar-booking-calendar-tab-active) .mar-booking-calendar-tab-label {
  color: var(--bcal-gold);
}

.mar-booking-calendar-tab {
  background: #f9fafb;
  border: 1px solid var(--bcal-border);
  border-radius: var(--bcal-radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: border-color var(--bcal-transition-normal), background var(--bcal-transition-normal);
}

.mar-booking-calendar-tab:hover {
  background: var(--bcal-gold-light);
  border-color: var(--bcal-gold);
}

.mar-booking-calendar-tab.mar-booking-calendar-tab-active {
  background: var(--bcal-white);
  border-color: var(--bcal-gold);
  box-shadow: 0 4px 12px rgba(253, 185, 19, 0.08);
}

.mar-booking-calendar-tab-fields {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.mar-booking-calendar-tab-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bcal-text-dark);
}

.mar-booking-calendar-tab-field i {
  color: var(--bcal-text-muted);
  font-size: 15px;
}

.mar-booking-calendar-tab.mar-booking-calendar-tab-active .mar-booking-calendar-tab-field i {
  color: var(--bcal-gold);
}

/* =========================================================
   COLUMNS GRID
   ========================================================= */
.mar-booking-calendar-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

/* =========================================================
   LEFT COLUMN: CALENDAR
   ========================================================= */
.mar-booking-calendar-left {
  position: relative;
}

/* Flatpickr Custom Styling Scope */
.mar-booking-calendar-left .flatpickr-calendar,
.mar-booking-calendar-left .flatpickr-innerContainer,
.mar-booking-calendar-left .flatpickr-rContainer,
.mar-booking-calendar-left .flatpickr-days,
.mar-booking-calendar-left .dayContainer {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

.mar-booking-calendar-left .flatpickr-months {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 16px;
}

.mar-booking-calendar-left .flatpickr-months .flatpickr-month {
  flex: 1 !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  color: var(--bcal-text-dark) !important;
  fill: var(--bcal-text-dark) !important;
}

.mar-booking-calendar-left .flatpickr-current-month {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--bcal-text-dark) !important;
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.mar-booking-calendar-left .flatpickr-current-month span.cur-month {
  font-weight: 700 !important;
}

.mar-booking-calendar-left .flatpickr-current-month input.cur-year {
  font-weight: 700 !important;
  pointer-events: none;
}

.mar-booking-calendar-left .flatpickr-prev-month,
.mar-booking-calendar-left .flatpickr-next-month {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bcal-border) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: var(--bcal-text-dark) !important;
  transition: border-color var(--bcal-transition-normal), background var(--bcal-transition-normal) !important;
}

.mar-booking-calendar-left .flatpickr-prev-month:hover,
.mar-booking-calendar-left .flatpickr-next-month:hover {
  background: var(--bcal-gold-hover) !important;
  border-color: var(--bcal-gold) !important;
}

.mar-booking-calendar-left .flatpickr-prev-month svg,
.mar-booking-calendar-left .flatpickr-next-month svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

.flatpickr-wrapper {
    width: 100%;
}

/* Calendar Weekdays */
.mar-booking-calendar-left .flatpickr-weekdays {
  margin-bottom: 8px;
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: space-between !important;
}

.mar-booking-calendar-left .flatpickr-weekday {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--bcal-text-muted) !important;
  flex: 1 !important;
  text-align: center !important;
  max-width: none !important;
}

/* Days Container */
.mar-booking-calendar-left .flatpickr-days {
  width: 100% !important;
}

.mar-booking-calendar-left .dayContainer {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  justify-items: center !important;
}

/* Individual Days */
.mar-booking-calendar-left .flatpickr-day {
    width: 100% !important;
    max-width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    line-height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid transparent !important;
    margin: 4px auto !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--bcal-text-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    cursor: pointer !important;
    position: relative !important;
    left: 0 !important;
    float: none !important;
    transition: background var(--bcal-transition-fast), border-color var(--bcal-transition-fast), color var(--bcal-transition-fast) !important;
}

/* Disabled and Prev Month Dates */
.mar-booking-calendar-left .flatpickr-day.flatpickr-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

.mar-booking-calendar-left .flatpickr-day.prevMonthDay,
.mar-booking-calendar-left .flatpickr-day.nextMonthDay {
  opacity: 0.25 !important;
  color: var(--bcal-text-muted) !important;
}

/* Hover Day */
.mar-booking-calendar-left .flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
  background: var(--bcal-gold-hover) !important;
  color: var(--bcal-text-dark) !important;
}

/* Today Day */
.mar-booking-calendar-left .flatpickr-day.today {
  border-color: var(--bcal-gold) !important;
}

/* Selected Day */
.mar-booking-calendar-left .flatpickr-day.selected,
.mar-booking-calendar-left .flatpickr-day.selected:hover {
  background: var(--bcal-gold) !important;
  border-color: var(--bcal-gold) !important;
  color: var(--bcal-white) !important;
}

/* =========================================================
   RIGHT COLUMN: POPULAR TIMES
   ========================================================= */
.mar-booking-calendar-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--bcal-border);
  padding-left: 32px;
}

.mar-booking-calendar-right-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bcal-text-dark);
  margin: 0 0 4px;
}

.mar-booking-calendar-timelist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mar-booking-calendar-timeitem {
  height: 44px;
  border-radius: var(--bcal-radius-md);
  border: 1px solid var(--bcal-border);
  background: var(--bcal-white);
  color: var(--bcal-text-dark);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--bcal-transition-fast), border-color var(--bcal-transition-fast), color var(--bcal-transition-fast);
}

.mar-booking-calendar-timeitem:hover {
  background: var(--bcal-gold-light);
  border-color: var(--bcal-gold);
}

.mar-booking-calendar-timeitem.mar-booking-calendar-time-active {
  background: var(--bcal-gold);
  border-color: var(--bcal-gold);
  color: var(--bcal-white);
}

/* =========================================================
   BOTTOM PANEL
   ========================================================= */
.mar-booking-calendar-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid var(--bcal-border);
  padding-top: 20px;
}

.mar-booking-calendar-btn {
  height: 52px;
  border-radius: var(--bcal-radius-full);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--bcal-transition-normal), background var(--bcal-transition-normal), border-color var(--bcal-transition-normal);
  padding: 0 32px;
  border: 1px solid transparent;
}

.mar-booking-calendar-btn:hover {
  transform: scale(1.03);
}

.mar-booking-calendar-btn-cancel {
  background: var(--bcal-white);
  border-color: var(--bcal-border);
  color: var(--bcal-text-muted);
}

.mar-booking-calendar-btn-cancel:hover {
  background: #f9fafb;
  border-color: var(--bcal-text-muted);
}

.mar-booking-calendar-btn-apply {
  background: var(--bcal-gold);
  color: var(--bcal-white);
}

.mar-booking-calendar-btn-apply:hover {
  background: #e2a60b;
}

.mar-booking-calendar-btn i {
  font-size: 14px;
  transition: transform var(--bcal-transition-normal);
}

.mar-booking-calendar-btn-apply:hover i {
  transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */








/* =========================================================
   MERGED FROM ABOUT.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — ABOUT US PAGE STYLESHEET
   Prefix: about-
   Theme: Premium Corporate White-Theme
   ========================================================= */

.mar-about-page {
  background-color: #FFFFFF !important;
  color: #151A26 !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}

/* Page spacing top for sticky header */
.mar-about-page main {
  padding-top: 0; /* Hero starts at top: 0, overlayed by transparent header */
}

/* ---------- Header Override for transparent overlay on dark hero ---------- */
.mar-about-page .mar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 1000;
}

 

.mar-about-page .mar-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--mar-transition);
}

.mar-about-page .mar-nav a:hover,
.mar-about-page .mar-nav a.mar-active {
  color: #FFC107 !important;
}

.mar-about-page .mar-nav-toggle span {
  background-color: #ffffff !important;
}



/* ---------- COMMON UTILITY CLASSES ---------- */
.mar-about-section {
  padding: 100px 0;
  position: relative;
}

.mar-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 18px;
}

.mar-about-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-about-h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #151A26;
  margin-bottom: 24px;
}

.mar-about-paragraph {
  font-size: 16.5px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---------- 1. ABOUT HERO BANNER ---------- */
.mar-about-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: 
    linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
    url('../images/about-us-page/about-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 100px 0;
  color: #ffffff !important;
}

.mar-about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mar-about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 20px;
}

.mar-about-hero-eyebrow::before,
.mar-about-hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-about-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.mar-about-hero-title span.mar-highlight {
  color: #FFC107;
}

.mar-about-hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

/* ---------- 2. ABOUT CONTENT SECTION ---------- */
.mar-about-story {
  background-color: #FFFFFF;
  padding: 100px 0;
}

.mar-about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.mar-about-story-content {
  display: flex;
  flex-direction: column;
}

.mar-about-story-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #151A26;
  margin-bottom: 24px;
}

.mar-about-story-text p {
  font-size: 16.5px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Right Column (Circular Image + Overlapping Badges) */
.mar-about-story-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mar-about-story-img-container {
  width: 100%;
  max-width: 521px;
  position: relative;
}

.mar-about-story-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #FFFFFF;
  box-shadow: 0 20px 45px rgba(21, 26, 38, 0.12);
}

.mar-about-story-badges {
  position: absolute;
  right: -30px;
  bottom: -50px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding: 0;
  gap: 0;
  background: #fff;
  box-shadow: 0 0 50px #00000022;
  border-radius: 20px;
  overflow: hidden;
}

.mar-about-badge-card {
  background: #FFFFFF;
  padding: 14px 18px;
  border: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
}

.mar-about-story-badges .mar-about-badge-card:first-child {
  border-bottom: 1px solid #00000029;
  border-radius: 0;
}

 

.mar-about-badge-card .mar-icon-box {
  width: 40px;
  height: 40px;
  background: #FFF4CF;
  color: #FFC107;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.mar-about-badge-card h4 {
  font-size: 30px;
  font-weight: 800;
  color: #151A26;
  margin: 0;
  line-height: 1.1;
}

.mar-about-badge-card p {
  font-size: 14px;
  color: #666666;
  margin: 2px 0 0 0;
  font-weight: 600;
}

/* ---------- 3. COUNTERS SUB-SECTION ---------- */
.mar-about-counters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #F0F0F0;
}

.mar-about-counter-item {
  display: flex;
  flex-direction: column;
}

.mar-about-counter-number {
  font-size: 48px;
  font-weight: 900;
  color: #FFC107;
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.mar-about-counter-number span {
  color: #FFC107;
}

.mar-about-counter-label {
  font-size: 16px;
  font-weight: 700;
  color: #151A26;
  margin-bottom: 8px;
  line-height: 1.25;
}

.mar-about-counter-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* ---------- 4. OUR MISSION ---------- */
.mar-about-mission {
  background-color: #EBEAEA;
  padding: 100px 0;
}

.mar-about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mar-about-mission-img-wrap {
  position: relative;
}

.mar-about-mission-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ---------- 5. OUR VISION ---------- */
.mar-about-vision {
  background-color: #090D17;
  color: #FFFFFF !important;
  padding: 120px 0;
  text-align: center;
}

.mar-about-vision-content {
  max-width: 860px;
  margin: 0 auto;
}

.mar-about-vision-quote {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 24px auto 30px auto;
  letter-spacing: -0.5px;
  max-width: 946px;
}

.mar-about-vision-underline {
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 0 auto;
  border-radius: 2px;
}

/* ---------- 6. CORE EXPERTISE & VALUES ---------- */
.mar-about-values {
  background-color: #F8FAFC;
  padding: 100px 0;
}

.mar-about-values-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.mar-about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mar-about-value-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 10px 35px rgba(21, 26, 38, 0.03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mar-about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(21, 26, 38, 0.08);
  border-color: #FFC107;
}

.mar-about-value-mar-icon-box {
  width: 56px;
  height: 56px;
  background: #FFF4CF;
  color: #FFC107;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.mar-about-value-card:hover .mar-about-value-mar-icon-box {
  background: #FFC107;
  color: #111111;
  transform: rotate(12deg);
}

.mar-about-value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #151A26;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mar-about-value-card p {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* ---------- 7. CTA SECTION ---------- */
.mar-about-cta-section {
  position: relative;
  padding: 120px 0;
  background-color: #090D17;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark subtle overlay on the background image */
.mar-about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.9);  
  z-index: 1;
}

.mar-about-cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.mar-about-cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.mar-about-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.mar-about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Ensure buttons follow homepage design */
.mar-about-cta-actions .mar-btn-dark {
  background: #FFFFFF !important;
  color: #090D17 !important;
  border: 2px solid #FFFFFF !important;
  transition: var(--mar-transition);
}

.mar-about-cta-actions .mar-btn-dark .mar-btn-arrow {
  background: #FFC107 !important;
  color: #111111 !important;
}

.mar-about-cta-actions .mar-btn-dark .mar-btn-arrow i {
  color: #111111 !important;
}

.mar-about-cta-actions .mar-btn-dark:hover {
  background: transparent !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  box-shadow: none !important;
}

.mar-about-cta-actions .mar-btn-dark:hover .mar-btn-arrow {
  background: #FFFFFF !important;
}

.mar-about-cta-actions .mar-btn-dark:hover .mar-btn-arrow i {
  color: #090D17 !important;
}

/* =========================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================= */









/* ---------- Mobile Bottom Nav Bar Theme Overrides ---------- */
.mar-about-page .mar-nav-tab:hover,
.mar-about-page .mar-nav-tab.active {
  color: #fabb1b !important;
}

.mar-about-page .mar-center-circle {
  background: #fabb1b !important;
  box-shadow: 0 6px 16px rgba(255, 45, 85, 0.35) !important;
}

.mar-about-page .mar-center-circle i {
  color: #111111 !important;
}

.mar-about-page .mar-center-circle:hover {
  box-shadow: 0 8px 20px rgba(255, 45, 85, 0.5) !important;
  transform: scale(1.08) translateY(-2px);
}




/* =========================================================
   MERGED FROM SERVICES.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — SERVICES PAGE STYLESHEET
   Prefix: services-
   Theme: Premium Corporate White-Theme (Consistent with About/Home)
   ========================================================= */

.mar-services-page {
  background-color: #FFFFFF !important;
  color: #151A26 !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}

/* Page spacing top for sticky header */
.mar-services-page main {
  padding-top: 0; /* Hero starts at top: 0, overlayed by transparent header */
}

/* ---------- Header Override for transparent overlay on dark hero ---------- */
.mar-services-page .mar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 1000;
}

 

.mar-services-page .mar-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--mar-transition);
}

.mar-services-page .mar-nav a:hover,
.mar-services-page .mar-nav a.mar-active {
  color: #FFC107 !important;
}

.mar-services-page .mar-nav-toggle span {
  background-color: #ffffff !important;
}



/* ---------- COMMON UTILITY CLASSES ---------- */
.mar-services-section {
  padding: 100px 0;
  position: relative;
}

.mar-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 18px;
}

.mar-services-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-services-eyebrow.mar-centered::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-services-h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #151A26;
  margin-bottom: 24px;
}

.mar-services-paragraph {
  font-size: 16.5px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---------- 1. SERVICES HERO BANNER (Identical to About Hero) ---------- */
.mar-services-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: 
    linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
    url('../images/about-us-page/about-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 100px 0;
  color: #ffffff !important;
}

.mar-services-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mar-services-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 20px;
}

.mar-services-hero-eyebrow::before,
.mar-services-hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-services-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.mar-services-hero-title span.mar-highlight {
  color: #FFC107;
}

.mar-services-hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

/* ---------- 2. SERVICES INTRO SECTION ---------- */
.mar-services-intro {
  background-color: #FFFFFF;
  padding: 100px 0 40px 0;
  text-align: center;
}

.mar-services-intro-content {
  max-width: 750px;
  margin: 0 auto;
}

.mar-services-intro .mar-services-h2 {
  margin-bottom: 0;
}

/* ---------- 3. SERVICES GRID ---------- */
.mar-services-grid-section {
  background-color: #FFFFFF;
  padding: 0 0 100px 0;
}

.mar-services-grid-section .mar-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px;
}

.mar-services-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 4px 16px #00000022;
}

.mar-services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(21, 26, 38, 0.08);
  border-color: #FFC107;
}

.mar-services-card-icon {
  width: 56px;
  height: 56px;
  background: #FFF4CF;
  color: #FFC107;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.mar-services-card:hover .mar-services-card-icon {
  background: #FFC107;
  color: #1E293B;
  transform: rotate(12deg);
}

.mar-services-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #151A26;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mar-services-card-desc {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Style for Even Services Cards (nth-child(even)) */
.mar-services-card:nth-child(even) {
  background: #1E293B;
  border-color: #334155;
  box-shadow: 0 10px 35px rgba(30, 41, 59, 0.1);
}

.mar-services-card:nth-child(even) .mar-services-card-title {
  color: #FFFFFF;
}

.mar-services-card:nth-child(even) .mar-services-card-desc {
  color: #CBD5E1;
}

.mar-services-card:nth-child(even) .mar-services-card-icon {
  background: rgba(255, 193, 7, 0.15);
  color: #FFC107;
}

.mar-services-card:nth-child(even):hover {
  border-color: #FFC107;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.25);
}

.mar-services-card:nth-child(even):hover .mar-services-card-icon {
  background: #FFC107;
  color: #1E293B;
  transform: rotate(12deg);
}

/* ---------- 4. COUNTER SECTION (Styled like About) ---------- */
.mar-services-counters {
  background-color: #111827;
  padding: 80px 0;
  border-top: 1px solid #1F2937;
  border-bottom: 1px solid #1F2937;
}

.mar-services-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Reuses .mar-about-counter-item styles from about.css but ensures spacing and grid */
.mar-services-counters .mar-about-counter-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.mar-services-counters .mar-about-counter-label {
  color: #FFFFFF !important;
}

/* ---------- 5. EXPERTISE / STRATEGY SECTION ---------- */
.mar-services-expertise {
  background-color: #F8FAFC;
  padding: 100px 0;
}

.mar-services-expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mar-services-expertise-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mar-services-expertise-img-container {
  width: 100%;
  max-width: 550px;
  position: relative;
}

.mar-services-expertise-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid #FFFFFF;
  box-shadow: 0 20px 45px rgba(21, 26, 38, 0.08);
}

.mar-services-expertise-content {
  display: flex;
  flex-direction: column;
}

.mar-services-checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mar-services-checklist li {
  font-size: 16px;
  font-weight: 600;
  color: #151A26;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mar-services-checklist li .checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFF4CF;
  color: #FFC107;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- 6. CTA SECTION (Identical to About CTA) ---------- */
.mar-services-cta-section {
  position: relative;
  padding: 120px 0;
  background-color: #090D17;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark subtle overlay on the background image */
.mar-services-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.9);  
  z-index: 1;
}

.mar-services-cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.mar-services-cta-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.mar-services-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.mar-services-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Ensure buttons follow homepage/about design */
.mar-services-cta-actions .mar-btn-dark {
  background: #FFFFFF !important;
  color: #090D17 !important;
  border: 2px solid #FFFFFF !important;
  transition: var(--mar-transition);
}

.mar-services-cta-actions .mar-btn-dark .mar-btn-arrow {
  background: #FFC107 !important;
  color: #111111 !important;
}

.mar-services-cta-actions .mar-btn-dark .mar-btn-arrow i {
  color: #111111 !important;
}

.mar-services-cta-actions .mar-btn-dark:hover {
  background: transparent !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  box-shadow: none !important;
}

.mar-services-cta-actions .mar-btn-dark:hover .mar-btn-arrow {
  background: #FFFFFF !important;
}

.mar-services-cta-actions .mar-btn-dark:hover .mar-btn-arrow i {
  color: #090D17 !important;
}

/* =========================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================= */









/* ---------- Mobile Bottom Nav Bar Theme Overrides ---------- */
.mar-services-page .mar-nav-tab:hover,
.mar-services-page .mar-nav-tab.active {
  color: #fabb1b !important;
}

.mar-services-page .mar-center-circle {
  background: #fabb1b !important;
  box-shadow: 0 6px 16px rgba(255, 45, 85, 0.35) !important;
}

.mar-services-page .mar-center-circle i {
  color: #111111 !important;
}

.mar-services-page .mar-center-circle:hover {
  box-shadow: 0 8px 20px rgba(255, 45, 85, 0.5) !important;
  transform: scale(1.08) translateY(-2px);
}




/* =========================================================
   MERGED FROM PRODUCT.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — PRODUCT PORTFOLIO PAGE STYLESHEET
   Prefix: product-
   Theme: Premium SaaS/Product Showcase (Consistent with branding)
   ========================================================= */

.mar-product-page {
  background-color: #FFFFFF !important;
  color: #151A26 !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}

/* Page spacing top for sticky header */
.mar-product-page main {
  padding-top: 0;
}

/* Header Override for transparent overlay on dark hero */
.mar-product-page .mar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 1000;
}

 
.mar-product-page .mar-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--mar-transition);
}

.mar-product-page .mar-nav a:hover,
.mar-product-page .mar-nav a.mar-active {
  color: #FFC107 !important;
}

.mar-product-page .mar-nav-toggle span {
  background-color: #ffffff !important;
}



/* Mobile Bottom Nav Bar Theme Overrides */
.mar-product-page .mar-nav-tab:hover,
.mar-product-page .mar-nav-tab.active {
  color: #fabb1b !important;
}

.mar-product-page .mar-center-circle {
  background: #fabb1b !important;
  box-shadow: 0 6px 16px rgba(255, 45, 85, 0.35) !important;
}

.mar-product-page .mar-center-circle i {
  color: #111111 !important;
}

.mar-product-page .mar-center-circle:hover {
  box-shadow: 0 8px 20px rgba(255, 45, 85, 0.5) !important;
  transform: scale(1.08) translateY(-2px);
}

/* ---------- PRODUCT HERO BANNER ---------- */
/* Uses mar-about-hero styles */
.mar-product-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: 
    linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
    url('../images/about-us-page/about-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 100px 0;
  color: #ffffff !important;
}

.mar-product-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mar-product-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 20px;
}

.mar-product-hero-eyebrow::before,
.mar-product-hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-product-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.mar-product-hero-title span.mar-highlight {
  color: #FFC107;
}

.mar-product-hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.mar-product-hero-actions {
  display: flex;
  gap: 20px;
}

.mar-product-hero-actions .mar-btn-dark {
  background: transparent !important;
  color: #FABB1B !important;
  border: 1px solid #fabb1b;
}

.mar-product-hero-actions .mar-btn-dark .mar-btn-arrow {
  background: #FFC107 !important;
  color: #111111 !important;
}

.mar-product-hero-actions .mar-btn-dark .mar-btn-arrow i {
  color: #111111 !important;
}

.mar-product-hero-actions .mar-btn-dark:hover {
  background: #FABB1B !important;
  color: #000000 !important;
  border-color: #FABB1B !important;
  box-shadow: none !important;
  transform: none;
}

.mar-product-hero-actions .mar-btn-dark:hover .mar-btn-arrow {
  background: #000000 !important;
}

.mar-product-hero-actions .mar-btn-dark:hover .mar-btn-arrow i {
  color: #FABB1B !important;
}


/* ---------- PRODUCT INTRO SECTION ---------- */
.mar-product-intro {
  background-color: #FFFFFF;
  padding: 50px 0 60px 0;
  text-align: center;
}

.mar-product-intro-content {
  max-width: 750px;
  margin: 0 auto;
}

.mar-product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFC107 !important;
  margin-bottom: 18px;
}

.mar-product-eyebrow::before,
.mar-product-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-product-sticky-bar {
  display: none;
}

.mar-product-sticky-bar .mar-portfolio-filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mar-product-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: start;
}

.mar-product-h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #151A26;
  margin-bottom: 0;
}


/* ---------- PRODUCT SHOWCASE ---------- */
.mar-product-section {
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.mar-product-section.bg-slate {
  background-color: #F8FAFC;
}

.mar-product-section.bg-white {
  background-color: #FFFFFF;
}

.mar-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image Container Styling */
.mar-product-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mar-product-image-container {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  background-color: #E6ECF0;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(21, 26, 38, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.mar-product-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(21, 26, 38, 0.08);
}

.mar-product-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Content Container Styling */
.mar-product-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge styling */
.mar-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFF4CF;
  color: #FEF9C3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 20px;
}

.mar-product-badge img,
.mar-product-badge i,
.mar-product-badge svg {
  width: 14px;
  height: 13px;
  object-fit: contain;
  flex-shrink: 0;
}

.mar-product-badge svg path {
  fill: #FABB1B;
}

.mar-product-badge i {
  color: #FABB1B;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.mar-product-badge span {
  color: #111827;
}

.mar-product-title {
  font-size: 36px;
  font-weight: 800;
  color: #151A26;
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
}

.mar-product-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #FABB1B;
  border-radius: 2px;
}

.mar-product-desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 26px;
  margin-bottom: 28px;
}

/* Feature tags styling */
.mar-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.mar-product-tag {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mar-product-tag:hover {
  transform: translateY(-1px);
}

/* Rotating Pastel Colors for tags */
.mar-tag-blue {
  background-color: #E1FFFD;
  color: #111827;
}

.mar-tag-yellow {
  background-color: #FEF9C3;
  color: #111827;
}

.mar-tag-green {
  background-color: #C9FFC2;
  color: #111827;
}

.mar-tag-purple {
  background-color: #D9E9F9;
  color: #111827;
}

/* Button style */
.mar-product-cta-btn {
  width: fit-content;
}


/* ---------- COUNTER SECTION ---------- */
.mar-product-counters {
  background-color: #111827;
  padding: 80px 0;
  border-top: 1px solid #1F2937;
  border-bottom: 1px solid #1F2937;
}

.mar-product-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mar-product-counters .mar-about-counter-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.mar-product-counters .mar-about-counter-label {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.mar-product-counters .mar-about-counter-number {
  font-size: 48px;
  font-weight: 900;
  color: #FFC107;
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}


/* ---------- RESPONSIVE DESIGN ---------- */








.bg-slate {
  background-color: #F8FAFC !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}




/* =========================================================
   MERGED FROM PORTFOLIO.CSS
   ========================================================= */

.mar-portfolio-page {
  background-color: #FFFFFF !important;
  color: #151A26 !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}

/* Page spacing top for sticky header */
.mar-portfolio-page main {
  padding-top: 0; /* Hero starts at top: 0, overlayed by transparent header */
}

/* ---------- Header Override for transparent overlay on dark hero ---------- */
.mar-portfolio-page .mar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 1000;
}

 
.mar-portfolio-page .mar-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--mar-transition);
}

.mar-portfolio-page .mar-nav a:hover,
.mar-portfolio-page .mar-nav a.mar-active {
  color: #FFC107 !important;
}

.mar-portfolio-page .mar-nav-toggle span {
  background-color: #ffffff !important;
}



/* ---------- 1. PORTFOLIO HERO BANNER ---------- */
.mar-portfolio-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-image: 
    linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
    url('../images/portfllio/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 0 100px 0;
  color: var(--mar-white) !important;
}

.mar-portfolio-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mar-portfolio-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mar-yellow) !important;
  margin-bottom: 20px;
}

.mar-portfolio-hero-eyebrow::before,
.mar-portfolio-hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--mar-yellow);
  transform: rotate(45deg);
  display: inline-block;
}

.mar-portfolio-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--mar-white);
  margin-bottom: 24px;
}

.mar-portfolio-hero-title span.mar-highlight {
  color: var(--mar-yellow);
}

.mar-portfolio-hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.mar-portfolio-hero-actions {
  display: flex;
  gap: 20px;
}

/* ---------- 2. CATEGORY FILTER TABS ---------- */
.mar-portfolio-filter-section {
  background-color: var(--mar-white);
  padding: 80px 0 40px 0;
}

.mar-portfolio-filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mar-portfolio-filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 8px 15px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  flex-wrap: nowrap;
}

.mar-portfolio-filters::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Safari/Chrome */
}

.mar-portfolio-filter-btn {
  font-size: 14px;
  font-weight: 700;
  color: #4B5563;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mar-portfolio-filter-btn:hover {
  background: #E5E7EB;
  color: var(--mar-black);
}

.mar-portfolio-filter-btn.active {
  background: var(--mar-yellow);
  color: var(--mar-black);
  border-color: var(--mar-yellow);
  box-shadow: 0 4px 12px rgba(250, 187, 27, 0.2);
}

/* ---------- 3. PORTFOLIO GRID ---------- */
.mar-portfolio-grid-section {
  background-color: var(--mar-white);
  padding: 0 0 100px 0;
}

.mar-portfolio-grid {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

/* ---------- 4. PORTFOLIO CARD ---------- */
.mar-portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--mar-white);
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: var(--mar-radius-md);
  overflow: hidden;
  box-shadow: 0px 1px 9px 5px rgb(0 0 0 / 5%);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}

.mar-portfolio-img-wrap {
  width: 100%;
  height: 240px; /* Fixed height for image area consistency */
  overflow: hidden;
  position: relative;
  background-color: #F3F4F6;
}

.mar-portfolio-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Displayed without distortion */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mar-portfolio-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.mar-portfolio-card-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

/* Dashboard category badge */
.mar-portfolio-card-badge.dashboard {
  background-color: #D9ECFF;
  color: #323232;
}

/* Apps category badge */
.mar-portfolio-card-badge.apps,
.mar-portfolio-card-badge.app {
  background-color: #FEF9C3;
  color: #4B5563;
}

/* Websites category badge */
.mar-portfolio-card-badge.websites {
  background-color: #FEDDD7;
  color: #4B5563;
}

.mar-portfolio-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--mar-heading);
  margin: 0;
  line-height: 1.3;
}

/* Hover effects */
.mar-portfolio-card:hover {
  transform: translateY(-8px); /* Card elevation */
  box-shadow: var(--mar-shadow-card);
  border-color: var(--mar-yellow);
}

.mar-portfolio-card:hover .mar-portfolio-project-img {
  transform: scale(1.04); /* Slight image zoom */
}

/* ---------- 5. LOAD MORE PROJECTS BUTTON ---------- */
.mar-portfolio-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}



/* No projects text */
.mar-portfolio-no-results {
  font-size: 18px;
  color: var(--mar-text-gray);
  font-weight: 500;
}

/* ---------- 6. STATS COUNTER SECTION (About Us Style) ---------- */
.mar-portfolio-counters {
  background-color: #111827; /* Reused counter background */
  padding: 80px 0;
  border-top: 1px solid #1F2937;
  border-bottom: 1px solid #1F2937;
}

.mar-portfolio-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mar-portfolio-counter-item {
  text-align: center;
}

.mar-portfolio-counter-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--mar-white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.mar-portfolio-counter-number span {
  color: var(--mar-yellow);
}

.mar-portfolio-counter-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9CA3AF;
  margin: 0;
}

/* ---------- 7. CTA SECTION (About Us Style) ---------- */
.mar-portfolio-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
}

.mar-portfolio-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.85); /* Overlay matching banner */
  z-index: 1;
}

.mar-portfolio-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.mar-portfolio-cta-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--mar-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.mar-portfolio-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.mar-portfolio-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}


/* ---------- 8. RESPONSIVE BREAKPOINTS ---------- */











/* =========================================================
   MERGED FROM BLOG.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — BLOG LISTING PAGE STYLESHEET
   Prefix: blog-
   Theme: Pixel-Perfect White-Theme with Dark Header & Yellow Accent
   ========================================================= */

.mar-blog-page {
  background-color: var(--mar-white) !important;
  color: var(--mar-black) !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}
/* ---------- Blog Hero / Intro Section ---------- */
.mar-blog-intro-section {
  padding: 80px 0 40px 0;
  text-align: center;
}

.mar-blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mar-yellow) !important;
  margin-bottom: 20px;
}

.mar-blog-eyebrow::before,
.mar-blog-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--mar-yellow);
  transform: rotate(45deg);
  display: inline-block;
}

.mar-blog-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--mar-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}

.mar-blog-desc {
  font-size: 16.5px;
  color: var(--mar-text-gray);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Category Filter Tabs ---------- */
.mar-blog-filters-section {
  padding-bottom: 40px;
}

.mar-blog-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mar-blog-filter-btn {
  background: var(--mar-white);
  border: 1px solid #E5E7EB;
  color: #4B5563;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--mar-radius-pill);
  cursor: pointer;
  transition: var(--mar-transition);
}

.mar-blog-filter-btn:hover {
  border-color: var(--mar-yellow);
  color: var(--mar-heading);
}

.mar-blog-filter-btn.active {
  background: var(--mar-yellow);
  border-color: var(--mar-yellow);
  color: #000000;
}

/* ---------- Featured Blog Article ---------- */
.mar-blog-featured-section {
  padding-bottom: 50px;
}

.mar-blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--mar-white);
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  transition: var(--mar-transition);
}

.mar-blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(24,33,47,0.06);
}

.mar-blog-featured-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    height: 380px;
}

.mar-blog-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mar-blog-featured-card:hover .mar-blog-featured-img-wrap img {
  transform: scale(1.03);
}

.mar-blog-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mar-blog-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mar-blog-card-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--mar-yellow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mar-blog-card-date {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

.mar-blog-featured-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--mar-heading);
  line-height: 1.3;
  margin-bottom: 16px;
}

.mar-blog-featured-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--mar-transition);
}

.mar-blog-featured-content h3 a:hover {
  color: var(--mar-yellow);
}

.mar-blog-featured-desc {
  font-size: 15px;
  color: var(--mar-text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

p.mar-blog-featured-desc {
    max-height: 80px;
    overflow: auto;
}

.mar-blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F3F4F6;
  padding-top: 20px;
}

.mar-blog-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mar-blog-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #F3F4F6;
}

.mar-blog-author-info {
  display: flex;
  flex-direction: column;
}

.mar-blog-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--mar-heading);
}

.mar-blog-author-role {
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.mar-blog-read-more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mar-yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--mar-transition);
}

.mar-blog-read-more:hover {
  color: var(--mar-heading);
}

/* ---------- Blog Card Grid ---------- */
.mar-blog-grid-section {
  padding-bottom: 60px;
}

.mar-blog-card {
  background: var(--mar-white);
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:none;
  transition: var(--mar-transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

.mar-blog-card:hover {
  transform: translateY(-4px);
}

.mar-blog-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.mar-blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mar-blog-card:hover .mar-blog-card-img-wrap img {
  transform: scale(1.03);
}

.mar-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.mar-blog-card-body h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--mar-heading);
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 50px;
}

.mar-blog-card-body h4 a {
  color: inherit;
  text-decoration: none;
  transition: var(--mar-transition);
}

.mar-blog-card-body h4 a:hover {
  color: var(--mar-yellow);
}

.mar-blog-card-desc {
  font-size: 13.5px;
  color: var(--mar-text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: none;
}

.mar-blog-reading-time {
  font-size: 12.5px;
  color: #6B7280;
  font-weight: 500;
}

/* ---------- Pagination ---------- */
.mar-blog-pagination-section {
  padding-bottom: 70px;
}

.mar-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mar-blog-page-btn {
  background: var(--mar-white);
  border: 1px solid #E5E7EB;
  color: #374151;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--mar-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  text-decoration: none;
}

.mar-blog-page-btn:hover {
  border-color: var(--mar-yellow);
  color: var(--mar-heading);
}

.mar-blog-page-btn.active {
  background: var(--mar-yellow);
  border-color: var(--mar-yellow);
  color: #000000;
}

.mar-blog-page-btn.disabled {
  background: #F3F4F6;
  border-color: #E5E7EB;
  color: #9CA3AF;
  cursor: not-allowed;
  pointer-events: none;
}

.mar-blog-page-dots {
  font-size: 14px;
  color: #6B7280;
  padding: 0 4px;
}

/* ---------- Newsletter Section ---------- */
.mar-blog-newsletter-section {
  padding-bottom: 80px;
}

.mar-blog-newsletter-card {
  background: #111827;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: var(--mar-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mar-newsletter-glow-1 {
  position: absolute;
  top: -130px;
  left: -130px;
  width: 300px;
  height: 300px;
  background-color: #FABB1B;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.mar-newsletter-glow-2 {
  position: absolute;
  bottom: -130px;
  right: -130px;
  width: 300px;
  height: 300px;
  background-color: #3B82F6;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.mar-newsletter-eyebrow,
.mar-blog-newsletter-card h3,
.mar-newsletter-desc,
.mar-newsletter-form,
.mar-newsletter-note {
  position: relative;
  z-index: 1;
}

.mar-newsletter-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mar-yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.mar-blog-newsletter-card h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--mar-white);
  margin-bottom: 16px;
}

.mar-newsletter-desc {
  font-size: 15.5px;
  color: #9CA3AF;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.mar-newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px auto;
}

.mar-newsletter-input {
  flex: 1;
  background: #1F2937;
  border: 1px solid #374151;
  border-radius: var(--mar-radius-pill);
  padding: 14px 24px;
  font-size: 14px;
  color: var(--mar-white);
  font-family: var(--mar-font-main);
  outline: none;
  transition: var(--mar-transition);
}

.mar-newsletter-input:focus {
  border-color: var(--mar-yellow);
  box-shadow: 0 0 0 3px rgba(250, 187, 27, 0.2);
}

.mar-newsletter-btn {
  background: var(--mar-yellow);
  color: #000000;
  border: none;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--mar-radius-pill);
  cursor: pointer;
  transition: var(--mar-transition);
}

.mar-newsletter-btn:hover {
  transform: scale(1.05);
}

.mar-newsletter-note {
  font-size: 12.5px;
  color: #6B7280;
}

/* ---------- Responsive Breakpoints ---------- */








/* =========================================================
   MARKA COMMUNICATIONS — BLOG ARTICLE DETAIL PAGE STYLESHEET
   Prefix: blog-detail-
   Theme: Scoped under .mar-blog-detail-page
   ========================================================= */

.mar-blog-detail-page {
  background-color: var(--mar-white) !important;
  color: var(--mar-black) !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}

.mar-blog-detail-page main {
  padding-top: 0; /* Hero starts at top: 0, overlayed by transparent header */
}

/* ---------- Header Override for transparent overlay on dark hero ---------- */
.mar-blog-detail-page .mar-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  z-index: 1000;
}

.mar-blog-detail-page .mar-logo img {
  filter: brightness(0) invert(1) !important;
}

.mar-blog-detail-page .mar-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--mar-transition);
}

.mar-blog-detail-page .mar-nav a:hover,
.mar-blog-detail-page .mar-nav a.mar-active {
  color: var(--mar-yellow) !important;
}

.mar-blog-detail-page .mar-nav-toggle span {
  background-color: #ffffff !important;
}



/* ---------- 1. BLOG HERO ---------- */
.mar-blog-detail-hero {
  background-color: #0c101a;
  padding: 160px 0 60px 0;
  color: var(--mar-white) !important;
  position: relative;
  overflow: visible;
  height: auto;
}

.mar-blog-detail-hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.mar-blog-detail-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.mar-blog-detail-badge-category {
  background-color: var(--mar-yellow);
  color: var(--mar-black);
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--mar-radius-pill);
  padding: 6px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mar-blog-detail-badge-readtime {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--mar-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--mar-radius-pill);
  padding: 5px 14px;
}

.mar-blog-detail-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--mar-white);
  margin-bottom: 32px;
  max-width: 900px;
  text-align: left;
}

/* ---------- Author Meta ---------- */
.mar-blog-detail-author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mar-blog-detail-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.mar-blog-detail-author-info {
  display: flex;
  flex-direction: column;
}

.mar-blog-detail-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--mar-white);
}

.mar-blog-detail-author-role {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
}

.mar-blog-detail-meta-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 300;
  margin: 0 4px;
}

.mar-blog-detail-publish-date {
  font-size: 14px;
  color: #9CA3AF;
  font-weight: 500;
}

/* ---------- 2. FEATURED IMAGE OVERLAP ---------- */
.mar-blog-detail-featured-wrap {
  max-width: 1100px;
  margin: 32px auto 0 auto;
  position: relative;
  z-index: 20;
}

.mar-blog-detail-featured-img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

p.mar-blog-detail-intro {
    margin-bottom: 30px;
}
/* ---------- 3. ARTICLE CONTENT CONTAINER ---------- */
.mar-blog-detail-content-section {
  background-color: var(--mar-white);
  padding: 80px 0 60px 0;
}

.mar-blog-detail-text-col {
  max-width: 100%;
  margin: 0 auto;
}

.mar-blog-detail-intro {
  font-size: 19.5px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--mar-heading);
  margin-bottom: 28px;
}

.mar-blog-detail-text-col p {
  font-size: 16px;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 0;
}

.mar-blog-detail-text-col h2,
.mar-blog-detail-text-col h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--mar-heading);
  margin: 44px 0 20px 0;
  line-height: 1.3;
}

/* ---------- Quote Block ---------- */
.mar-blog-detail-quote-box {
  background-color: #FFFDF7;
  border: 1px solid var(--mar-yellow);
  border-radius: 16px;
  padding: 18px 18px;
  margin: 36px 0;
}

.mar-blog-detail-quote-box p {
  font-size: 20px;
}

.mar-blog-detail-quote-text {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
  color: var(--mar-heading);
  margin-bottom: 14px;
}

.mar-blog-detail-quote-author {
  font-size: 15px!important;
  font-weight: 700;
  color: #B8860B!important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

/* ---------- Inline Image ---------- */
.mar-blog-detail-inline-img-wrap {
  margin: 40px 0;
}

.mar-blog-detail-inline-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.mar-blog-detail-inline-caption {
  display: block;
  text-align: center;
  font-size: 13.5px;
  color: #666;
  margin-top: 12px;
  font-style: italic;
}

.mar-blog-detail-bio-socials a {
    color: #BF9C11;
}
/* ---------- Author Bio Card ---------- */
.mar-blog-detail-author-card {
  background-color: #F9FAFB;
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  border: 1px solid #ECEEF1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mar-blog-detail-author-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mar-blog-detail-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mar-blog-detail-author-meta {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.mar-blog-detail-bio-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.mar-blog-detail-author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.mar-blog-detail-bio-content {
  margin: 0;
}

.mar-blog-detail-bio-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

.mar-blog-detail-author-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #ECEEF1;
}

.mar-blog-detail-share-label {
  font-size: 15px;
  font-weight: 800;
  color: #151A26;
}

.mar-blog-detail-bio-socials {
  display: flex;
  gap: 12px;
}

.mar-blog-detail-bio-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ECEEF1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FABB1B !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mar-blog-detail-bio-socials a:hover {
  background-color: #FABB1B;
  border-color: #FABB1B;
  color: #ffffff !important;
}

/* ---------- 4. RELATED ARTICLES ---------- */
.mar-blog-detail-related-section {
  background-color: #F9FAFB;
  padding: 90px 0 90px 0;
  border-top: 1px solid #ECEEF1;
}

.mar-blog-detail-related-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8860B !important;
  margin-bottom: 16px;
  text-align: center;
}

.mar-blog-detail-related-eyebrow::before,
.mar-blog-detail-related-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--mar-yellow);
  transform: rotate(45deg);
  display: inline-block;
}

.mar-blog-detail-related-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--mar-heading);
  text-align: center;
  margin-bottom: 50px;
}

/* ---------- 5. YELLOW CTA SECTION ---------- */
.mar-blog-detail-cta-section {
  background-color: var(--mar-yellow);
  padding: 90px 0;
  text-align: center;
}

.mar-blog-detail-cta-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--mar-navy);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.mar-blog-detail-cta-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--mar-navy);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mar-blog-detail-cta-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--mar-navy);
  max-width: 780px;
  margin: 0 auto 44px auto;
  opacity: 0.95;
}

.mar-blog-detail-cta-card {
  background-color: var(--mar-navy);
  border-radius: 24px;
  padding: 50px 60px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--mar-shadow-card);
}

.mar-blog-detail-cta-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--mar-white);
  margin-bottom: 24px;
}

.mar-blog-detail-cta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.mar-blog-detail-cta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.mar-blog-detail-cta-item i {
  color: var(--mar-yellow);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.mar-blog-detail-cta-btn-wrap {
  display: flex;
  justify-content: center;
}

.mar-blog-detail-cta-card .mar-btn {
  font-size: 16.5px;
  padding: 16px 32px;
  background-color: var(--mar-yellow);
  border-color: var(--mar-yellow);
  color: var(--mar-black);
}

.mar-blog-detail-cta-card .mar-btn:hover {
  background-color: transparent !important;
  color: var(--mar-yellow) !important;
  border-color: var(--mar-yellow) !important;
}

.mar-blog-detail-cta-card .mar-btn:hover .mar-btn-arrow {
  background-color: var(--mar-yellow) !important;
}

.mar-blog-detail-cta-card .mar-btn:hover .mar-btn-arrow i {
  color: var(--mar-white) !important;
}

/* ---------- Responsive Breakpoints for Blog Detail ---------- */







/* =========================================================
   MERGED FROM CONTACT.CSS
   ========================================================= */
/* =========================================================
   MARKA COMMUNICATIONS — CONTACT US PAGE STYLESHEET
   Prefix: contact-
   Theme: Pixel-Perfect White-Theme with Dark Header & Yellow CTA
   ========================================================= */

.mar-contact-page {
  background-color: #FFFFFF !important;
  color: #1E293B !important;
  font-family: var(--mar-font-main);
  overflow-x: hidden;
}
/* ---------- Intro/Hero Section (Solid White Background) ---------- */
.mar-contact-intro-section {
    padding: 60px 0 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

/* ---------- 1. mar-portfolio-hero-eyebrow Badge ---------- */
.mar-portfolio-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FABB1B !important;
  margin-bottom: 20px;
}

.mar-portfolio-hero-eyebrow::before,
.mar-portfolio-hero-eyebrow::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #FABB1B;
  transform: rotate(45deg);
  display: inline-block;
}

.mar-contact-title {
  font-size: 44px;
  font-weight: 900;
  color: #0E1116;
  margin-bottom: 20px;
}

.mar-contact-title span.mar-highlight {
  color: #FABB1B;
}

.mar-contact-desc {
  font-size: 16px;
  color: #5A5F66;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Main Grid & Cards Layout ---------- */
.mar-contact-grid-section {
  padding: 0 0 80px 0;
  background: #FFFFFF;
}

.mar-contact-main-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 36px;
  align-items: start;
}

/* Left Card: Send us a message */
.mar-contact-form-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.mar-contact-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 28px;
}

.mar-contact-form-group {
  margin-bottom: 20px;
  position: relative;
}

.mar-contact-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0E1116;
  margin-bottom: 8px;
}

.mar-contact-form-input,
.mar-contact-form-select,
.mar-contact-form-textarea {
  width: 100%;
  background: #EBEDF0;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: #1A202C;
  font-family: var(--mar-font-main);
  transition: var(--mar-transition);
}

.mar-contact-form-input::placeholder,
.mar-contact-form-textarea::placeholder {
  color: #A0AEC0;
}

.mar-contact-form-input:focus,
.mar-contact-form-select:focus,
.mar-contact-form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #FABB1B;
  box-shadow: 0 0 0 3px rgba(250, 187, 27, 0.15);
}

/* Select dropdown arrow override */
.mar-contact-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 15px;
  padding-right: 40px;
}

.mar-contact-form-textarea {
  height: 140px;
  resize: vertical;
}

/* Submit button customization */
.mar-contact-form-card .mar-btn {
  background: #FABB1B !important;
  color: #000000 !important;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--mar-radius-pill);
  box-shadow: none !important;
  border: 2px solid #FABB1B !important;
  transition: var(--mar-transition);
}

.mar-contact-form-card .mar-btn:hover {
  background: transparent !important;
  color: #FABB1B !important;
  border-color: #FABB1B !important;
  transform: none;
}

/* Client-side error messages */
.mar-contact-form-input.is-invalid,
.mar-contact-form-textarea.is-invalid,
.mar-contact-form-select.is-invalid {
  border-color: #E53E3E !important;
  background-color: #FFF5F5 !important;
}

.mar-contact-invalid-feedback {
  font-size: 12.5px;
  color: #E53E3E;
  margin-top: 5px;
  display: block;
}

/* Right Column Sidebar */
.mar-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card: Quick Connect */
.mar-quick-connect-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px;
}

.mar-quick-connect-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 24px;
}

.mar-quick-connect-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mar-quick-connect-item:last-child {
  margin-bottom: 0;
}

.mar-quick-connect-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FEF9C3;
  color: #FABB1B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.mar-quick-connect-info {
  display: flex;
  flex-direction: column;
}

.mar-quick-connect-info span {
  font-size: 12px;
  color: #4B5563;
  font-weight: 600;
  margin-bottom: 2px;
}

.mar-quick-connect-info h4,
.mar-quick-connect-info a {
  font-size: 14.5px;
  font-weight: 700;
  color: #0E1116;
  margin: 0;
  text-decoration: none;
  transition: var(--mar-transition);
  word-wrap: anywhere;
}

.mar-quick-connect-info a:hover {
  color: #FABB1B;
}

/* Sidebar Offices Section */
.mar-offices-sidebar-wrap {
  margin-top: 0;
}

.mar-offices-sidebar-wrap h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 20px;
}

.mar-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mar-office-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  transition: var(--mar-transition);
}

.mar-office-card::before {
  display: none !important;
}

.mar-office-line {
  width: 4px;
  min-height: 87px;
  background: #FABB1B;
  border-radius: 2px;
  flex-shrink: 0;
}

.mar-office-info {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
}

.mar-office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border-color: #FABB1B;
}

.mar-office-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 4px;
}

.mar-office-card p {
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 4px;
}

.mar-office-card .mar-tel-link {
  font-size: 13px;
  font-weight: 700;
  color: #0E1116;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--mar-transition);
}

.mar-office-card .mar-tel-link:hover,
.mar-office-card .mar-tel-link a:hover {
  color: #FABB1B !important;
}

/* Map Card */
.mar-map-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.20);
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.mar-map-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  margin-bottom: 16px;
}

.mar-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.mar-map-info {
  text-align: center;
}

.mar-map-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 12px;
}

.mar-map-info-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mar-map-info-links a {
  font-size: 13px;
  font-weight: 700;
  color: #0E1116;
  text-decoration: none;
  border: 1px solid #D1D5DB;
  background-color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--mar-transition);
}

.mar-map-info-links a:hover {
  border-color: #FABB1B;
  color: #FABB1B;
  text-decoration: none;
  background-color: #FFFDF5;
}

/* Global Hubs Card */
.mar-global-hubs-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  text-align: left;
}

.mar-global-hubs-icon {
  font-size: 40px;
  color: #FABB1B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mar-global-hubs-info {
  display: flex;
  flex-direction: column;
}

.mar-global-hubs-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0E1116;
  margin-bottom: 4px;
}

.mar-global-hubs-card p {
  font-size: 13.5px;
  color: #5A5F66;
  margin: 0;
  line-height: 1.5;
}


/* ---------- CTA Section Override: Solid Yellow background, left text, right button ---------- */
.mar-contact-page .mar-cta {
  background: #FABB1B !important;
  padding: 60px 0 !important;
  text-align: left !important;
}

.mar-contact-page .mar-cta-title {
  font-size: 32px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 10px 0 !important;
  max-width: 100% !important;
}

.mar-contact-page .mar-cta-desc {
  font-size: 15.5px;
  color: #4B3E10 !important;
  margin: 0 !important;
  max-width: 760px !important;
  line-height: 1.6;
}

.mar-contact-page .mar-cta .mar-btn-dark {
  background: #18212F !important;
  color: #FFFFFF !important;
  border: 2px solid #18212F !important;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--mar-radius-pill);
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--mar-transition);
}

.mar-contact-page .mar-cta .mar-btn-dark:hover {
  background: transparent !important;
  color: #18212F !important;
  border-color: #18212F !important;
  transform: none;
}

.mar-contact-page .mar-cta .mar-btn-dark:hover .mar-btn-arrow {
  background: #18212F !important;
}

.mar-contact-page .mar-cta .mar-btn-dark:hover .mar-btn-arrow i {
  color: #FFFFFF !important;
}

/* ---------- Responsive Breakpoints ---------- */



/* Tablet (992px and below) */


/* Small Tablet (768px and below) */


/* Mobile (576px and below) */


/* Extra Small Mobile (480px and below) */


/* =========================================================
   STICKY HEADER WITH SLIDE-DOWN ANIMATION
   ========================================================= */
.mar-header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffffe6 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    animation: marSlideDown 0.4s ease-out forwards;
    padding: 12px 0 !important;
}

body.mar-inner-page header.mar-header.mar-header-sticky {
    background: #ffffffe8 !important;
}

@keyframes marSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Ensure sticky elements, logos, and links are inverted correctly on dark pages */
.mar-header-sticky .mar-logo img {
  filter: none !important;
}

.mar-header-sticky .mar-nav a {
  color: var(--mar-heading) !important;
}

.mar-header-sticky .mar-nav a:hover,
.mar-header-sticky .mar-nav a.mar-active {
  color: var(--mar-yellow) !important;
}

.mar-header-sticky .mar-nav-toggle span {
  background-color: var(--mar-heading) !important;
}

.mar-about-page .mar-header-sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffffc2 !important;
    border-bottom: 1px solid rgb(255 255 255) !important;
    z-index: 1000;
}

/* =========================================================
   CLIENT REQUESTED CUSTOMIZATIONS (LAYOUT AND CONTENT UPDATES)
   ========================================================= */

/* 1. Trust Section Counter Styles */
.mar-home-counters {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}
.mar-home-counter-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 10px;
  z-index: 2;
}
.mar-home-counter-item .mar-counter-value {
  font-size: 52px;
  font-weight: 800;
  color: #FABB1B;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}
.mar-home-counter-item .mar-counter-text {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  max-width: 220px;
  line-height: 1.4;
  opacity: 0.95;
}
.mar-home-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
  .mar-trust-wrap {
    padding: 100px 0 80px;
    height: auto !important;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%) !important;
  }
  .mar-home-counters {
    gap: 30px;
    justify-content: center;
  }
  .mar-home-counter-item {
    flex: 0 0 calc(50% - 15px);
    min-width: 140px;
  }
  .mar-home-counter-item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .mar-home-counter-item .mar-counter-value {
    font-size: 32px;
  }
}

/* 2. FAQ Video Styles */
.mar-faq-video {
    position: relative; 
    max-height: 300px;
}
.mar-faq-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}
.mar-faq-video img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.mar-faq-video:hover img {
  transform: scale(1.05);
}
.mar-faq-video .mar-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}
.mar-faq-video:hover .mar-play-btn {
  background: rgba(0, 0, 0, 0.4);
}
.mar-faq-video .mar-play-btn span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--mar-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mar-black);
  font-size: 24px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(250, 187, 27, 0.4);
  position: relative;
  z-index: 1;
}
.mar-faq-video .mar-play-btn span::before,
.mar-faq-video .mar-play-btn span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--mar-yellow);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  animation: mar-play-ripple 2.4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
.mar-faq-video .mar-play-btn span::after {
  animation-delay: 1.2s;
}
.mar-faq-video:hover .mar-play-btn span {
  transform: scale(1.15);
}

@keyframes mar-play-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Centered 900px Video Popup Styles */
.mar-video-popup,
.mfp-iframe-holder .mfp-content {
  max-width: 900px !important;
  width: 90% !important;
  margin: 0 auto;
  position: relative;
}
.mfp-iframe-holder .mfp-close {
  color: #FFFFFF !important;
  font-size: 40px !important;
  right: 0 !important;
  top: -45px !important;
  opacity: 0.85;
  transition: opacity 0.3s;
  cursor: pointer !important;
}
.mfp-iframe-holder .mfp-close:hover {
  opacity: 1;
}

/* 4. Product Logos Split Layout */
.mar-products-row {
    display: flex;
    align-items: start;
    border-top: 0px solid rgba(0, 0, 0, 0.08);
    border-bottom: 0px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    gap: 30px;
}
.mar-products-carousel-wrap {
  flex: 1;
  min-width: 0;
}
.mar-products-carousel-wrap .mar-logos-carousel {
  border: none !important;
  padding: 0 !important;
}
.mar-products-supported {
    display: flex;
    flex-direction: column;
    align-items: start;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 30px;
    flex-shrink: 0;
}
.mar-supported-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #231F2B;
    margin-bottom: 0;
    text-transform: uppercase;
}
.mar-supported-logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mar-supported-logo-item {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mar-supported-logo-item img {
  max-height: 100%;
  max-width: 130px;
  width: auto !important; 
  transition: var(--mar-transition);
}
.mar-supported-logo-item img:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .mar-products-row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 3px;
    padding: 20px 0;
  }
  .mar-products-supported {
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 0;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
    .mar-products-supported {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-left: 0px solid rgba(0, 0, 0, 0.08);
        padding-left: 0;
        flex-shrink: 0;
    }
    .mar-services-content .mar-h2.mar-services-title {
        margin: 0 !important;
    }
    .mar-home-counters {
        gap: 1px;
        justify-content: space-around;
    }
    .mar-home-counters {
        gap: 20px;
        justify-content: center;
    }
}


.mar-blog .mar-blog-head.aos-init.aos-animate h2.mar-h2.mar-blog-title {
    max-width: 700px;
}
.mar-cta p.mar-cta-sub {
    max-width: 800px;
    margin: auto;
}

/* =========================================================
   WORD-BY-WORD REVEAL ANIMATION (TEXT REVEAL)
   ========================================================= */
.mar-reveal-text.mar-reveal-text-js-ready {
  opacity: 1 !important; /* Override inline opacity so container is transparently handled by children */
  overflow: hidden;
}
.mar-reveal-text.mar-reveal-text-js-ready .mar-reveal-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.mar-reveal-text.mar-reveal-text-js-ready .mar-reveal-word-wrap:not(:last-child) {
  margin-right: 0.28em; /* Clean word spacing */
}
.mar-reveal-text.mar-reveal-text-js-ready .mar-reveal-word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.15, 0.85, 0.35, 1.0), opacity 0.8s ease;
  will-change: transform, opacity;
}
.mar-reveal-text.mar-reveal-active .mar-reveal-word {
  transform: translateY(0);
  opacity: 0.8; /* Restore original design's opacity */
}

.mar-home-counters-support.mar-reveal-active .mar-reveal-word {
  opacity: 1;
}

/* =========================================================
   MOBILE RESPONSIVE CUSTOMIZATIONS (767.98px and below)
   ========================================================= */
@media (max-width: 767.98px) {
    .mar-trust-wrap {
        padding: 40px 0px !important;
        margin-top: 0 !important;
        background: #0d121f !important;
        clip-path: none !important;
        margin: 0 !important;
        border-bottom: 4px solid #fabb1b !important;
    }
    .mar-home-counter-item .mar-counter-text {
        font-size: 13px;
        font-weight: 500;
        color: #FFFFFF;
        max-width: 220px;
        line-height: 1.4;
        opacity: 1;
    }
}

/* =========================================================
   Magnific Popup Simple Fade Transition
   ========================================================= */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/* =========================================================
   PRIVACY POLICY PAGE SCOPED STYLES
   ========================================================= */
.mar-privacy-page main {
  padding-top: 0; /* Starts at top: 0, overlayed by transparent header */
}

/* Header Override for transparent overlay on dark hero */
 
 

 
 
/* Hero Banner */
.mar-privacy-page .mar-privacy-hero {
  background-color: #F8FAFC;
  padding: 160px 0 60px 0;
  color: var(--mar-white) !important;
  position: relative;
  overflow: visible;
  height: auto;
}

.mar-privacy-page .mar-privacy-hero-content {
 
  margin: 0 auto;
}

.mar-privacy-page .mar-privacy-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--mar-heading);
  margin-bottom: 12px;
  text-align: left;
}

.mar-privacy-page .mar-privacy-breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: var(--mar-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mar-privacy-page .mar-privacy-breadcrumb a {
  color: var(--mar-heading);
  transition: var(--mar-transition);
}

.mar-privacy-page .mar-privacy-breadcrumb a:hover {
  color: var(--mar-yellow);
}

.mar-privacy-page .mar-privacy-breadcrumb span {
  color: var(--mar-yellow);
}

/* Main Content Container & Layout */
.mar-privacy-page .mar-privacy-layout-section {
  background-color: var(--mar-white);
  padding: 80px 0;
}

.mar-privacy-page .privacy-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start; 
  margin: 0 auto;
}

/* Sticky Sidebar */
.mar-privacy-page .privacy-sidebar {
  width: 27%;
  position: sticky;
  top: 100px; /* offset for sticky header */
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 15px;
}

.mar-privacy-page .privacy-sidebar::-webkit-scrollbar {
  width: 4px;
}

.mar-privacy-page .privacy-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.mar-privacy-page .privacy-sidebar::-webkit-scrollbar-thumb {
  background: rgba(24, 33, 47, 0.1);
  border-radius: 4px;
}

.mar-privacy-page .privacy-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(24, 33, 47, 0.2);
}

.mar-privacy-page .privacy-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mar-privacy-page .privacy-nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--mar-text-gray);
    background: transparent;
    border-radius: var(--mar-radius-sm);
    transition: var(--mar-transition);
    line-height: 1.5;
    text-decoration: none;
}

.mar-privacy-page .privacy-nav-link:hover {
  background: rgba(24, 33, 47, 0.04);
  color: var(--mar-heading);
}

.mar-privacy-page .privacy-nav-link.active {
    background: #fff4d4 !important;
    color: #FABB1B !important;
    font-weight: 700;
}

/* Content Area */
.mar-privacy-page .privacy-content {
  width: 73%;
}

.mar-privacy-page .privacy-content section {
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mar-privacy-page .privacy-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mar-privacy-page .privacy-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--mar-heading);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.mar-privacy-page .privacy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 20px;
}

.mar-privacy-page .privacy-content p strong {
  font-size: 16.5px;
  color: var(--mar-heading);
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

.mar-privacy-page .privacy-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.mar-privacy-page .privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.mar-privacy-page .privacy-content li::before {
  content: "•";
  color: var(--mar-yellow);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.mar-privacy-page .privacy-content a {
  color: var(--mar-navy);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--mar-transition);
}

.mar-privacy-page .privacy-content a:hover {
  color: var(--mar-yellow);
}

.mar-privacy-page .privacy-content strong {
  color: var(--mar-heading);
  font-weight: 700;
}

.mar-privacy-page .last-updated {
  font-size: 15px;
  font-weight: 600;
  color: var(--mar-text-gray);
  margin-bottom: 30px;
  display: block;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .mar-privacy-page .mar-privacy-hero {
    padding: 120px 0 50px 0;
  }
  
  .mar-privacy-page .mar-privacy-title {
    font-size: 32px;
  }
  
  .mar-privacy-page .mar-privacy-layout-section {
    padding: 40px 0;
  }
  
  .mar-privacy-page .privacy-layout {
    flex-direction: column;
    gap: 30px;
  }
  
  .mar-privacy-page .privacy-sidebar {
    width: 100%;
    position: sticky;
    top: 72px; /* sticky header height offset */
    z-index: 100;
    background: var(--mar-white);
    padding: 15px 0;
    margin-top: -10px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    max-height: none;
    padding-right: 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .mar-privacy-page .privacy-sidebar::-webkit-scrollbar {
    display: none;
  }
  
  .mar-privacy-page .privacy-nav {
    flex-direction: row;
    gap: 10px;
    padding: 0 20px;
  }
  
  .mar-privacy-page .privacy-nav-link {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 13.5px;
  }
  
  .mar-privacy-page .privacy-content {
    width: 100%;
  }
  
  .mar-privacy-page .privacy-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .mar-privacy-page .mar-privacy-hero {
    padding: 100px 0 40px 0;
  }
  
  .mar-privacy-page .mar-privacy-title {
    font-size: 28px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 991px) {
    .mar-privacy-page .privacy-content h2 {
        font-size: 20px;
    }
}