/* ===== Maison Neue ===== */
/* NOTE: Self-host these files for reliability. Place woff2 files in assets/fonts/
   and update the src paths below. Current CDN sources (GitHub repos) are unreliable.
@font-face {
    font-family: "Maison Neue";
    src: url("../fonts/MaisonNeue-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Maison Neue";
    src: url("../fonts/MaisonNeue-ExtraBold.woff2") format("woff2");
    font-weight: 800 900;
    font-style: normal;
    font-display: swap;
}
*/
@font-face {
    font-family: "Maison Neue";
    src: url("https://cdn.jsdelivr.net/gh/expo/dev-tools@master/static/fonts/MaisonNeue-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Maison Neue";
    src: url("https://cdn.jsdelivr.net/gh/InVisionApp/www-code-challenge@master/public/fonts/MaisonNeue-ExtraBold.woff2") format("woff2");
    font-weight: 800 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark: #101010;
    --darkBg: #f7f7f7;
    --whiteColor: #101010;
    --whiteBg: #f7f7f7;
    --primary: #272727;
    --paragraph: #16181D;
    --font-title:       "Maison Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font_inter_tight: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font_inter:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font_fraunces:    "Maison Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6,
nav, .main-menu a,
button,
label,
.work-price,
.task-num,
.task-label,
.section-title,
.logo,
.copyright-wrap,
.pricing-featured-stat,
.pricing-featured-label,
.cta-btn,
.nav-link,
.hero-sub,
.about-tag,
.work-tag,
.work-category,
.work-year,
.tag,
footer {
    font-family: var(--font-title);
    font-weight: 900;
    text-transform: none;
}
h1, h1.fraunces {
    font-family: var(--font-title);
}
.fraunces {
    font-family: var(--font_fraunces);
    text-transform: none;
}

/* ======================================
*       TABLE OF CONTENT
*----------------------------------------
*   # Global
*   # Pre Loader
*   # Magic Cursor
*   # Hero
*   # Menu
*   # Popup Menu
*   # Hero Banner
*   # Service
*   # Work Details
*   # Task List
*   # Next Project
*   # About
*   # Client Logos
*   # Process
*   # Banner
*   # Motivation
*   # Experience
*   # Favourite Stack
*   # Testimonial
*   # Pricing
*   # Blog Details
*   # Faq
*   # CTA
*   # Contact
*   # 404
*   # Footer
*
*
*
*
*   # KeyFrame   
========================================*/

/* ===== # GSAP pre-hide — prevents blink before JS initializes ===== */
/* Elements that start at opacity:0 in GSAP must start invisible in CSS too */
.scroll-animation[data-animation="fade_in"],
.scroll-animation[data-animation="fade_from_bottom"],
.scroll-animation[data-animation="fade_from_top"],
.scroll-animation[data-animation="fade_from_bottom2"],
.scroll-animation[data-animation="fade_from_top2"],
.scroll-animation[data-animation="fade_from_left"],
.scroll-animation[data-animation="fade_from_right"],
.scroll-animation[data-animation="rotate_up"] {
  opacity: 0;
}

/* ===== # Global ===== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: var(--font_inter);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--whiteColor);
    /* width: 100vw; */
    /* overflow-x: hidden; */
    background: var(--darkBg);
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100vh;
	transition: background-color 0.3s ease, color 0.3s ease;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main.page-main {
    inset: 0px;
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
}
.sticky-statement4,
.sticky-statement3,
.sticky-statement {
    /* height: 100%; */
    position: relative;
}

a {
    text-decoration: none;
    color: var(--whiteColor);
}
a:hover {
    color: var(--whiteColor);
}
img {
    max-width: 100%;
}
.mt-30 {
    margin-top: 30px;
}
.custom-row {
    display: flex;
}
.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;

}
::selection {
  background: #16181D;
  color: #F4F5F7;
  text-shadow: none;
}

::-moz-selection {
  background: #16181D;
  color: #F4F5F7;
  text-shadow: none;
}

.theme-btn {
    font-size: 16px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 26px;
	border: 2px solid black;
    border-radius: 8px;
    color: var(--white);
    transition: .5s;
    -webkit-transition: .5s;
}
button.theme-btn:hover,
a.theme-btn:hover {
    background: var(--primary);
}
.theme-btn.primary-bg {
    background: #FFF;
}
button.theme-btn.primary-bg:hover,
a.theme-btn.primary-bg:hover {
    background: var(--whiteBg);
}
a.theme-btn:hover {
    color: var(--dark);
}

.task-content {
  max-width: 800px;
  line-height: 1;

}
.orange-bullets {
  list-style-type: disc;
  font-size: 18px;
  line-height: 34px;
}

.orange-bullets li::marker {
  color: #DE7046;
}
.pink-bullets {
  list-style-type: disc;
  font-size: 18px;
  line-height: 34px;
}

.pink-bullets li::marker {
  color: #FF6381;
}

.task-content ul {
  margin: 0px 0 0rem 1.5rem;

 
}
li::marker {
  color: #DE7046;
}

.task-content li {
  margin-bottom: 0.3rem;
  color: --whiteColor;
  letter-spacing: 0.2px;
  font-weight: 500;
  margin: 0;
	
}
.blue-bullets {
  list-style-type: disc;
  color: #26BBC1;
}
.subtitle {
  font-size: 20px;
  line-height: 32px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 9px;
  font-weight: 500;
  max-width: 774px;
  margin-top: 18px;
}
.subtitle img {
    display: block;
}

/* === Hero CTA Row === */
@keyframes hero-cta-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
  height: 90px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #101010;
  color: #f7f7f7 !important;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition:
  background 0.22s ease,
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-cta-primary:hover {
  background: var(--primary);
  color: #f7f7f7 !important;
  transform: scale(1.06) translateY(-2px);
}
.hero-cta-primary:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.hero-cta-primary svg {
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-cta-primary:hover svg {
  transform: translateY(5px);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #101010 !important;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(16, 16, 16, 0.3);
  white-space: nowrap;
  transition:
    border-color 0.22s ease,
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-cta-secondary:hover {
  border-color: #101010;
  transform: scale(1.06) translateY(-2px);
}
.hero-cta-secondary:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.hero-cta-secondary svg {
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-cta-secondary:hover svg {
  transform: translateX(5px);
}

.link-with-border {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    margin: 0;
}
a.link-with-border:hover {
    color: var(--whiteColor);
}
a.link-with-border > span {
    border-bottom: 1.5px solid var(--whiteBg);
    line-height: 1.1rem;
}
a.link-with-border:hover {
    border-color: var(--whiteColor);
}
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.title span {
    display: block;
}
.section-header .title {
  font-size: 48px;
  line-height: 87px;
  font-weight: 700;
  letter-spacing: -1.4px;
  margin: 0;
}
.section-header .section-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.section-header p {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.3px;
    margin: 0;
    font-family: var(--font_inter_tight);
    font-weight: 500;
    width: 599px;
    flex: none;
}
.section-header h5 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.section-header h5 .with-border {
    border-bottom: 1px solid var(--whiteBg);
}
.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-subtitle .white-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: block;
    background: var(--whiteBg);
}
.section-subtitle .theme-btn {
    font-size: 14px;
    padding: 3px 20px;
}
.section-header-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 70px;
}
.section-header-2 h6 {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}
.section-title2 {
    font-size: 48px;
    line-height: 80px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -4.3px;
}
.section-header-2 .section-title2 {
    margin-bottom: 0px;
}

/* ===== # Pre Loader ===== */
.preloader-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1024;
    background: var(--darkBg);
    position: fixed;
    text-align: center;
}
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--whiteColor);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}



