@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Instrument+Serif:ital@0;1&display=swap');
img,
video {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: auto;
}
:root {
    /* ========= COLORS ========= */
    --color-text-secondary-muted: #f9fafb;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #ffffff;
    --color-text-muted: #6b7280;
    
    --color-accent: #FC4625;

    --srv-accent-orange: #FC4625;

    /* ========= TYPOGRAPHY ========= */
    --font-primary: "Google Sans Flex", sans-serif;
    --font-serif: "Instrument Serif", serif;

    --font-size-body: clamp(1rem, 0.25vw + 0.9rem, 1.1rem);
    --font-size-btn: 1rem; /* first root keeps priority */
    --heading-font-size: clamp(2.6rem, 8vw, 4.5rem);

    /* ========= SPACING & SIZING ========= */
    --nav-width: 88vw; /* from first root */
    --section-width: 80vw;
    --section-padding-y: 80px;

    --padding-btn: 12px 24px; /* first root */
    --gap-standard: 20px;

    /* ========= BORDERS ========= */
    --border-radius-s: 6px;
    --border-radius-m: 12px;
    --border-radius-l: 24px; /* first root keeps priority */
    --border-radius-pill: 50px;

    /* ========= ANIMATION & MISC ========= */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease; /* first root */
    --transition-slow: 0.6s ease;

    --hover-rotate: 45deg;

    /* Fixed text colors from second root */
    --fixed-text-light: #ffffff;
    --fixed-text-dark: #0a0a0a;
}

* {
      cursor: none !important;
    margin: 0;
    padding: 0;
}

