/* Cal Sans */
@font-face {
    font-family: 'CalSans';
    src: url('/static/vendor/googleFonts/CalSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* DM Sans */
@font-face {
    font-family: 'DMSans';
    /* src: url('/static/vendor/googleFonts/DMSans_18pt-ExtraLight.ttf') format('truetype'); */
    src: url('/static/vendor/googleFonts/DMSans_18pt-Light.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
}

/* DM Sans */
@font-face {
    font-family: 'Raleway';
    src: url('/static/vendor/googleFonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Apply custom font */
.CalSans {
    font-family: "CalSans";
}

.raleway {
    font-family: 'Raleway';
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}


body {
    font-family: "DMSans", sans-serif;
    text-transform: capitalize;
    color: black !important;
    background: white;
    scroll-behavior: smooth;
    /* padding-bottom: 100px; */
    overflow-x: hidden !important;
}

/***************************************Navbar style start****************************************/

.btn-close {
    box-shadow: none !important;
}

.appHeader {
    transition: transform .35s ease;
}

.appHeader.hideHeader {
    transform: translateY(-100%);
}

header {
    z-index: 200;
}

.navBar {
    z-index: 9999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll state */
.navBar.navScrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    /* optional but premium */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}


/* Background turns black while scrolling */
.navBar.isScrolling {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    /* optional premium feel */
}


/* Navbar Container */
.navBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background-color: #00000000;
    color: #fff;
    font-family: 'DMSans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
}

@media(max-width:424px) {
    .navBar {
        padding: 10px 25px;

    }
}

.navBarLogo img {
    display: block;
    height: auto;
}

.navBarMenu {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.navItem .navLink {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px !important;
    padding: 6px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navItem .navLink::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: #00ffe7;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}


.navItem .navLink::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffe7, #1e90ff);
    border-radius: 10px;
    transition: width 0.4s ease;
}


.navItem .navLink:hover,
.navItem .navLink:focus,
.navItem .navLink:active,
.navItem .navLink.active {
    color: #00ffe7;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 255, 231, 0.8);
}


.navItem .navLink:hover::before,
.navItem .navLink:focus::before,
.navItem .navLink:active::before,
.navItem .navLink.active::before {
    opacity: 1;
    transform: scale(1);
}

.navItem .navLink:hover::after,
.navItem .navLink:focus::after,
.navItem .navLink:active::after,
.navItem .navLink.active::after {
    width: 100%;
}


.navOffcanvasBody .navBarMenu {
    flex-direction: column !important;
    align-items: center;
    color: black !important;
}

.navOffcanvasBody .navBarMenu a {
    color: black !important;
}

.navOffcanvasBody .navBarCta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


/* <reset-style> ============================ */
.navToggle {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
}

/* ============================ */
/* <style for bg> ======== */
.background {
    border-radius: 46px;
    border: 1px solid #1a1a1a;
    background: rgba(74, 74, 74, 0.39);
    mix-blend-mode: luminosity;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(15px);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* <style for menu__icon> ======== */
.menu__icon {
    width: 32px;
    height: 32px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    transition: transform .4s;
}

.menu__icon span {
    width: 100%;
    height: 0.25rem;
    border-radius: 0.125rem;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
    transition: width .4s, transform .4s, background-color .4s;
}

.menu__icon :nth-child(2) {
    width: 75%;
}

.menu__icon :nth-child(3) {
    width: 50%;
}

.menu__icon:hover {
    transform: rotate(-90deg);
}

.menu__icon:hover span {
    width: .25rem;
    transform: translateX(-10px);
    background-color: rgb(255, 255, 255);
}





@media (max-width: 1000px) {
    .desktopHide {
        display: none;
    }
}





.indexHero {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Hero content */
.heroContent {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.heroContent p {
       max-width: 720px;

}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0) scale(0.95);
    }

    25% {
        transform: translate(40px, -60px) scale(1);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.05);
    }

    75% {
        transform: translate(60px, 30px) scale(1);
    }

    100% {
        transform: translate(0, 0) scale(0.95);
    }
}

.bubbles span {
    position: absolute;

    /* RANDOM START POSITION INSIDE HERO */
    top: var(--top);
    left: var(--left);

    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.1;

    animation: ambientFloat ease-in-out infinite;
    animation-fill-mode: both;

    /* glow */
    filter: blur(1px);
    box-shadow:
        0 0 15px currentColor,
        0 0 30px currentColor;

    will-change: transform;
}

.bubbles span:nth-child(1) {
    background: #18CAD2;
    --top: 20%;
    --left: 10%;
    animation-duration: 22s;
}

.bubbles span:nth-child(2) {
    background: #AA54FF;
    --top: 40%;
    --left: 25%;
    animation-duration: 28s;
}

.bubbles span:nth-child(3) {
    background: #FC8176;
    --top: 60%;
    --left: 35%;
    animation-duration: 24s;
    width: 50px;
    height: 50px;
}

.bubbles span:nth-child(4) {
    background: #FF46EB;
    --top: 30%;
    --left: 50%;
    animation-duration: 32s;
}

.bubbles span:nth-child(5) {
    background: #0a6c52;
    --top: 70%;
    --left: 60%;
    animation-duration: 26s;
    width: 35px;
    height: 35px;
}

.bubbles span:nth-child(6) {
    background: #17C9D3;
    --top: 15%;
    --left: 70%;
    animation-duration: 30s;
}

.bubbles span:nth-child(7) {
    background: #18CAD2;
    --top: 55%;
    --left: 80%;
    animation-duration: 27s;
    width: 75px;
    height: 75px;
}

.bubbles span:nth-child(8) {
    background: #AA54FF;
    --top: 75%;
    --left: 20%;
    animation-duration: 34s;
}

.bubbles span:nth-child(9) {
    background: #FC8176;
    --top: 10%;
    --left: 90%;
    animation-duration: 23s;
    width: 25px;
    height: 25px;
}

.bubbles span:nth-child(10) {
    background: #FF46EB;
    --top: 45%;
    --left: 15%;
    animation-duration: 29s;
}

.bubbles span:nth-child(11) {
    background: #24D4A5;
    --top: 65%;
    --left: 40%;
    animation-duration: 31s;
}

.bubbles span:nth-child(12) {
    background: #17C9D3;
    --top: 25%;
    --left: 55%;
    animation-duration: 26s;
    width: 45px;
    height: 45px;
}

.bubbles span:nth-child(13) {
    background: #18CAD2;
    --top: 80%;
    --left: 75%;
    animation-duration: 35s;
}

.bubbles span:nth-child(14) {
    background: #AA54FF;
    --top: 35%;
    --left: 85%;
    animation-duration: 28s;
    width: 60px;
    height: 60px;
}

.bubbles span:nth-child(15) {
    background: #FC8176;
    --top: 50%;
    --left: 5%;
    animation-duration: 33s;
}

.gradientText {
    background: linear-gradient(90deg,
            #18CAD2,
            #AA54FF,
            #FC8176,
            #24D4A5,
            #18CAD2);
    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s ease-in-out infinite;
    display: inline-block;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .gradientText {
        animation-duration: 10s;
    }
}


/* ===============================  Index About US styles   ========================================================================================================================= */

.aboutUsImg {
    filter: brightness(1.2);
}

.sectionTitle {
    position: relative;
}

.sectionTitle span {
    position: relative;
    padding: 0 20px;
}

.sectionTitle::before,
.sectionTitle::after {
    content: "";
    position: absolute;
    top: 70%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, #18CAD2, #AA54FF);
}

.sectionTitle::before {
    left: 0;
}

.sectionTitle::after {
    right: 0;
}


@media(max-width:600px) {

    .sectionTitle::before,
    .sectionTitle::after {
        width: 20%;
    }
}

@media(max-width:400px) {

    .sectionTitle::before,
    .sectionTitle::after {
        width: 15%;
    }
}

@media(max-width:576px) {
    .factAboutUs {
        text-align: center;
    }

    .factBox h2 {
        font-weight: bold;

    }
}

.coreValuesWrapper {
    gap: 0rem;
}

/* Card container */
.coreValueCard {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.coreValueCard {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s ease;
}

/* Gradient fill overlay */
.coreValueCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #AA54FF,
            #17C9D3);
    /* background-color: #480c4d; */
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.45s ease, opacity 0.45s ease;
    z-index: 0;
}

/* Bottom gradient line stays */
.coreValueCard::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #AA54FF, #17C9D3, #FF46EB, #FC8176);
    z-index: 2;
}

/* Hover fill animation */
.coreValueCard:hover::before {
    transform: translateY(0);
    opacity: 1;
}

/* Text + icon above overlay */
.coreValueCard * {
    position: relative;
    z-index: 1;
}

/* Text color change on hover */
.coreValueCard:hover h5,
.coreValueCard:hover p,
.coreValueCard:hover i {
    color: #ffffff !important;
}

/* Icon default */
.coreValueCard i {
    color: #AA54FF;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

/* Paragraph */
.coreValueCard p {
    font-size: 0.95rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

/* Optional subtle shadow on hover */
.coreValueCard:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.imgFilter {
    filter: brightness(1.1);
}

/* ===============================  Index journey section styles   ========================================================================================================================= */

.liyakaTimeline {
    padding: 5rem 0;
    background-color: #ffffff;
}

/* Header */
.timelineHeader {
    margin-bottom: 3rem;
}

/* Layout */
.timelineLayout {
    margin-top: 2rem;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 520px;
}

/* Vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    /* CENTER alignment */
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            #AA54FF,
            #17C9D3,
            #FF46EB,
            #FC8176);
}

/* Item */
.timelineItem {
    position: relative;
    margin-bottom: 3rem;
}

/* DOT perfectly centered on line */
.timelineDot {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    border: 3px solid #AA54FF;
    border-radius: 50%;
    z-index: 2;
}

/* Card */
.timelineCard {
    background-color: #ffffff;
    padding: 1.3rem 1.6rem;
    border-radius: 12px;
    margin-left: 35px;
    border: 2px solid #22e185;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.timelineCard:hover {
    border-color: #22e185;
    box-shadow: 0 12px 30px rgba(34, 225, 133, 0.25);
    transform: translateY(-4px);
}


.timelineCard h5 {
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #AA54FF;
}

.timelineCard p {
    margin: 0;
    font-size: 0.95rem;
    color: #6c757d;
}

/* Illustration */
.journeyImg {
    max-width: 420px;
}

/* MOBILE */
@media (max-width: 991px) {
    .timeline {
        margin: 0 auto;
    }

    .timeline::before {
        left: 10px;
    }

    .timelineDot {
        left: 30px;
    }

    .journeyImg {
        max-width: 300px;
    }
}


/* ===============================  Index our services section styles   ========================================================================================================================= */

.hero {
    height: 110vh;
    overflow: hidden;
    position: relative;
    background: #0b0b0b;
}

.heroWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* viewport lock */
}

.heroTrack {
    display: flex;
    height: 100%;
    width: max-content;
    /*  THIS FIXES EVERYTHING */
}


.heroPanel {
    flex: 0 0 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
    /* solid base */
}

/* Background glow */
.heroPanel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left,
            rgba(24, 202, 210, 0.14),
            transparent 55%);
    pointer-events: none;
    z-index: -1;
}

/* content always above */
.panelContent {
    position: relative;
    z-index: 2;
}


.panelContent {
    width: 100%;
    max-width: 1250px;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.gaspIllustrations {
    display: flex;
    justify-content: center;
    position: relative;
}

.gaspIllustrations::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(170, 84, 255, 0.35),
            transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.gaspIllustrations img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    animation: floatImg 4.5s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effect */
.gaspIllustrations:hover img {
    transform: scale(1.08);
    /* slight enlargement */
    filter: brightness(1.1) saturate(1.2);
    /* subtle pop effect */
}


.gaspIllustrationsWrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.gaspIllustrations {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.gaspIllustrations::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,
            rgba(227, 118, 249, 0.35),
            transparent 70%);
    filter: blur(60px);
    z-index: -1;
    transition: all 0.3s ease;
}

/* Overlay for hover */
.illustrationOverlay {
    position: absolute;
    inset: 0;
    /* background: rgba(170, 84, 255, 0); */
    /* initially transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
    /* initially non-interactive */
}

.ctaBtn {
    background: #AA54FF;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

/* Hover effect */
.ctaBtn:hover {
    background: #46043f;
    /* Slight color shift */
    transform: translateY(0) scale(1.05);
    /* pop-up feel */
    box-shadow: 0 8px 25px rgba(255, 70, 235, 0.4);
    /* glow */
    cursor: pointer;
}


/* Hover effect */
.gaspIllustrationsWrapper:hover .illustrationOverlay {
    background: rgba(229, 173, 210, 0.814);
    /* purple-white transparent overlay */
}

.gaspIllustrationsWrapper:hover .ctaBtn {
    opacity: 1;
    transform: translateY(0);
}


.panelContent h2 {
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(90deg, #18CAD2, #AA54FF, #FC8176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panelContent p {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    color: #bdbdbd;
    max-width: 480px;
    line-height: 1.7;
}

.panelContent h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 1rem;
    background: linear-gradient(90deg, #18CAD2, #AA54FF, #FC8176);
    border-radius: 10px;
}

/* =========================
   TABLET & SMALL LAPTOP
   ========================= */
@media (max-width: 768px) {
    .panelContent {
        gap: 3rem;
        padding: 0 2.5rem;
    }

    .gaspIllustrations img {
        max-width: 340px;
    }
}

/* =========================
   MOBILE STACK FIX (650px ↓)
   ========================= */
@media (max-width: 650px) {
    .hero {
        height: 100vh;
        /* remove extra height */
    }

    .panelContent {
        grid-template-columns: 1fr;
        /*  STACK */
        text-align: center;
        gap: 2.5rem;
        padding: 0 1.8rem;
    }

    .gaspIllustrations {
        order: -1;
        /* image first */
    }

    .gaspIllustrations img {
        max-width: 280px;
    }

    .panelContent p {
        margin-left: auto;
        margin-right: auto;
    }

    .panelContent h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================
   SMALL MOBILE (480px ↓)
   ========================= */
@media (max-width: 480px) {
    .hero {
        height: 99vh;
    }

    .panelContent {
        padding: 0 1.2rem;
        gap: 2rem;
    }

    .panelContent h2 {
        font-size: clamp(2.1rem, 7vw, 2.8rem);
    }

    .panelContent p {
        font-size: 1rem;
    }

    .gaspIllustrations::before {
        width: 220px;
        height: 220px;
        filter: blur(45px);
    }
}

.glassTagline {
    position: relative;
    display: inline-block;
    padding: clamp(1rem, 2vw, 1.4rem) clamp(1.6rem, 4vw, 2.4rem);
    /* border-radius: 14px; */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;
}

/* Animated Gradient Border */
.glassTagline::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;

    background: linear-gradient(135deg,
            #ff6ec4,
            #00ffe7,
            #1e90ff,
            #7873f5,
            #ff6ec4);

    background-size: 300% 300%;
    animation: borderFlow 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Text Styling */
.glassTagline p {
    margin: 0;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem) !important;
    letter-spacing: 0.12em;
    color: #ffffff;
    opacity: 0.9;
}

/* Animation */
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* for mobile we alter swiper instead of gsap scroll */
.imageShowcaseSection{
    display: none;
}

@media(max-width:768px){
    .hero{
        display: none;
    }

    .imageShowcaseSection{
        display: block;
    }
}



.imageShowcaseSection {
  position: relative;
  background: #0b0b0b;
  padding: 80px 0;
}

.imageShowcaseSlider {
  position: relative;
  max-width: 100%;
}

.imageShowcaseSlide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageShowcaseImageBox img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Progress bar */
.imageShowcaseProgress {
  width: 80%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 32px auto 0;
}

.imageShowcaseProgressBar {
  width: 0;
  height: 100%;
  background: rgb(65, 219, 236);
  transition: width 400ms ease;
}

.imageShowcaseCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.imageShowcaseTitle {
  font-family: "CalSans", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.08em;
}

.imageShowcaseImageBox img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===============================  Index why liyaka section styles   ========================================================================================================================= */

.balanceCard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    background: #0b0b0b;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;

}

.balanceSide {
    padding: 30px;
    border-radius: 18px;
    min-height: 220px;
    transition: transform 0.4s ease;
}

.balanceSide:hover {
    transform: translateY(-8px);
}

/* Creative */
.creativeSide {
    background: linear-gradient(135deg, #ff6ec4, #7873f5);
    color: #fff;
}

/* Technical */
.techSide {
    background: linear-gradient(135deg, #00ffe7, #1e90ff);
    color: #020202;
}

.tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.balanceSide h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.balanceCenter {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00ffe7;
    box-shadow: 0 0 45px rgba(0, 255, 231, 0.9);
}

.balanceNote {
    margin-top: 24px;
    text-align: center;
    font-size: 18px;
    color: #5d5a5a;
}

/* ===============================
   RESPONSIVE – BALANCE CARD
================================ */

/* Tablets (≤ 991px) */
@media (max-width: 991px) {
    .balanceCard {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 28px;
    }

    .balanceCenter {
        margin: 0 auto;
        order: 2;
    }

    .creativeSide {
        order: 1;
    }

    .techSide {
        order: 3;
    }

    .balanceSide {
        min-height: auto;
        padding: 28px;
    }
}

/* Mobiles (≤ 576px) */
@media (max-width: 576px) {
    .balanceCard {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .balanceSide {
        padding: 22px;
        border-radius: 16px;
        text-align: center;
    }

    .balanceSide h3 {
        font-size: 22px;
    }

    .balanceSide p {
        font-size: 15px;
        line-height: 1.6;
    }

    .tag {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .balanceCenter {
        width: 50px;
        height: 50px;
        font-size: 22px;
        box-shadow: 0 0 20px rgba(0, 255, 231, 0.5);
    }
}

.balanceSwiper {
    padding: 40px 0 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}




.balanceCard {
    /* --creativeGrad: linear-gradient(135deg, #ff6ec4, #7873f5); */
    --techGrad: linear-gradient(135deg, #00ffe7, #1e90ff);
}

.creativeSide {
    background: var(--creativeGrad);
}

.techSide {
    background: var(--techGrad);
}

/* Normal bullets */
.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    margin: 0 6px !important;
    border-radius: 50%;
    background: rgba(63, 59, 59, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.35s ease;
}

/* Active bullet – wider pill */
.swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 20px;
    background: linear-gradient(90deg, #00ffe7, #1e90ff) !important;
    box-shadow: 0 0 12px rgba(0, 255, 231, 0.8) !important;
}


:root {
    --techGrad: linear-gradient(135deg, #00ffe7, #1e90ff);
    --brandGrad: linear-gradient(135deg, #ff6ec4, #7873f5);
}

.whyLiyakaPart2 {
    padding: clamp(6rem, 12vw, 10rem) 0;
}

.whyLiyakaPart2Container {
    max-width: 1200px;
    margin: auto;
    padding: 0 clamp(1rem, 4vw, 2rem);

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: flex-start;
}

.whyLiyakaSide h2 {
    font-size: clamp(2.6rem, 4.8vw, 3.8rem) !important;
    line-height: 1.05;
    margin-bottom: clamp(1.2rem, 2vw, 1.6rem) !important;
    letter-spacing: -0.02em;
}

.whyLiyakaSide h2 span {
    background: var(--techGrad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whyLiyakaSide p {
    font-size: clamp(1.05rem, 1.4vw, 1.15rem) !important;
    line-height: 1.9;
    max-width: 30rem;
    opacity: 0.85;
}

.whyLiyakaStack {
    display: flex;
    flex-direction: column;
    gap: clamp(1.8rem, 3vw, 2.6rem);
}

.whyItem {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.2rem, 2vw, 1.6rem);
    align-items: flex-start;

    padding-left: clamp(1rem, 2vw, 1.6rem);
    border-left: 2px solid rgba(255, 255, 255, 0.06);

    transition: transform 0.35s ease, border-color 0.35s ease;
}

.whyItem:hover {
    transform: translateX(6px);
    border-left-color: rgba(0, 255, 231, 0.6);
}

.whyItem i {
    font-size: clamp(1.6rem, 2.2vw, 2rem) !important;
    line-height: 1;

    background: var(--techGrad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-top: 0.2rem;
}

.whyItem h4 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem) !important;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.h2Span {
    font-size: clamp(1.15rem, 2.8vw, 3.35rem) !important;

}

.whyItem p {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem) !important;
    line-height: 1.75;
    max-width: 36rem;
    opacity: 0.8;
}

@media (max-width: 768px) {

    .whyLiyakaPart2Container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .whyLiyakaSide {
        text-align: center;
    }

    .whyLiyakaSide p {
        margin: auto;
    }

    .whyItem {
        border-left: none;
        padding-left: 0;
    }


}

.whyDivider {
    display: block;
    width: clamp(80px, 15vw, 120px);
    height: 3px;
    margin-top: clamp(1.4rem, 3vw, 2rem);

    background: var(--techGrad);
    border-radius: 10px;
}

.whySupportText {
    margin-top: clamp(1.2rem, 2vw, 1.6rem);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
    color: #000000 !important;
}






/* ===============================  Index pricing section styles   ========================================================================================================================= */

.pricingSection {
    padding: clamp(4rem, 8vw, 6.25rem) 0;
    background: #060606;
}

.pricingHeader h2 {
    margin-bottom: 0.6rem;
}

.pricingHeader p {
    font-size: clamp(1rem, 2vw, 1.125rem) !important;
    color: #8a8a8a;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.pricingCard {
    background: linear-gradient(180deg, #0d0d0d, #080808);
    border-radius: 1.5rem;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.pricingCard:hover {
    transform: translateY(-0.6rem);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}


.pricingCard {
    background: linear-gradient(180deg, #0d0d0d, #080808);
    border-radius: 1.5rem;
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.pricingCard:hover {
    transform: translateY(-0.6rem);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}


.pricingCard.popular {
    transform: scale(1.05);
    border: 1px solid transparent;
    background:
        linear-gradient(#0d0d0d, #0d0d0d) padding-box,
        linear-gradient(135deg, #00ffe7, #1e90ff) border-box;
    box-shadow: 0 0 60px rgba(0, 235, 231, 0.25);
}


.badgePopular {
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    transform: rotate(35deg);
    background: linear-gradient(90deg, #00ffe7, #1e90ff);
    color: #020202;
    font-size: 0.7rem !important;
    padding: 0.4rem 3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.planTag {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin: 0.6rem 0;
    font-weight: 700;
}

.priceNote {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}

.planFeatures {
    list-style: none;
    padding: 0;
    margin-bottom: 2.2rem;
    text-align: left;
}

.planFeatures li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: clamp(0.95rem, 2vw, 1.05rem) !important;
}

.planFeatures li i {
    color: #00ffe7;
    font-size: 0.9rem !important;
}




.webPricingSection {
    padding: 100px 0;
    background: #050505;
}

.webPricingHeader p {
    margin-bottom: 60px;
}

.webPricingRow {
    display: grid;
    grid-template-columns: 1.4fr 2fr 1fr;
    gap: 30px;
    padding: 35px;
    border-radius: 20px;
    background: #0c0c0c;
    margin-bottom: 25px;
    align-items: center;
    transition: all 0.4s ease;
}

.webPricingRow {
    position: relative;
    overflow: hidden;
}

/* Glow border effect */
/* .webPricingRow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #00ffe7, #1e90ff) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
} */

.webPricingRow:hover::after {
    opacity: 1;
}

.webPricingRow:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 255, 231, 0.15);
}

/* Timeline glow on hover */
.webPricingRow:hover .planTimeline::before {
    filter: drop-shadow(0 0 10px #00ffe7);
}

.webPricingRow:hover .planTimeline li::before {
    box-shadow: 0 0 12px rgba(0, 255, 231, 0.9);
}

.planInfo h3 {
    margin-bottom: 6px;
}

.planInfo span {
    font-size: 14px;
    opacity: 0.6;
}

/* Timeline */
.planTimeline {
    list-style: none;
    padding-left: 30px;
    position: relative;
}

.planTimeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ffe7, #1e90ff);
}

.planTimeline li {
    margin-bottom: 14px;
    position: relative;
    color: white !important;
    font-size: 0.9rem !important;

}

.planTimeline li::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #00ffe7;
    border-radius: 50%;
}

/* Right */
.planAction {
    text-align: right;
}

.planAction h4 {
    font-size: 26px;
    margin-bottom: 14px;
}

/* Highlight */
.webPricingRow.highlight {
    border: 1px solid #00ffe7;
    background: linear-gradient(135deg, #0d0d0d, #080808);
}

@media (max-width: 992px) {
    .webPricingRow {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .planTimeline {
        padding-left: 0;
    }

    .planTimeline::before {
        display: none;
    }

    .planTimeline li {
        padding-left: 0;
    }

    .planTimeline li::before {
        display: none;
    }

    .planAction {
        text-align: center;
    }
}


@media (max-width: 576px) {
    .webPricingSection {
        padding: 70px 0;
    }

    .webPricingRow {
        padding: 26px;
        border-radius: 16px;
    }

    .planInfo h3 {
        font-size: 22px;
    }

    .planTimeline li {
        font-size: 14px !important;
        margin-bottom: 10px;
    }

    .planAction h4 {
        font-size: 22px;
    }
}



/* ===============================  Index contact us section styles   ========================================================================================================================= */

/* =========================
   CONTACT SECTION BASE
========================= */
.contactSection {
    padding: 100px 0;
    background: #000;
    color: #fff;
}

/* =========================
   MAIN CONTAINER (2 ROWS)
========================= */
.contactContainer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* =========================
   EACH ROW (2 COLUMNS)
========================= */
.contactRow {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   IMAGES
========================= */
.contactImg img {
    width: 100%;
    max-width: 620px;
    display: block;
}

/* =========================
   TEXT CONTENT
========================= */
.sectionTag {
    color: #00ffe7;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.contactDesc {
    margin: 14px 0 24px;
    opacity: 0.7;
    max-width: 420px;
}

/* =========================
   TRUST LIST
========================= */
.contactTrust {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contactTrust li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

/* =========================
   ICON CIRCLES
========================= */
.contactTrust span,
.contactInfo span {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 231, 0.12);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #00ffe7;
    flex-shrink: 0;
}

/* =========================
   CONTACT INFO
========================= */
.contactInfo p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.85;
}

/* =========================
   FORM CARD
========================= */
.contactFormCard {
    background: transparent;
}

/* =========================
   INPUTS (BOTTOM BORDER ONLY)
========================= */
.contactFormCard input,
.contactFormCard select,
.contactFormCard textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 14px 4px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contactFormCard select option {
    background-color: black !important;
}

.contactFormCard input:focus,
.contactFormCard select:focus,
.contactFormCard textarea:focus {
    outline: none;
    border-bottom-color: #00ffe7;
}

.contactFormCard textarea {
    resize: none;
    min-height: 90px;
}

/* =========================
   SUBMIT BUTTON
========================= */
.contactFormCard button {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #00ffe7, #1e90ff);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .contactRow {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contactImg img {
        max-width: 560px;
    }

    .contactContainer {
        gap: 0px !important;
    }
}

@media (max-width: 768px) {

    .contactContainer {
        gap: 0px !important;
    }

    .contactRow {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .reverseMobile .mobileFirst {
        order: 1;
    }

    .reverseMobile .mobileSecond {
        order: 2;
    }

    .contactImg img {
        max-width: 380px;
        margin: 0 auto;
    }

    .contactDesc {
        margin-left: auto;
        margin-right: auto;
    }



    .contactFormCard {
        max-width: 420px;
        margin: auto;
    }

    .contactTrust li,
    .contactInfo p {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .contactFormCard input,
    .contactFormCard select,
    .contactFormCard textarea {
        font-size: 14px;
    }

    .contactFormCard button {
        font-size: 15px;
        padding: 14px;
    }

    .contactTrust span,
    .contactInfo span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .contactContainer {
        gap: 0px !important;
    }

    .contactTrust li,
    .contactInfo p {
        justify-content: start;
        padding-left: 1rem;
    }
}



.contactContainer {
    padding: 0 clamp(16px, 5vw, 32px);
}



/* ===============================  Index faq section styles   ========================================================================================================================= */
.faqSection {
    padding: clamp(6rem, 10vw, 10rem) 0;
}

.faqTitle {
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vw, 1.6rem) !important;
}

.faqIntro {
    font-size: clamp(1rem, 1.3vw, 1.1rem) !important;
    opacity: 0.75;
    margin-bottom: clamp(3rem, 4vw, 4rem);
}

.faqImg {
    max-width: 100%;
    height: auto;
}

/* Custom chevron */
.faqQuestion {
    font-size: clamp(1rem, 1.2vw, 1.1rem) !important;
    color: #0b0b0b;
    background: transparent !important;
    border: none !important;
    padding: clamp(1rem, 2vw, 1.2rem) !important;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faqChevron {
    margin-left: auto;
    /* push it to the right */
    transition: transform 0.3s ease;
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
}

/* Rotate chevron when accordion is open */
.faqItem.show .faqChevron {
    transform: rotate(180deg);
}



.boxShadowNone {
    box-shadow: none !important;
}

.footer {
    background-color: #0b0b0b !important;
    padding-bottom: 100px !important;
}

/* Logo */
.footerLogo {
    max-width: 150px !important;
}

/* Logo description */
.footerAboutText {
    font-size: clamp(0.85rem, 1vw, 0.95rem) !important;
    line-height: 1.6 !important;
    opacity: 0.75 !important;
    max-width: 260px;
}

@media(max-width:768px) {
    .footerAboutText {
        font-size: clamp(0.85rem, 1vw, 0.95rem) !important;
        line-height: 1.6 !important;
        opacity: 0.75 !important;
        max-width: 100%;
    }

    .colFooter {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 30px;
        /* align-items: center;
        text-align: center; */

    }
}

/* Titles */
.footerTitle {
    font-size: clamp(1rem, 1.3vw, 1.1rem) !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

/* Links */
.footer-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: clamp(0.9rem, 1vw, 0.95rem) !important;
    display: inline-block;
    margin-bottom: 6px;
    opacity: 0.85;
    transition: all 0.3s ease !important;
}

.footer-link:hover {
    color: #3ac9ba !important;
    opacity: 1;
    transform: translateX(4px);
}

/* Social icons – WHITE BG */
.social-links .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff !important;
    color: #0b0b0b !important;
    font-size: 1.1rem !important;
    transition: all 0.35s ease !important;
}

/* Hover premium feel */
.social-links .social-btn:hover {
    background: linear-gradient(135deg, #3ac9ba, #1bb7a3) !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(58, 201, 186, 0.35);
}

/* Footer copy */
.footerCopy {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem) !important;
    opacity: 0.6 !important;
}


:root {
  --accent: #00ffe7;
  --accent2: #6c63ff;
}

/* OFFCANVAS */
.leadOffcanvasWrapper {
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(18px);
  color: #fff;
  width: 380px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.leadOffcanvasWrapper.show {
  transform: translateX(0);
}

/* HEADER */
.leadOffcanvasHeader {
  padding: 22px;
  position: relative;
}

.leadOffcanvasHeader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}

.leadOffcanvasTitle {
  font-family: "CalSans", sans-serif;
  font-size: 20px;
}

.leadOffcanvasClose {
  background: none;
  border: none;
  color: #aaa;
  font-size: 22px;
}

/* BODY */
.leadOffcanvasBody {
  padding: 22px;
  padding-bottom: 120px;
  overflow-y: auto;
}

/* FLOATING INPUTS */
.leadFormGroup {
  position: relative;
  margin-bottom: 18px;
}

.leadFormGroup input,
.leadFormGroup select,
.leadFormGroup textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 12px;
}

.leadFormGroup input:focus,
.leadFormGroup textarea:focus,
.leadFormGroup select:focus {
  outline: none;
  border-color: var(--accent);
}

/* SUBMIT */
.leadSubmitBtn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease;
}

.leadSubmitBtn:hover {
  transform: scale(1.04);
}

/* CONTACT BAR */
.leadContactMethods {
  position: sticky;
  bottom: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  padding: 14px;
  display: flex;
  gap: 10px;
}

.leadContactCard {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.leadContactCard:hover {
  transform: translateY(-4px);
}

.leadContactCard i {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--accent);
}