/* ===== # Hero ===== */
.hero-sec {
    padding-top: 36px;
    position: relative;
    overflow: hidden;
}

#hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-sec .container {
    position: relative;
    z-index: 1;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 80px 0 80px;
}
.logo {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    display: inline-flex;
    align-items: flex-start;
    text-transform: uppercase;
}

.logo img {
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 3px;
    flex: none;
}
.hero-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.location-and-time {
    font-size: 16px;
    line-height: 16px;
    display: block;
    font-weight: 600;
    opacity: 0.5;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--whiteColor);
  background: rgba(136, 136, 136, 0.1);
  border-radius: 100px;
  padding: 6px 18px 6px 18px;
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: avail-pulse 2.4s ease infinite;
}

@keyframes avail-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50%       { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.hero-linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    color: var(--whiteColor);
    opacity: 0.45;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.hero-linkedin-link:hover {
    opacity: 1;
    color: var(--whiteColor);
}

.cta-closing-sub {
    display: block;
    font-family: var(--font_inter);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    opacity: 0.45;
    margin-top: 8px;
}
.hero-title {
  font-size: 82px;
  line-height: 0.95;
  font-weight: 900;
  max-width: 800px;
  text-align: center;
}
.hero-title span {
    position: relative;
}
.with-circle-shape {
    position: relative;
}
.circle-primary-shape {
    position: absolute !important;
    background: var(--primary);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    right: -28px;
    bottom: 72px;
    z-index: -1;
}
.hero-title .white-circle-shape {
    position: absolute;
    bottom: 10px;
    margin-left: 15px;
}
.work-hero-sec .hero-sec-top {
    margin-bottom: 228px;
}
.work-hero-sec .hero-sec-bottom {
    align-items: flex-start;
}
.work-hero-sec .hero-sec-bottom .hero-sec-bottom-right {
    width: 422px;
}
.work-hero-sec .hero-sec-bottom .hero-sec-bottom-right .hero-sec-bottom-right-content-top {
    padding-right: 0;
    gap: 8px;
}
.work-hero-sec .hero-sec-bottom .hero-sec-bottom-left {
    margin-top: 120px;
}
.work-hero-sec .hero-sec-bottom .hero-sec-bottom-left .hero-title .circle-primary-shape {
    right: 150px;
}
.service-hero-sec .hero-sec-bottom .hero-sec-bottom-left .hero-title .circle-primary-shape {
    right: 6px;
}

.hero-sec-2 {
    padding-bottom: 100px;
}
.hero-sec-2 .hero-title {
    font-size: 84px;
    line-height: 80px;
    letter-spacing: -3px;
    font-weight: 700;
	height: 100px;
}
.hero-sec-2 .hero-title .circle-primary-shape {
    width: 70px;
    height: 70px;
    right: 40%;
    bottom: 30%;
}
.hero-sec-2 .hero-sec-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    padding-top: 148px;
    
}
.hero-sec-2 .hero-sec-bottom .hero-sec-bottom-left {
    flex: 0 0 auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-sec-2 .hero-sec-bottom .hero-sec-bottom-right {
    flex: 1;
    max-width: 560px;
}
.hero-sec-2 .hero-sec-bottom .hero-sec-bottom-right .hero-sec-bottom-right-content-top {
    padding-right: 0;
}
.hero-sec-2 .hero-sec-bottom .hero-sec-bottom-right .hero-sec-bottom-right-content-top p {
    font-size: 18px;
    line-height: 24px;
   font-family: var(--font_inter_tight);
    text-transform: none;
}
.erroe-hero-sec .hero-sec-top {
    margin-bottom: 0;
}

/* # Menu */
.main-menu ul {
    display: flex;
    align-items: center;
    gap: 46px;
}
.main-menu ul li a {
    font-size: 16px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    font-weight: 800;
    transition: .5s;
    -webkit-transition: .5s;
}
.main-menu ul li a:hover {
    color: var(--whiteColor);
}
.splite-text-anim span:nth-child(2) {
    color: var(--whiteColor);
}
.splite-text-anim {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 20px;
    gap: 6px;
    transition: .5s;
    -webkit-transition: .5s;
	font-weight: 600;
}
.splite-text-anim span {
    transition: .5s;
    -webkit-transition: .5s;
}
.splite-text-anim:hover span:first-child {
    margin-top: -26px;
}

/* # Popup Menu */
.popup-menu-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    gap: 100px;
    z-index: 1024;
    background: var(--darkBg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(400px);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -webkit-transition: .5s;
}
.popup-menu-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.popup-menu-wrap .popup-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 45px 0 45px;
}
.popup-menu-wrap .popup-menu-header .left {
    display: flex;
    align-items: center;
    gap: 80px;
}
.popup-menu-wrap .popup-menu ul {
    display: flex;
    flex-direction: column;
}
.popup-menu-wrap .popup-menu ul li a .count {
    display: block;
    font-size: 18px;
    line-height: 17px;
    font-weight: 600;
    flex: none;
    letter-spacing: normal;
}
.popup-menu-wrap .popup-menu ul li a {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 100px;
    line-height: 74px;
    font-weight: 700;
    letter-spacing: -4.5px;
    text-transform: uppercase;
    padding: 36px 36px 36px 40px;
    transition: .5s;
    -webkit-transition: .5s;
}
.popup-menu-wrap .popup-menu ul li.active a,
.popup-menu-wrap .popup-menu ul li a:hover {
    background: var(--whiteBg);
    color: var(--dark);
}
.popup-menu-wrap .popup-menu-footer {
    padding: 0 40px 35px 40px;
}
.popup-menu-wrap .popup-menu-footer .copyright p {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}
.popup-menu-wrap .popup-menu-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* # Hero Banner */
.hero-banner-sec {
    padding-top: 100px;
}
.full-image-box {
    overflow: hidden;
}
.hero-banner-sec .hero-banner-img-inner {
    overflow: hidden;
    height: 725px;
}
.hero-banner-sec .hero-banner-img {
    overflow: hidden;
    border-radius: 10px;
    transform: scale(1.2);
}
.hero-banner-sec .hero-banner-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-banner-sec .hero-banner-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hero-banner-sec .hero-banner-content p {
    margin: 0;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    width: 483px;
    flex: none;
}