/* Ensure cursor is hidden on all elements */
*,
*::before,
*::after {
    cursor: none !important;
}
/* --- Global & Base --- */
html, body, a, button { cursor: none !important; }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body.is-loading { overflow: hidden; }
body { background-color: var(--color-text-secondary); color: var(--color-text-primary); font-family: var(--font-primary); margin: 0; padding: 0; font-size: 16px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
main { position: relative; }
.svg-defs { position: absolute; width: 0; height: 0; }
em { font-style: italic; font-family: var(--font-serif); }
    body.is-loading .custom-cursor .cursor-icon path { fill: var(--color-text-secondary) !important; }
.blog-title-bl{
    transition:all ease-in-out 0.2s;
}
.hovering{    transition:all ease-in 0.3s;
}
.hovering:hover{
    transform:translatey(-5px);
    transition:all ease-in 0.3s;
}
.blog-title-bl:hover{
    color:var(--srv-accent-orange);
    transform:translateX(2px);
    transition:all ease-in-out 0.2s;
}
/* --- Preloader & Custom Cursor --- */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--color-text-secondary); display: flex; justify-content: center; align-items: center; z-index: 998; transition: opacity 0.7s ease, visibility 0.7s ease; }
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader img { width: 80%; height: auto; margin:auto;}
.custom-cursor { position: fixed; top: 0; left: 0; width: 25px; height: 25px; pointer-events: none;  z-index: 10000; will-change: transform; border-radius: 50%; transform: translate(-8%, -5%); transition: transform 0.1s ease; }
.cursor-icon { width: 100%; height: 100%; transition: opacity 0.3s ease; }
.cursor-image-container { position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; border-radius: 50%; background-size: cover; background-position: center; transform: translate(-50%, -50%) scale(0); opacity: 0; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease; }
.custom-cursor.image-active .cursor-image-container { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.custom-cursor.image-active .cursor-icon { opacity: 0; }
.custom-cursor.link-hover:not(.image-active) { transform: translate(-8%, -5%) scale(1.6); }
.cursor-icon path { fill: var(--color-text-primary, #0a0a0a); transition: fill 0.4s ease; }
.custom-cursor.light .cursor-icon path { fill: var(--color-text-secondary, #ffffff); }
/* Ensure !important is used so the Orange color overrides the JS inline white/black */
.custom-cursor.orange-click .cursor-icon path { 
    fill: var(--color-accent, #FF4500) !important; 
}

/* --- Reusable Button Component --- */
.rlvnt-btn { all: unset; position: relative; display: inline-flex; gap: 8px; border: 1px solid var(--color-text-primary); align-items: center; justify-content: center; padding: var(--padding-btn); border-radius: var(--border-radius-pill); font-family: var(--font-serif); font-weight: 400; font-style: italic; background: transparent; color: var(--color-text-primary); font-size: var(--font-size-btn); overflow: hidden; transition: color 0.4s ease, transform 0.3s ease; will-change: transform; }
.rlvnt-btn-white { border: 1px solid var(--color-text-secondary); color: var(--color-text-secondary); }
.rlvnt-btn-white svg {fill: #fff;}
.rlvnt-btn::before { content: ''; position: absolute; top: var(--liquid-y, 50%); left: var(--liquid-x, 50%); width: 0; height: 0; background: var(--color-text-primary); border-radius: 50%; z-index: -1; transform: translate(-50%, -50%) scale(0); transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.rlvnt-btn svg { transform: rotate(0deg); transition: transform 0.3s ease, fill 0.3s ease; will-change: transform; transform-origin: center; transform-box: fill-box; z-index: 2; position: relative; }
.rlvnt-btn:hover { color: var(--color-text-secondary); border-color: transparent; transform: scale(1.05); }
.rlvnt-btn:hover::before { width: 500px; height: 500px; transform: translate(-50%, -50%) scale(1); }
.rlvnt-btn:hover svg { transform: rotate(45deg); fill: var(--color-text-secondary); }
.rlvnt-btn:active { transform: scale(0.98); }

/* --- RIPPLE EFFECT (Unchanged) --- */
.ripple { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); animation: rippleAnimation 0.8s ease-out forwards; }
@keyframes rippleAnimation { 0% { width: 0; height: 0; opacity: 0.6; border: 2px solid var(--color-accent, #ff4500); } 100% { width: 120px; height: 120px; opacity: 0; border: 0.5px solid var(--color-accent, #ff4500); } }
body.is-loading .custom-cursor .cursor-icon path, 
body.menu-is-active .custom-cursor .cursor-icon path { fill: var(--color-text-primary) !important; }
.rlvnt-btn-white { border: 1px solid var(--color-text-secondary); color: var(--color-text-secondary); }

/* --- Navigation Bar --- */
.nav-wrapper { position: fixed; top: 20px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 997; padding: 0 15px; box-sizing: border-box; }
nav { width: 100%; max-width: var(--nav-width); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; position: relative; background: rgba(255, 255, 255, 0.03); border-radius: 20px; backdrop-filter: url(#liquid-lens); -webkit-backdrop-filter: url(#liquid-lens); border: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--font-serif); overflow: hidden; isolation: isolate; transition: max-width 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out; --nav-text-color: var(--color-text-primary); }
nav::before { content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;background-size: auto; opacity: 0.3; border-radius: 20px; }
nav::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)); box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.1), inset -1px -1px 0 rgba(255, 255, 255, 0.05); opacity: 0.7; pointer-events: none; }
.nav-wrapper.scrolled nav { max-width: 82vw; }

body.menu-is-active .nav-wrapper nav { --nav-text-color: #000000 !important; }
.span-menu{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
      transition:all ease-in 0.2s;
  bottom: -14vh;              /* 30% below the viewport height */
  width: 100%;
  text-align: center;

  font-size: min(45vw, 350px); /* HUGE & responsive */
  font-weight: 500;
  font-family:var(--font-serif);
  opacity: 0.12;
  pointer-events: none;
  line-height: 1;
}
.fullscreen-menu.active-menu .span-menu {
    opacity: 0.15;
    transform: translateX(-50%) translateY(0);
    transition:all ease-in 0.2s;
}

.fullscreen-menu.closing .span-menu {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
        transition:all ease-in 0.2s;
}
.nav-left, .nav-center, .nav-right { z-index: 5; cursor: pointer; color: var(--nav-text-color); transition: color var(--transition-medium); }
.nav-logo { height: 28px; transition: transform 0.3s ease, filter 0.3s ease; }
.nav-center { display: flex; align-items: center; gap: 5px; text-decoration: none; transition: opacity 0.4s ease, transform 0.4s ease; text-transform: uppercase; }
.nav-center svg { fill: currentColor; transition: rotate 0.3s ease-in-out; rotate: 45deg; width: 24px; height: 24px; }
.nav-center:hover svg { rotate: 90deg; }
.nav-wrapper.scrolled .nav-center { opacity: 0; transform: translateY(-5px); pointer-events: none; }
.nav-right { display: flex; gap: 10px; align-items: center; }
#menu-toggle-text { text-transform: uppercase; font-size: calc(100% + 2px); }
#menu-toggle-icon { width: 24px; height: 12px; position: relative; }
#menu-toggle-icon .bar { position: absolute; left: 0; width: 80%; height: 2px; background: var(--nav-text-color); border-radius: 2px; transition: background-color var(--transition-medium), transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), top 0.5s cubic-bezier(0.76, 0, 0.24, 1); }
#menu-toggle-icon .bar-top { top: -1px; }
#menu-toggle-icon .bar-bottom { top: 6px; }
body.menu-is-active #menu-toggle-icon .bar-top { top: 4px; transform: rotate(45deg); }
body.menu-is-active #menu-toggle-icon .bar-bottom { top: 4px; width: 80%; transform: rotate(-45deg); }

/* --- Fullscreen Menu --- */
.fullscreen-menu { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 990; display: flex; pointer-events: none; overflow: hidden; }
.menu-overlay-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; }
.menu-overlay-layer:nth-child(1) { background-color: #F0F0F0; }
.menu-overlay-layer:nth-child(2) { background-color: #FFFFFF; }
.fullscreen-menu.active-menu .menu-overlay-layer { transform: scaleY(1); transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1); }
.fullscreen-menu.active-menu .menu-overlay-layer:nth-child(2) { transition-delay: 0.1s; }
.fullscreen-menu.closing .menu-overlay-layer { transform: scaleY(0); transform-origin: bottom; transition: transform 0.7s cubic-bezier(0.87, 0, 0.13, 1); }
.fullscreen-menu.closing .menu-overlay-layer:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active-menu { pointer-events: auto; }
.menu-content-wrapper {     opacity: 0;
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;
    z-index: 3;
    transition: opacity 0.4s 
ease 0.3s;
    align-items: center;
    justify-content: center;}
.fullscreen-menu.active-menu .menu-content-wrapper { opacity: 1; }
.fullscreen-menu.closing .menu-content-wrapper { opacity: 0; transition: opacity 0.3s ease; }
.menu-layout {     display: flex;
    width: var(--section-width);
    /* height: 100%; */
    margin: auto;
    align-items: flex-end;
    gap: 5%;}
.menu-col-left { flex: 0 0 70%; }
.menu-col-right {     flex: 1;
    padding-left: 5%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end; }
.main-menu-links ul, .menu-info { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0s; }
.fullscreen-menu.active-menu .main-menu-links ul { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.fullscreen-menu.active-menu .menu-info { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.main-menu-links ul { list-style: none; padding: 0; margin: 0; }
.main-menu-links li { transition: opacity 0.3s ease; }
.main-menu-links li a { position: relative; display: inline-block; font-size: clamp(2rem, 5.5vw, 4.2rem); color: #000000; line-height: 1.2; text-decoration: none; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.main-menu-links li a .font-serif-italic { font-family: var(--font-serif); font-style: italic; }
.main-menu-links li a::before { content: '→'; font-family: var(--font-serif); font-weight: normal; position: absolute; left: -1.2em; top: 50%; color: var(--color-accent); transform: translateY(-50%) translateX(-25px); opacity: 0; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.main-menu-links li a:hover { transform: translateX(25px); }
.main-menu-links li a:hover::before { transform: translateY(-50%) translateX(0); opacity: 1; }
.fullscreen-menu.active-menu .main-menu-links ul.is-hovered > li:not(:hover) { opacity: 0.5; }
.menu-info { display: flex; flex-direction: column; gap: 10px; }
.menu-info-block h4 {     font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-weight: 500;
    font-family: var(--font-serif);
}
.menu-socials { display: flex; flex-direction: column; gap: 10px; }
.menu-info-link { font-size: 1rem; color: #000000; position: relative; width: fit-content; transition: color 0.3s ease; }
.menu-info-link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 100%; height: 1px; background-color: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1); }
.menu-info-link:hover { color: var(--color-accent); }
.menu-info-link:hover::after { transform: scaleX(1); }

/* --- Footer --- */
footer.sections { width: var(--section-width); margin: 0 auto; padding: var(--section-padding-y) 0 !important; position: relative; display: flex; flex-direction: column; justify-content: center; }
.services-header-2 { display: flex; flex-direction: column; margin-bottom: 50px; }
.services-title-2 { font-size: clamp(1.8rem, 6vw, 7rem); font-weight: normal; margin:0; color: var(--color-text-primary); font-family: var(--font-serif); }
.services-header-2 .left { justify-content: flex-start; display: flex; align-items: center; }
.services-header-2 .right { justify-content: flex-end; display: flex; align-items: center; }
.svg-container { display: grid; width: 100%; margin: -30px 0px; align-items: center; justify-content: center; }
.svg-container img { width: 80px; height: 80px; }
.wave-hover { display: inline-block; transition: transform 0.2s ease; will-change: auto; filter: invert(1) grayscale(1) brightness(0); }
.wave-hover:hover { animation: wave-shake 0.6s ease-in-out infinite; will-change: transform; }
@keyframes wave-shake { 0% { transform: rotate(0deg) translateX(0); } 20% { transform: rotate(4deg) translateX(4px); } 40% { transform: rotate(-4deg) translateX(-4px); } 60% { transform: rotate(2deg) translateX(2px); } 80% { transform: rotate(-2deg) translateX(-2px); } 100% { transform: rotate(0deg) translateX(0); } }
.footer-content { display: flex; justify-content: flex-end; align-items: flex-start; gap: 20px; }
.new-options { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; gap: 8px; }
.new-options a { all: unset; text-align: right; font-weight: 400; display: inline-flex; align-items: center; justify-content: flex-end; gap: 0; transition: gap 0.3s ease; cursor: pointer; }
.new-options a svg { width: 0; height: auto; overflow: hidden; opacity: 0; transition: all 0.3s ease; }
.new-options a:hover { gap: 10px; }
.new-options a:hover svg { width: 1em; opacity: 1; }
.rlvnt-btn.max-content { width: max-content; height: max-content; font-size: 20px; padding: 8px 16px; }
.footer-bottom { display: flex; margin: 40px auto 0; justify-content: center; align-items: center; flex-direction: column; gap: 15px; width: 100%; }
.footer-bottom .links { display: flex; justify-content: space-between; width: 100%; margin-bottom: 40px; align-items: center; }
.footer-bottom .links a, .footer-bottom .links button { all: unset; font-size: calc(100% + 4px); font-family: var(--font-serif); flex: 1; cursor: pointer; }
.footer-bottom .links a:nth-child(2) { text-align: center; }
.btn-top { display: flex; justify-content: flex-start; text-align: left; }
.socials-trigger-rlvnt { cursor: pointer; display: flex; align-items: center; justify-content: flex-end; position: relative; font-size: calc(100% + 4px); font-family: var(--font-serif); flex: 1; overflow: hidden; height: 1.5em; }
.socials-label-rlvnt, .socials-row-rlvnt { position: absolute; right: 0; top: 50%; transform: translateY(-50%); transition: all .35s cubic-bezier(.4, 0, .2, 1); white-space: nowrap; }
.socials-row-rlvnt { display: flex; gap: 12px; top: 150%; opacity: 0; }
.socials-trigger-rlvnt:hover .socials-label-rlvnt { top: -50%; opacity: 0; }
.socials-trigger-rlvnt:hover .socials-row-rlvnt { top: 50%; opacity: 1; }
.socials-row-rlvnt a { font-size: 100% !important; transition: transform .25s ease, color .25s ease; }
.socials-row-rlvnt a:hover { transform: scale(1.05); color: var(--color-accent); }
.copyright { font-family: var(--font-serif); font-style: italic; }

/* --- Base Component Responsive --- */
@media (max-width: 768px) {
    html, body, a, button { cursor: auto; }
    .custom-cursor { display: none; }
    #preloader img { width: 100%; height: auto; margin:auto;}

    .nav-center { display: none; }
    .nav-logo { height: 24px; }
    .menu-layout { flex-direction: column; justify-content: center; text-align: center; width:90vw;        gap: 30px;}
    .menu-col-left {         margin: auto; }
    .menu-col-right {        border: none;
        padding: 0;
        height: auto;
        flex: none;margin: auto;
        
        align-items: center; }
        footer.sections {
    width: 90vw;
}
.span-menu {
     font-size: 22vw;
    bottom: -6%;
}
.section {
    width: 90vw !important;
    margin: 0 auto;
    padding: 40px 0 !important;
}
    .socials-label-rlvnt, .socials-row-rlvnt {
        position: relative;
        /* right: 0; */
        top: 0%;
        transform: translateY(0%);
        transition: all .35s 
cubic-bezier(.4, 0, .2, 1);
        white-space: nowrap;
    }
 .socials-row-rlvnt {
        opacity: 1;
        margin-left: 20px;
}
.arrow-faq {
    width: 60px !important;
    height: 60px !important;
}
.socials-trigger-rlvnt {
height:auto;
}
    .main-menu-links li { text-align: center;         margin-bottom: 4px;}
    .main-menu-links li a { font-size: clamp(2.2rem, 10vw, 2.8rem); }
    .main-menu-links li a::before { display: none; }
    .main-menu-links li a:hover { transform: scale(1.05); }
    .menu-info { text-align: center; gap:10px;}
    .menu-socials { align-items: center; }
    .footer-content { flex-direction: column; align-items: center; gap: 30px; }
    .new-options { align-items: flex-end;         width: 100%;}
    .services-title-2 { text-align: center; font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .content-hand p
 {
    font-size: 18px;
}
.blk1{
min-height: 100%;
        min-height: 500px;
}.header-section {
    top: 8vh;
}
    .services-header-2 .left { justify-content: left; }
     .services-header-2 .right { justify-content: right; }
     .svg-container {
    margin: -10px 0px;
}
    .footer-bottom .links { flex-direction: column; gap: 10px; align-items: center; }
}
@media (max-width: 480px) {
    .services-title-2 { font-size: clamp(1.5rem, 12vw, 3rem);}
    .rlvnt-btn { padding: 10px 20px; font-size: 15px !important; }
    .main-menu-links li a { font-size: clamp(2rem, 9vw, 2.2rem); }

    .svg-container {
        margin: -7px auto;
        width: auto;
        scale:0.6;
    }
    .menu-info-block h4 {  font-size:12px;  margin: 0;}
    
.menu-info-link {
    font-size: 14px;
}
.span-menu {
    bottom: var(--below-offset, -3.5%);
    font-size:28vw;
}
#menu-toggle-text {
display:none;
}
footer.sections {
    padding: 40px 0 !important;
}
    .testimonial-reveal-section {
        padding: 20px;
        padding-top: 12vh;
    }
        .header-section {
        top: 12vh;
    }
}


   .container-faq {
          border-radius: 8px;  display: flex;  flex-direction: column;  gap: 20px;  overflow: hidden;  position: relative;    overflow: visible !important;
      }

      .list-faq {
          list-style: none;  padding: 0;  width: 100%;
      }

      .item-faq {
          border-bottom: 1px solid #d6c2c2;  padding: 15px 0;
      }

      .item-faq:last-child {
          border-bottom: none;
      }

      .question-faq {
          display: flex;  gap: 15px;  align-items: center;  justify-content: space-between;     color: var(--color-text-primary); padding: 20px 0;  background: transparent;  border: none;  width: 100%;  text-align: left;  min-height: 100px;  cursor: pointer;
      }

      .text-faq {
          flex: 1;  font-weight: 400;  font-size: clamp(1.2rem, 2.2vw, 2rem);
      }

      .text-faq p {
          font-size: 16px;  margin-top: 5px;  font-family: var(--font-body);  color: #555;
      }

      .arrow-faq {
          width: 80px;  height: 80px;  background: var(--color-text-primary);  border-radius: 50%;  display: flex;  align-items: center;  justify-content: center;  color: var(--color-text-secondary);  font-size: 1.2rem;  transition: transform 0.3s ease, background-color 0.3s ease;  flex-shrink: 0;
      }

      .arrow-faq i {
          font-size: 32px;
      }

      .question-faq.active-faq .arrow-faq {
          background: var(--color-accent);  transform: rotate(90deg);
      }

      .answer-faq {
          max-height: 0;  overflow: hidden;  transition: all 0.4s ease;  background: transparent;
      }

      .answer-faq.open-faq {
          max-height: 300px;  padding: 1.5rem 0;
      }

      .content-faq {
          line-height: 1.6;  font-size: 18px;
      }
      
      
      
      .infs-marquee-container {
    width: 100% !important;  position: relative;  display: flex;  flex-direction: column;  gap: 0px;  opacity: 1;
    transform: translateY(0);  font-family: var(--font-serif);  color: var(--color-text-primary);  padding: 2rem 0;
}
.infs-scroll-wrapper {
    white-space: nowrap;  overflow: hidden;  display: flex;  align-items: center;  margin-top: -65px;
    
}
.infs-scroll-track {
    display: flex; align-items:center;  white-space: nowrap;  animation-duration: 30s;  animation-timing-function: linear;  animation-iteration-count: infinite;
}
.infs-rtl .infs-scroll-track {
    animation-name: infsScrollRTL;
}
.infs-ltr .infs-scroll-track {
    animation-name: infsScrollLTR;
}
.infs-scroll-text {
    display: inline-block;  font-size: clamp(3rem, -1.25rem + 12.8571vw, 10rem);  padding: 0 var(--gap-standard);  font-weight: 400;  color: var(--color-text-primary);
}
.infs-scroll-text em {
    font-style: italic;
}
.infs-dot {
  display: flex; align-items:center;  margin: 0 var(--gap-standard);  font-size: clamp(50px, 9vw, 100px);
}
@keyframes infsScrollRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes infsScrollLTR {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}


@media (max-width: 797px) {
    .infs-scroll-wrapper {
        white-space: nowrap;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: -30px !important;
    }
    .infs-dot {
margin: 0;
}
}
@media (max-width:1023px) and (min-width:798px){

    .infs-marquee-container {
    width: 100vw !important;
}   
}


/* INERTIA CTA */
.cta-inertia-section { text-align: center; color: var(--color-text-primary); width: var(--section-width); position: relative; z-index: 3;}
.inertia-container { display: flex; flex-direction: column; align-items: center; gap: 3rem; width: 100%; margin: 0 auto; }
.inertia-pre-title { font-size: clamp(0.8rem, 1.5vw, 0.9rem); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.inertia-main-block { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: clamp(1rem, 4vw, 3rem); transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
.inertia-main-title { font-size: var(--heading-font-size); font-weight: 500; line-height: 0.95; font-family: var(--font-primary); letter-spacing: -0.02em; text-align: center; }
.inertia-main-title em { font-family: var(--font-serif); font-style: italic; }
.inertia-side-text { font-size: clamp(0.8rem, 1.5vw, 0.9rem); font-weight: 500; white-space: nowrap; text-transform: uppercase; }
@media (max-width: 1024px) {
    .inertia-main-block { justify-content: center; }
    .inertia-side-text { display: none; }
}




:root {
    --color-accent: #FC4625;
    --text-main: #ffffff;
    --text-muted: #999999;
    --bg-card: #1a1a1a;
}

/* Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Card */
.blog-card-new {
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

/* Meta */
.blog-meta-row {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.meta-dot {
    margin: 0 8px;
    color: var(--color-accent);
    font-weight: bold;
}

/* Image */
.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    border: none;
    margin-bottom: 1.25rem;
    position: relative;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* Title */
.blog-title-new {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family:var(--font-serif);
    transition: color 0.3s ease, transform 0.3s ease;
}
/* Desc */
.blog-desc-new {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* BLOGS */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; width: 100%;}
.header-title { font-size: clamp(1.8rem, 4vw, 4.8rem); font-weight: 300; margin-bottom: 0.5rem; line-height: 1; font-family: var(--font-primary); }
.another-span { font-family: var(--font-primary); margin-bottom: 20px; text-align: right; width: 40%; }

@media (max-width: 797px) {
    .oth{
        align-items:flex-start;
    }
    .another-span {
        width: 100%;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 0;
    }
}
/* Hover */
.blog-card-link:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-card-link:hover .blog-title-new {
    color: var(--color-accent);
    transform: translateX(5px);
}

.blog-cta-wrapper {
    margin-top: 3rem;
    width: 100%;
    display: flex;
justify-content: flex-end;}

/* Responsive */
@media (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .blog-title-new {
        font-size: 1.35rem;
    }
    .blog-card-link:hover .blog-title-new {
        transform: translateX(0); 
    }
}