/* # Service */
.service-sec {
    padding-bottom: 128px;
    padding-top:68px;
	
}
.blog-sec {
    padding-bottom: 150px;
}
.work-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
    column-gap: 50px;
	padding-top: 28px;
}
.work-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.work-box .hover_mouse {
    position: absolute;
    z-index: 9;
    margin-top: 30px;
    transition: .1s;
    -webkit-transition: .1s;
}
.work-box .hover_mouse a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    display: block;
    padding: 5px 16px;
    transform: scale(0);
    border-radius: 4px;
    background: var(--whiteBg);
    transition: .5s;
    -webkit-transition: .5s;
}
.work-box .hover_mouse.active a {
    transform: scale(1);
}
.work-box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.work-box .work-img {
    position: relative;
    overflow: hidden;
    height: 542px;
    border-radius: 4px;
}
.work-box .work-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    -webkit-transition: .5rs;
}
.work-box:hover .work-img img {
    transform: scale(1.05);
}
.work-box .work-bottom-content .work-number,
.work-box .work-bottom-content .work-cat,
.work-box .work-bottom-content .work-price {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    display: block;
    font-family: var(--font_inter_tight);
}
.work-box .work-bottom-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 30px;
    flex-wrap: wrap;
}
/* Service 2 */
.service-sec-2 {
    padding-top: 140px;
    padding-bottom: 150px;
}
.service-page .service-sec-2 {
    padding-bottom: 0;
}
.service-sec-2 .section-header {
    align-items: flex-end;
}
.service-sec-2 .section-header .left .title {
    margin-bottom: 10px;
}
.service-sec-2 .section-header .left p {
    max-width: 893px;
    width: 100%;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.4px;
    font-weight: 600;
}
.service-faq-wrap {
    max-width: 1150px;
    width: 100%;
    margin-left: auto;
    margin-bottom: 137px;
}
.service-faq-item {
    background: none;
    border-bottom: 1px solid rgba(208, 208, 208, 0.5);
}
.service-faq-item .accordion-header button {
    background: none;
    padding: 51px 64px 51px 0;
    color: var(--whiteColor);
    font-size: 30px;
    line-height: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-faq-item .accordion-header button:focus {
    outline: none;
    box-shadow: none !important;
}
.service-faq-item .accordion-header button::after {
    display: none;
}
.service-faq-item .accordion-header button img {
    display: block;
}
.service-faq-item .accordion-header button .accordion-plus-icon {
    margin-left: auto;
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    flex: none;
}
.service-faq-item .accordion-header button .accordion-plus-icon span {
    position: absolute;
    background: #0F172A;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    left: 0;
    top: 11px;
    transition: .5s;
    -webkit-transition: .5s;
}
.service-faq-item .accordion-header button .accordion-plus-icon span:nth-child(2) {
    top: 10px;
    transform: rotate(0deg);
    transform-origin: center;
}
.service-faq-item .accordion-header button.collapsed .accordion-plus-icon span:nth-child(2) {
    transform: rotate(90deg);
}
.service-faq-item .accordion-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 102px 51px 48px;
    gap: 218px;
}
.service-faq-item .accordion-body .accordion-content {
    margin-top: 22px;
}
.service-faq-item .accordion-body .accordion-content p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    letter-spacing: 0.2px;
    margin-bottom: 18px;
}
.service-faq-item .accordion-body .accordion-content .cast {
    margin-bottom: 28px;
}
.accordion-key-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 42px;
}
.accordion-key-features h5 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.1px;
    line-height: 30px;
    margin: 0;
}
.accordion-key-features ul li {
    font-size: 22px;
    line-height: 29px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    letter-spacing: 0.2px;
}
.service-faq-item .accordion-body .accordion-content-right {
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: flex-end;
    width: 280px;
    flex: none;
}
.service-faq-item .accordion-body .accordion-content-right .number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.service-faq-item .accordion-body .accordion-content-right .accordion-content-img {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    height: 314px;
    width: 100%;
}
.service-faq-item .accordion-body .accordion-content-right .accordion-content-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-list-wrap .service-no-accordion-faq-item:last-child {
    padding-bottom: 68px;
    border-bottom: none;
}
.service-list-wrap .service-no-accordion-faq-item:first-child {
    padding-top: 0;
}
.service-no-accordion-faq-item {
    padding-bottom: 52px;
    padding-top: 77px;
}
.service-no-accordion-faq-item .accordion-content {
    max-width: 502px;
    width: 100%;
}
.service-no-accordion-faq-item .accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 30px;
    line-height: 28px;
    margin: 0 0 50px;
    font-weight: 600;
    text-transform: uppercase;
}
.service-no-accordion-faq-item .accordion-header .number {
    display: block;
    margin-left: auto;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    flex: none;
}
.service-no-accordion-faq-item .accordion-content-bottom .theme-btn {
    margin-bottom: 5px;
}
.service-no-accordion-faq-item .accordion-content-bottom {
    display: flex;
    align-items: flex-end;
    gap: 75px;
}
.service-no-accordion-faq-item .accordion-body {
    padding-right: 0;
    padding-bottom: 0;
}
.service-ratings {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.service-ratings ul {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    color: #FFD700;
    justify-content: center;
}
.service-ratings span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}


/* # Work Details */
.work-service-detail-sec {
    padding: 80px 0;
}
.work-service-detail-sec .custom-row {
    justify-content: space-between;
}
.work-service-detail-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.work-service-detail-box h5 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}
.work-service-detail-box span {
    font-size: 18px;
    line-height: 28px;
    display: block;
    font-family: var(--font_inter_tight);
    text-transform: uppercase;
}

/* # Task List */
.task-sec {
    padding-top: 180px;
}
.task-sec .container {
    padding-left: 94px;
    padding-right: 94px;
}
.task-sec .task-lists {
    display: flex;
    flex-direction: column;
    gap: 90px;
}
.task-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 120px;
}
.task-label {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.task-label p {
    font-size: 18px;
    line-height: 26px;
    color: var(--whiteColor);
    max-width: 420px;
}
.task-box h5 .circle-shape {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    background: var(--primary);
    flex: none;
}

.img-pair-sec {
    padding-top: 98px;
}
.img-pair-sec .container {

}
.img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.img-pair-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-media-sec {
  padding: 40px 24px;
  position: relative;
}

.case-media-container {
  margin: 0 auto;
  max-width: 1353px;
}

.case-media-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  justify-items: center;
}

.phone-shot {
  width: 100%;
  max-width: 400px;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
	
 
}

.phone-shot img {
  width: 90%;
  display: block;
  border-radius: 18px;
	margin: auto;
}

@media (hover:hover) {
  .phone-shot:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Mobile Carousel */
@media (max-width: 768px) {

  .case-media-sec {
    padding: 72px 0 72px 24px;
  }

  .case-media-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 24px;
  }

  .phone-shot {
    min-width: 72%;
    max-width: 72%;
    scroll-snap-align: center;
    transform: scale(0.96);
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

}

/* Hide Scrollbar */
.case-media-wrapper::-webkit-scrollbar {
  display: none;
}

.case-media-wrapper {
  scrollbar-width: none;
}

.task-box .task-content p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.2px;
    font-weight: 500;
    margin: 0;
}
.task-box .task-content {
    width: 644px;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 39px;
	padding-bottom: 44px;
}
.task-box h5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -2px;
    font-weight: 800;
}
.task-num {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -4px;
    font-weight: 800;
    opacity: 0.25;
    font-family: var(--font-title);
}

/* # Next Project */
.next-project-sec {
    padding-top: 220px;
}
.next-project-sec .custom-row {
    justify-content: space-between;
}
.next-project-sec .section-header .title {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -3.3px;
    margin: 0 0 15px;
}
.next-project-sec .work-box {
    max-width: 650px;
    width: 100%;
    flex: none;
}
.next-project-sec .section-header p {
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: -0.4px;
}


/* Service Funfacts */
.service-funfacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-funfact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.service-funfact-box .counter {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    line-height: 28px;
}
.service-funfact-box p {
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}


/* # About */
.about-sec .container {
    padding-right: 74px;
    padding-top: 80px;
}
.about-sec .section-header {
    align-items: flex-end;
}
.about-sec .section-header .title {
    margin-bottom: 20px;
}
.about-sec .section-header p {
    text-transform: uppercase;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.4px;
    
}
.about-sec .section-header p .border-bottom {
    border-bottom: 1.5px solid var(--whiteBg);
}
.about-sec .about-left-img {
    flex: none;
    width: 538px;
    height: 650px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.about-sec .custom-row {
	gap: 96px;
    max-width: 800px;
}
.about-sec .about-left-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-sec .about-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.about-sec .about-bottom .est-date {
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    line-height: 20px;
}
.about-sec .about-content .about-title {
    font-size: 20px;
    line-height: 27px;
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}
.about-sec .about-content p {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.2px;
    margin: 0;
    font-weight: 500;
}
.about-awards-wrap {
    padding-top: 30px;
    padding-bottom: 40px;
}
.about-awards-wrap h6 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -3%;
    font-weight: 600;
    margin: 0 0 24px;
}
.about-awards-wrap h6 span {
    border-bottom: 1.5px solid var(--whiteBg);
}
.awards-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.award-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    letter-spacing: -3%;
    line-height: 20px;
    font-weight: 700;
    padding: 19px 8px;
    border-bottom: 1px solid var(--whiteBg);
    transition: .5s;
    -webkit-transition: .5s;
}
.award-box .award-year {
    display: flex;
    align-items: center;
    gap: 119px;
}
.award-box .award-year img {
    display: block;
    transition: .5s;
    -webkit-transition: .5s;
}
.award-box .award-year span {
    display: block;
    min-width: 73px;
    text-align: right;
}
.award-box.active,
.award-box:hover {
    background: var(--whiteBg);
    color: var(--dark);
}
.award-box.active .award-year img,
.award-box:hover .award-year img {
    filter: invert(1);
}

/* # Client Logos */
.client-sec .client-logo-slide-wrap {
    overflow: hidden;
}
.client-logo-slide {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 112px;
    transform: translateX(0);
    animation: clientLogoSlide 25s infinite linear;
}
.client-logo-slide img {
    display: block;
}

/* # Process */
.process-sec {
    padding-top: 200px;
    padding-bottom: 150px;
}
.process-sec .process-img {
    flex: none;
    width: 675px;
    height: 708px;
    position: relative;
    overflow: hidden;
}
.process-sec .custom-row {
    gap: 81px;
}
.process-sec .process-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit:scale-down;
}
.process-lists {
    display: flex;
    flex-direction: column;
}
.process-lists .process-box:first-child {
    padding-top: 28px;
}
.process-lists .process-box:last-child {
    border-bottom: none;
}
.process-box {
    border-bottom: 1px solid #A3A3A366;
    padding-left: 20px;
    padding-bottom: 49px;
    padding-top: 32px;
}
.process-box .number {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 13px;
    display: block;
}
.process-box .process-box-content {
    position: relative;
    Padding-top: 28px;
}
.process-box .process-box-content img {
    position: absolute;
    right: 12px;
    top: 7px;
}
.process-box .process-box-content h4 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.process-box .process-box-content p {
    font-size: 20px;
     line-height: 28px;
    margin: 0 0 24px;
    letter-spacing: 0.2px;
    font-family: var(--font_inter_tight);
    font-weight: 500;
}
.process-box .process-box-content ul {
    display: flex;
    flex-direction: column;
    padding-left: 4px;
}
.process-box .process-box-content ul li {
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

/* # Banner */
.banner-sec .banner-img {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}
.banner-sec .banner-img-inner {
    overflow: hidden;
	border-radius: 8px;
	margin-bottom: 16px;
	margin-top: 60px;
}
.banner-sec .banner-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-caption {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.45;
    margin-top: 12px;
}
/* # Motivation */
.motivation-sec {
    padding-top: 140px;
}
.motivation-sec .container {
    padding-left: 70px;
    padding-right: 70px;
}
.motivation-sec .motivation-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 99px;
}
.motivation-sec .custom-row {
    justify-content: space-between;
    gap: 218px;
}
.motivation-sec .motivation-left-content {
    flex: none;
    width: 418px;
}
.motivation-sec .motivation-left-content .section-header-2 {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.motivation-sec .motivation-left-content .section-header-2 .section-title2 {
    margin: 0;
}
.motivation-sec .motivation-left-content .section-header-2 h6 {
    font-size: 20px;
    margin: 0;
}
.motivation-sec .motivation-left-content .motivation-bottom-text {
    display: block;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
.motivation-sec .motivation-left-content .section-header-2 h6 .with-border {
    border-bottom: 1px solid var(--whiteBg);
}
.motivation-sec .motivation-right-content .motivation-right-content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}
.motivation-sec .motivation-right-content .signature {
    display: block;
    margin-left: auto;
    margin-right: 41px;
    max-width: 312px;
    margin-bottom: 57px;
}
.motivation-sec .motivation-right-content .motivation-right-content-box p {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.1px;
    font-weight: 500;
}
.motivation-quote {
    padding-right: 30px;
    padding-bottom: 40px;
}
.motivation-quote .motivation-name,
.motivation-quote p {
    margin: 0;
    font-size: 22px;
    line-height: 29px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-family: var(--font_inter_tight);
}
.motivation-quote .motivation-name {
    display: block;
    text-align: center;
}


/* # Experience */
.experience-sec {
    padding-top: 100px;
    padding-bottom: 140px;
}
.experience-sec .section-header {
    align-items: flex-end;
    z-index: 9;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 69px;
    background: var(--darkBg);
}
.experience-sec .section-header .title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 10px;
}
.experience-sec .section-header p {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
}
.experience-lists {
    max-width: 839px;
    width: 100%;
    margin-left: auto;
}
.experience-lists .experience-box:last-child {
    margin-bottom: 0;
}
.experience-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 117px;
    margin-bottom: 65px;
}
.experience-box .left {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}
.experience-box .left img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex: none;
}
.experience-box .experience-date {
    flex: none;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
}
.experience-box .experience-content {
    flex: 1;
}
.experience-box .experience-content h5 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -0.6px;
    margin: 0 0 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.experience-box .experience-content p {
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    max-width: 448px;
}
.experience-box .experience-content .designation {
    display: block;
    font-size: 22px;
    line-height: 20px;
    letter-spacing: -0.2px;
    margin: 0 0 20px;
    font-weight: 600;
    text-transform: uppercase;
}
/* # Favourite Stack */
.favourite-stack-sec {
    padding-top: 0;
}
.favourite-stack-sec .section-header .left {
    max-width: 432px;
    width: 100%;
    flex: none;
}

/* # Testimonial */
.testimonial-sec {
    overflow: hidden;
    padding-bottom: 150px;
}
.testimonial-sec .section-header-2 {
    margin-bottom: 172px;
}
.testimonial-slide {
    display: flex;
    flex-wrap: nowrap;
    gap: 68px;
    transform: translateX(0);
    animation: testimonialSlider1 30s infinite linear;
}
.testimonial-slide-2 {
    margin-top: 110px;
    animation: testimonialSlider2 40s infinite linear;
    justify-content: flex-end;
}
.testimonial-box {
    flex: none;
    width: 509px;
}
.testimonial-box .testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.testimonial-box .testimonial-header .date {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.testimonial-box .testimonial-body {
    margin-bottom: 40px;
}
.testimonial-box .testimonial-body p {
    margin: 0;
    line-height: 28px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}
.testimonial-box .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 19px;
}
.testimonial-box .testimonial-footer img {
    display: block;
    flex: none;
    border-radius: 4px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.testimonial-box .testimonial-footer .content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.testimonial-box .testimonial-footer .content h4 {
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.testimonial-box .testimonial-footer .content .designation {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}


/* # Pricing */
.pricing-sec {
    padding-top: 110px;
}
.pricing-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
	padding-bottom: 60px;
}
.pricing-box {
    padding: 10px 27px 34px 10px;
}
.pricing-featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 44px 40px;
    background: var(--dark);
    color: var(--darkBg);
    border-radius: 22px;
}
.pricing-featured-left {
    flex: none;
}
.pricing-featured-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    color: var(--darkBg);
}
.pricing-featured-stat {
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
    font-family: var(--font_inter);
    color: var(--darkBg);
    margin: 0 0 12px;
}
.pricing-featured-desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.6;
    color: var(--darkBg);
    max-width: 520px;
}
.pricing-box .pricing-package-type .section-subtitle .theme-btn {
    letter-spacing: 3px;
    font-size: 14px;
    line-height: 20px;
    padding: 3px 20px;
}
.pricing-box .pricing-package-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 29px;
}
.pricing-box .price {
   font-size: 28px;
   line-height: 34px;
   margin: 0 0 34px;
   font-weight: 800;
   font-family: var(--font_inter);
   display: block;
   padding-top: 12px;
}
.pricing-box .price span {
    display: block;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-top: 4px;
    opacity: 0.7;
}
.pricing-box .pricing-body p {
    margin: 0 0 36px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.pricing-box .pricing-body .pricing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.pricing-box .pricing-body .pricing-meta span {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: var(--font_inter_tight);
    text-transform: uppercase;
    gap: 10px;
}
.pricing-box .pricing-body .pricing-meta span img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: none;
}
.pricing-box .pricing-body .theme-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 20px;
    padding: 13px 15px;
    font-family: var(--font_inter_tight);
    margin-bottom: 10px;
}
.pricing-box .pricing-body .theme-btn img {
    display: block;
    width: 14px;
    filter: invert(1);
}
.pricing-box .pricing-body .discuse {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 46px;
}
.pricing-box .pricing-body .discuse a {
    border-bottom: 1px solid var(--whiteBg);
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.pricing-box .pricing-body .discuse a:hover {
    color: var(--whiteColor);
}
.pricing-box .pricing-body ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-left: 4px;
}
.pricing-box .pricing-body ul li {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    gap: 15px;
}
.pricing-box .pricing-body ul li img {
    width: 14px;
    height: 14px;
    display: block;
    flex: none;
}


/* # Blog Details */
.blog-detail-page .hero-sec-2 .hero-sec-bottom .hero-sec-bottom-right {
    width: 524px;
}
.blog-detail-page .hero-sec-2 .hero-title .circle-primary-shape {
    /* right: 26px;
    bottom: 31px; */
    right: 4%;
    bottom: 13%;
}
.blog-detail-sec {
    padding-bottom: 150px;
}
.blog-detail-sec .custom-row {
    gap: 100px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box > img {
    margin-bottom: 18px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box p {
    margin: 0;
    font-size: 22px;
    line-height: 29px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta {
    display: flex;
    align-items: center;
    gap: 59px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box .blog-meta > * {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box h3 {
    margin: 0;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 600;
    text-transform: uppercase;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box ul {
    margin-bottom: 7px;
}
.blog-detail-sec .blog-detail-content-wrap .blog-content-box ul li {
    font-size: 22px;
    line-height: 36px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    letter-spacing: 0.1px;
}
.blog-detail-sec .blog-detail-content-wrap img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 460px;
}
.blog-detail-sec .blog-detail-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-bottom: 52px;
}

/* # Comment */
.comment-lists-wrap {
    margin-bottom: 52px;
}
.comment-form-wrap .title-with-circle,
.comment-lists-wrap .title-with-circle {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -0.1px;
}
.comment-lists {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comment-box {
    display: flex;
    align-items: center;
    padding: 37px 26px;
    border-radius: 4px;
    gap: 30px;
    position: relative;
    background: rgba(255,255,255,0.1);
}
.comment-box .comment-body .name {
    display: block;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.comment-box .comment-body .date {
    display: block;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.comment-box .comment-body .reply-btn img {
    display: block;
    width: 16px;
}
.comment-box .comment-body .reply-btn {
    position: absolute;
    right: 26px;
    top: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 5px 8px;
}
.comment-box .comment-body p {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.2px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
    margin: 10px 0 0 0;
}
.comment-box > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* # Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.comment-form .form-col-2 {
    display: flex;
    gap: 28px;
}
.comment-form .input-group textarea,
.comment-form .input-group input {
    width: 100%;
    border: none;
    background: var(--whiteBg);
    color: var(--dark);
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 24px 20px;
}
.comment-form .input-group textarea:focus,
.comment-form .input-group input:focus {
    outline: none;
    box-shadow: none;
}
.comment-form .input-group textarea {
    height: 176px;
}
.comment-form button {
    border: none;
    padding: 12px 15px;
    letter-spacing: 3px;
    font-size: 14px;
    line-height: 20px;
}

.blog-sidebar {
    width: 492px;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sidebar-widget {
    background: rgba(255,255,255,0.1);
    gap: 40px;
    border-radius: 4px;
    padding: 40px;
}
.sidebar-widget-search form {
    position: relative;
}
.sidebar-widget-search form input::placeholder {
    color: #00000099;
}
.sidebar-widget-search form input {
    width: 100%;
    background: var(--whiteBg);
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    border: none;
    padding: 17px 20px;
}
.sidebar-widget-search form input:focus {
    outline: none;
    box-shadow: none;
}
.sidebar-widget-search form button {
    position: absolute;
    right: 20px;
    top: 8px;
    border: none;
    background: var(--primary);
    color: var(--dark);
    width: 42px;
    height: calc(100% - 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    border-radius: 4px;
    cursor: pointer;
    font-size: 22px;
}
.sidebar-widget {
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.title-with-circle,
.sidebar-widget h4 {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 12px;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    margin: 0;
}
.title-with-circle .circle-shape,
.sidebar-widget h4 .circle-shape {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary);
    flex: none;
}
.sidebar-widget-recent-comments ul li:first-child,
.sidebar-widget-categories ul li:first-child,
.sidebar-widget-recent-post ul li:first-child {
    padding-top: 0;
}
.sidebar-widget-categories ul li:last-child,
.sidebar-widget-recent-post ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.sidebar-widget-recent-comments ul li,
.sidebar-widget-categories ul li,
.sidebar-widget-recent-post ul li {
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 24px;
    padding-top: 24px;
}
.sidebar-widget-recent-comments ul li a,
.sidebar-widget-categories ul li a,
.sidebar-widget-recent-post ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.2px;
    transition: .5s;
    -webkit-transition: .5s;
}
.sidebar-widget-recent-comments ul li a:hover,
.sidebar-widget-categories ul li a:hover,
.sidebar-widget-recent-post ul li a:hover {
    color: var(--whiteColor);
    color: var(--primary);
}
.sidebar-widget-categories ul li {
    padding-bottom: 12px;
    padding-top: 20px;
}
.sidebar-widget-categories ul li a:hover {
    padding-left: 10px;
}
.sidebar-widget-recent-comments ul li {
    padding-bottom: 15px;
    padding-top: 28px;
}
.sidebar-widget-recent-comments ul li a {
    flex-direction: column;
    align-items: flex-start;
}
.sidebar-widget-tags ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 26px;
}
.sidebar-widget-tags ul li a {
    display: block;
    background: var(--whiteBg);
    color: var(--dark);
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    padding: 6px 24px;
    border-radius: 4px;
    transition: .5s;
    -webkit-transition: .5s;
}
.sidebar-widget-tags ul li a:hover {
    background: var(--primary);
}


/* # Faq */
.faq-sec {
	border: none !important;
}
.faq-sec .section-header {
    align-items: flex-end;
    padding-bottom: 62px;
	
}
.faq-list-wrap {
    width: 100%;
	padding-bottom: 100px;
	
}
.faq-sec .section-header .title {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 15px;
	
}
.faq-sec .section-header .left p {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.4px;
		
}
.faq-item .accordion-header button{
    padding: 38px 35px 38px 38px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
		
}
.faq-item .accordion-body {
    padding: 0 198px 26px 38px;
}
.faq-item .accordion-body .accordion-content {
    margin-top: 0;
}
.faq-item .accordion-body .accordion-content p {
    margin-bottom: 0;
}

/* # CTA */
.cta-sec .custom-row {
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.cta-sec .cta-content {
    text-align: center;
	margin: auto;
}
.cta-sec .cta-content .section-header-2 {
    margin-bottom: 46px;
}
.cta-sec .cta-content .section-header-2 .section-title2 {
    font-size: 38px;
    line-height: 100px;
    font-weight: 700;
    letter-spacing: -1.0px;

}
.cta-sec .cta-content .section-header-2 h6 {
   font-size: 20px;
   margin: 0px;
   line-height: 26px;
	
}
.cta-sec .social-links-text {
    margin-top: 80px;
}
.social-links-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.social-links-text li a {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    position: relative;
    transition: .5s;
    -webkit-transition: .5s;
}
.social-links-text li a img {
    display: block;
    width: 11px;
}
.social-links-text li a:hover {
    color: var(--whiteColor);
}
.social-links-text li a:hover::before {
    background: var(--whiteColor);
}
.social-links-text li a > span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: 1px;
    background: var(--whiteBg);
}
.social-links-text li a span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cta-sec .cta-img {
    width: 373px;
    height: 491px;
    flex: none;
    border-radius: 4px;
}
/* # CTA 2 */
.cta-closing {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--whiteColor);
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 560px;
  padding-top: 38px;
  margin: 0;
}

.cs-section-header {

}

.cs-section-title {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 1.5vw, 1.65rem);
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.cs-section-sub {
  font-family: var(--font_inter);
  font-size: 0.9375rem;
  color: var(--whiteColor);
  opacity: 0.5;
  margin: 0;
}

.subtitle.differentiation {
  font-style: italic;
  opacity: 0.65;
  border-left: 2px solid currentColor;
  padding-left: 16px;
  margin-top: 8px;
}

.cta-sec-2 .custom-row {
    justify-content: space-between;
    padding-top: 142px;
}
.cta-widget {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cta-widget h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
    margin: 0;
    font-family: var(--font_inter_tight);
}
.cta-link-widget ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.cta-phone-widget ul,
.cta-location-widget ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cta-phone-widget ul li,
.cta-location-widget ul li {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: var(--font_inter_tight);
}
.cta-phone-widget ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-phone-widget ul li a:hover {
    color: var(--whiteColor);
}
.cta-phone-widget ul li span {
    min-width: 39px;

}


/* # Contact */
.contact-page .service-hero-sec .hero-sec-bottom .hero-sec-bottom-left .hero-title .circle-primary-shape {
    right: 62px;
    bottom: 79px;
}
.contact-sec {
    padding-top: 54px;
    padding-bottom: 95px;
}
.contact-sec .container {
    padding-right: 120px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.contact-form .form-col-2 {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    
}
.contact-form .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-form .input-group label .circle-shape {
    display: block;
}
.contact-form .input-group label {
    display: flex;
    width: 100%;
    font-size: 22px;
    line-height: 27px;
    font-family: var(--font_inter_tight);
}
.contact-form .input-group select::placeholder,
.contact-form .input-group input::placeholder,
.contact-form .input-group textarea::placeholder {
    color:#929292;
}
.contact-form .input-group select,
.contact-form .input-group input,
.contact-form .input-group textarea {
    width: 100%;
    border: none;
    border-radius: 4px !important;
    background: rgba(185, 185, 185, 0.1);
    font-size: 18px;
	color: #232222;
    line-height: 24px;
    font-weight: 500;
    padding: 26px 20px;
    margin: 0 !important;
    color: var(--whiteColor);
}
.contact-form .input-group select:focus,
.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus {
    outline: none;
    box-shadow: none;
}
.contact-form .input-group textarea {
    height: 320px;
}
.contact-form .input-group button {
    border: none;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 20px;
    font-family: var(--font_inter_tight);
    padding: 23px 20px;
}
.contact-form .input-group select {
    appearance: none;
    background-image: url(../imgs/select-icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) 34px;
}

/* # 404 */
.error-sec {
    padding-top: 128px;
    padding-bottom: 200px;
}
.error-sec .error-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 458px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
.error-sec .error-content h1 {
    font-size: 84px;
    line-height: 80px;
    letter-spacing: -3px;
    margin: 0 0 12px;
    font-weight: 700;
}
.error-sec .error-content .theme-btn {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 20px;
}
.error-sec .error-content p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.3px;
    font-weight: 500;
    margin-bottom: 30px;
}


/* === Page Transition Overlay === */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--darkBg, #f7f7f7);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
#page-transition.is-active {
  opacity: 1;
  pointer-events: all;
}

/* # Footer */
.footer-sec {
  padding-top: 48px;
  padding-bottom: 40px;
}
.error-footer-sec {
  padding-top: 0;
}
.footer-sec .container {
  padding-left: 50px;
  padding-right: 50px;
}

/* Footer inner — brand / nav / social row */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--whiteColor);
}
.footer-tagline {
  font-size: 12px;
  color: var(--whiteColor);
  opacity: 0.45;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--whiteColor);
  opacity: 0.55;
  transition: opacity 0.18s ease;
}
.footer-nav a:hover,
.footer-nav a.is-current {
  opacity: 1;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--whiteColor);
  opacity: 0.55;
  transition: opacity 0.18s ease;
}
.footer-links a:hover {
  opacity: 1;
}

/* Copyright row */
.footer-sec .copyright-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 32px;
}
.footer-sec .copyright-wrap p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: var(--whiteColor);
  opacity: 0.2;
}
.footer-credit {
  opacity: 0.35 !important;
}



@keyframes clientLogoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1473px);
    }
}
@keyframes testimonialSlider1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-3462px);
    }
}
@keyframes testimonialSlider2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(3462px);
    }
}
/* Back To Top Button */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: none;

  background: #111;
  color: white;
  font-size: 18px;

  cursor: pointer;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 999;
}

/* Visible state */
#backToTop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover desktop polish */
#backToTop:hover {
  transform: translateY(-2px);
}

/* 👉 Mobile: esconder completamente */
@media (max-width: 768px) {
  #backToTop {
    display: none;
  }
}
.design-decisions {
  padding: 120px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}


.section-intro {
  max-width: 640px;
  color: var(--whiteColor);
  margin-bottom: 64px;
  line-height: 1.6;
}

.section-intro + .section-intro {
  margin-top: -48px;
  margin-bottom: 32px;
}

.section-decisions {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-decisions strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--font_inter);
  font-weight: 600;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 10px;
}

.section-decisions strong:first-child {
  margin-top: 0;
}

.section-decisions p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

.section-decisions ul.pink-bullets {
  margin-bottom: 0;
}

.decisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.decision-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(128, 128, 128, 0.1);
  transition: all 0.3s ease;
}

.decision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.decision-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.decision-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.decision-card p {
  color: var(--whiteColor);
  line-height: 1.6;
  font-size: 15px;
}

/* ===== Portugrow page overrides ===== */
.portugrow-page .orange-bullets li::marker {
  color: #80A651;
}
.portugrow-page .decision-card .icon img {
  filter: invert(60%) sepia(40%) saturate(500%) hue-rotate(50deg) brightness(90%);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 1024px) {
  .decisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .decisions-grid {
    grid-template-columns: 1fr;
  }

  .design-decisions {
    padding: 80px 0;
  }
}

.availability {
  display: flex;
  justify-content: center;
}

/* Badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #0F172A;
  padding: 10px 22px 10px 22px;
  border-radius: 55px;
}

/* Text */
.status-text {
  font-size: 14px;
  color: #0F172A;
  font-weight: 600;
  font-family: var(--font_inter);
}

/* Dot base */
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #48E3AC;
  position: relative;
}

/* Pulse ring */
.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #48E3AC;
  opacity: 0.6;
  animation: pulse 1.8s ease-out infinite;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.4);
    opacity: 0;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
/* =========================
   Form Container
========================= */

form {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

/* =========================
   Labels
========================= */

form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--whiteColor);
}

/* =========================
   Inputs + Textarea
========================= */

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;

  font-size: 15px;
  font-family: inherit;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);

  background: rgba(255,255,255,0.9);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

/* Textarea specifics */

form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Hover subtle */

form input:hover,
form textarea:hover {
  border-color: rgba(0,0,0,0.25);
}

/* Focus premium */

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #111;

  box-shadow:
    0 0 0 3px rgba(0,0,0,0.05);

  transform: translateY(-1px);
}

/* =========================
   Button
========================= */

form button {
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  background:#28BBC1;
  color:#fff;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

/* Hover lift */

form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* Click */

form button:active {
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Disabled */

form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* =========================
   Smooth entrance animation
========================= */

form label {
  opacity: 0;
  transform: translateY(8px);
  animation: formFade 0.5s ease forwards;
}

form label:nth-child(1) { animation-delay: 0.05s; }
form label:nth-child(2) { animation-delay: 0.1s; }
form button { 
  opacity: 0;
  transform: translateY(8px);
  animation: formFade 0.5s ease forwards;
  animation-delay: 0.15s;
}

@keyframes formFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Mobile polish
========================= */

@media (max-width: 640px) {

  form {
    gap: 18px;
	padding-left: 0px;
  }

  form input,
  form textarea {
    font-size: 16px; /* prevents iOS zoom */
  }

}


.logo2 {
  color: var(--whiteColor);
  display: block;
  width: clamp(200px, 32vw, 360px);
}

/* ===== Grain Overlay ===== */
/*
 * SVG feTurbulence generates procedural fractal noise — zero external assets.
 * Applied as a fixed pseudo-element so it sits above all content without
 * affecting layout or blocking pointer events.
 *
 * Tweaking:
 *   opacity 0.02 → nearly invisible  |  0.06 → just noticeable on light bg
 *   baseFrequency 0.65 → coarser grain  |  0.85 → finer grain
 *   numOctaves 3 → faster render  |  5 → more natural texture
 */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-repeat: repeat;
}

.hero-avatar {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Avatar Tooltip ===== */
.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.avatar-tooltip {
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out, transform 200ms ease-out;
  white-space: nowrap;
  z-index: 100;
}

.avatar-tooltip.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.avatar-tooltip-inner {
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.avatar-tooltip-name {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.avatar-tooltip-role {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.55;
  line-height: 1.3;
}

.avatar-tooltip-arrow {
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: #111;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.hero-video {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-about-link {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--whiteColor);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-about-link:hover {
  opacity: 1;
  color: var(--whiteColor);
}

/* ===== CTA Button ===== */
.cta-btn {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 8px;
  border: 2px solid black;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cta-btn:hover {
  background-color: var(--whiteColor);
}
.cta-btn:hover .splite-text-anim,
.cta-btn:hover .splite-text-anim span {
  color: var(--darkBg);
}
.cta-btn.focus {
  background: black;
}
.cta-btn.focus .splite-text-anim,
.cta-btn.focus .splite-text-anim span {
  color: white;
}

.task-box h5 {
  font-family: var(--font-title);
}

/* ===== Home Hero Title ===== */
.home-page .hero-title {
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: calc(68px + 0.68vw);
  line-height: 1em;
  max-width: 800px;
  margin: 16px auto 0;
}

/* ===== Case Study Cards ===== */
.cs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Card theme tokens (default: connect) ---- */
.cs-card {
  --cs-bg:         #131313;
  --cs-headline:   #ffffff;
  --cs-muted:      rgba(255, 255, 255, 0.38);
  --cs-text:       rgba(255, 255, 255, 0.42);
  --cs-border:     rgba(255, 255, 255, 0.12);
  --cs-divider:    rgba(255, 255, 255, 0.08);
  --cs-cta-bg:     #FD674A;
  --cs-cta-text:   #ffffff;
  --cs-cta-hover:  #FD674A;

  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 40px;
  overflow: hidden;
  min-height: 480px;
  margin-top: 28px;
}

.cs-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cs-cta {
  position: relative;
  z-index: 2;
}

/* ---- Wallet: midnight blue ---- */
.cs-card[data-theme="wallet"] {
  --cs-bg:         #262535;
  --cs-headline:   #ffffff;
  --cs-muted:      rgba(168, 194, 255, 0.42);
  --cs-text:       rgba(168, 194, 255, 0.42);
  --cs-border:     rgba(168, 194, 255, 0.14);
  --cs-divider:    rgba(168, 194, 255, 0.08);
  --cs-cta-bg:     #FE6482;
  --cs-cta-text:   #ffffff;
  --cs-cta-hover:  #FE6482;
}

/* ---- Mesa: warm espresso ---- */
.cs-card[data-theme="mesa"] {
  --cs-bg:         #F0DED8;
  --cs-headline:   #1F2933;
  --cs-muted:       #130C04;
  --cs-text:        #130C04;
  --cs-border:     rgba(255, 207, 138, 0.14);
  --cs-divider:    rgba(255, 207, 138, 0.08);
  --cs-cta-bg:     #130C04;
  --cs-cta-text:   #F0DED8;
  --cs-cta-hover:  #130C04;
}

/* ---- Portugrow: deep forest green ---- */
.cs-card[data-theme="portugrow"] {
  --cs-bg:         #e8f0e4;
  --cs-headline:   #1a2b1a;
  --cs-muted:      rgba(26, 43, 26, 0.5);
  --cs-text:       rgba(26, 43, 26, 0.65);
  --cs-border:     rgba(26, 43, 26, 0.1);
  --cs-divider:    rgba(26, 43, 26, 0.07);
  --cs-cta-bg:     #2d5016;
  --cs-cta-text:   #ffffff;
  --cs-cta-hover:  #2d5016;
}

/* Image placeholder — case study page banners */
.cs-img-placeholder {
  background: #e4e4e4;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-placeholder-label {
  font-family: var(--font_inter);
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.02em;
}

/* Image placeholder — index card right panel */
.cs-img-placeholder-panel {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: rgba(92, 155, 74, 0.12);
}

/* Left panel */
.cs-card-left {
  background: var(--cs-bg);
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.cs-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cs-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cs-muted);
  margin-bottom: 20px;
}

.cs-headline {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cs-headline);
  margin-bottom: 14px;
  max-width: 400px;
}

.cs-sub {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cs-text);
  margin-bottom: 24px;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.cs-tag {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  color: var(--cs-text);
  border: 1px solid var(--cs-border);
  border-radius: 100px;
  padding: 4px 11px;
  letter-spacing: 0.01em;
}

.cs-divider {
  border: none;
  border-top: 1px solid var(--cs-divider);
  margin-bottom: 24px;
}

.cs-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  flex: 1;
}

.cs-bullets li {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 400;
  color: var(--cs-text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.cs-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.cs-metrics {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-bottom: 40px;
  flex: 1;
}

.cs-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  max-width: 160px;
  padding: 20px;
}

.cs-metric:first-child {
  padding-left: 0;
}

.cs-metric:last-child {
  border-right: none;
}

.cs-metric-num {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--cs-headline);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cs-metric-label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 400;
  color: var(--cs-text);
  line-height: 1.4;
}

.cs-metric::before {
  content: none;
}

.cs-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--cs-cta-text);
  background: var(--cs-cta-bg);
  border-radius: 8px;
  padding: 11px 22px;
  text-decoration: none;
  align-self: flex-start;
  letter-spacing: -0.01em;
  transition: transform 220ms ease-out, background 220ms ease-out;
}

.cs-cta:hover {
  transform: translateY(-2px);
  background: var(--cs-cta-hover);
  color: var(--cs-cta-text);
}

/* Right — light */
.cs-card-right {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cs-card-right-content {
  height: 100%;
  position: relative;
}

.cs-right-header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.cs-label-right {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 4px 10px;
}

.cs-right-title {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 4px 10px;
}

.cs-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease-out;
}

@media (hover: hover) {
  .cs-card:hover .cs-img {
    transform: scale(1.06);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cs-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .cs-card-right {
    min-height: 280px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .cs-card-left {
    padding: 32px 24px;
  }

  .cs-card-right {
    min-height: 220px;
  }

  .cs-label,
  .cs-metrics,
  .cs-bullets {
    display: none;
  }

  .cs-cta {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== Logo Carousel ===== */
.logo-carousel-sec {
  padding: 56px 0;
  overflow: hidden;
  display: none;
}

.logo-carousel-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
  will-change: transform;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

.logo-carousel-item {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whiteColor);
  opacity: 0.45;
  white-space: nowrap;
  padding: 0 48px;
  transition: opacity 250ms ease;
  cursor: default;
  /* dot separator after each item */
  position: relative;
}

.logo-carousel-item::after {
  content: '·';
  position: absolute;
  right: -4px;
  opacity: 0.25;
}

.logo-carousel-item:hover {
  opacity: 1;
}

@keyframes logo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause when section is off-screen (driven by JS class) */
.logo-carousel-sec.is-paused .logo-carousel-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: auto;
  }
  .logo-carousel-item::after {
    display: none;
  }
}

/* ===== KPI Stats Section ===== */
.kpi-section {
  padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 7vw, 80px);
}

.kpi-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.kpi-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: clamp(24px, 3vw, 40px) clamp(32px, 5vw, 64px);
  flex: 1;
  min-width: 180px;
  max-width: 300px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: filter 0.3s ease;
}

.kpi-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 20%, rgba(40, 187, 193, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.kpi-block.is-visible:hover::before {
  opacity: 1;
}

.kpi-block.is-visible:hover {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.04);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.kpi-block.is-visible {
  animation: kpi-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.kpi-block.is-visible:nth-child(2) {
  animation-delay: 0.12s;
}

.kpi-block.is-visible:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes kpi-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Divider line between blocks */
.kpi-block + .kpi-block::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36%;
  width: 1px;
  background: rgba(40, 187, 193, 0.18);
}

.kpi-number {
  display: block;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--whiteColor);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.kpi-label {
  display: block;
  font-family: var(--font_inter);
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  line-height: 1.5;
  color: var(--paragraph);
  opacity: 0.45;
  max-width: 148px;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .kpi-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .kpi-block {
    max-width: 100%;
    width: 100%;
    padding: 24px 16px;
  }

  .kpi-block + .kpi-block::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kpi-block {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ===== Testimonials ===== */

.testimonials-sec {
  padding: 80px 0 80px;
  background: var(--darkBg);
}

.testimonials-header {
  margin-bottom: 36px;
}

.testimonials-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, 0.4);
  display: block;
  margin-bottom: 10px;
}

.testimonials-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonial-deco-quote {
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: bold;
  line-height: 1;
  color: #101010;
  opacity: 0.12;
  user-select: none;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--font_inter);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(16, 16, 16, 0.65);
  margin: 0;
  quotes: none;
  padding-top: 48px;
}

.testimonial-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 16, 16, 0.07);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.08);
  color: #101010;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-family: var(--font-title);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.testimonial-title {
  font-family: var(--font_inter);
  font-size: 0.8125rem;
  color: rgba(16, 16, 16, 0.45);
  line-height: 1.4;
}

.testimonial-context {
  font-family: var(--font_inter);
  font-size: 0.6875rem;
  color: rgba(16, 16, 16, 0.3);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonials-sec {
    padding: 60px 0 60px;
  }
  .testimonial-card {
    padding: 32px 28px;
  }
  .testimonial-deco-quote {
    font-size: 60px;
  }
}

/* ===== How I Work ===== */

.process-sec {
  padding: 120px 0 100px;
  background: #101010;
  margin-top: 62px;
}

.process-inner {
  max-width: 100%;
}

.process-header {
  margin-bottom: 48px;
}

.process-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 800;
  color: #f7f7f7;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 458px;
}

.process-intro p {
  font-family: var(--font_inter);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(247, 247, 247, 0.55);
  margin-bottom: 12px;
}

.process-intro p:first-child {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: rgba(247, 247, 247, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  color: white;
  line-height: 1.44;
  font-size: 18px;

}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.process-step:first-child {
  border-radius: 16px 0 0 16px;
}

.process-step:last-child {
  border-radius: 0 16px 16px 0;
}

.process-num {
  font-size: 40px !important;
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.process-step-title {
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #f7f7f7;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-step-desc {
  font-family: var(--font_inter);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(247, 247, 247, 0.5);
  margin: 0;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .process-step:first-child  { border-radius: 16px 0 0 0; }
  .process-step:nth-child(2) { border-radius: 0 16px 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 16px; }
  .process-step:last-child   { border-radius: 0 0 16px 0; }
}

@media (max-width: 600px) {
  .process-sec {
    padding: 72px 0 60px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}



