.carousel .list .item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000040;
}

.content {
    z-index: 1;
}

.fs-40 {
    font-size: 32px;
}

.vd1 {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.07;
    /* background-attachment: fixed; */
    height: 160vh;
    z-index: -2;
    margin-top: -8vh;
}

.stats-section {
    background: transparent;
    position: relative;
    z-index: 3;
}

.latest-portfolio {
    z-index: 3;
}

.about-section {
    margin-top: -50px;
    /* background: #2d2d2d; */
    margin-bottom: -50px;
    padding: 120px 0 !important;
}

.product-section {
    overflow: hidden;
}

/* .gallery-item:not(.active) {} */









.main-container {
    width: 1000px;
    height: 800px;
    position: relative;
    margin: auto;
}

#mainSvg svg {
    width: 80%;
    height: fit-content;
    overflow: visible;
    margin: 13% auto;
    display: block;
}

.bg-ring {
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    transform: rotate(-180deg);
    transform-origin: 500px 300px;
}

.center-sphere {
    /* fill: #fff; */
    filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.1));
}

#slicesGroup {
    filter: drop-shadow(4px -5px 5px rgba(0, 0, 0, 0.4));
}

.slice-path {
    stroke-width: 5px;
    filter: drop-shadow(-3px -14px 15px rgba(0, 0, 0, 0.3));
}

.heading-num {
    font-size: 65px;
    font-weight: 900;
    fill: #735cff;
}

.heading-sub {
    font-size: 13px;
    font-weight: 700;
    fill: #5a548e;
    text-transform: uppercase;
}

.heading-main {
    font-size: 38px;
    font-weight: 900;
    fill: #3b3663;
    text-transform: uppercase;
}

.concept-title {
    font-size: 14px;
    fill: #777;
}

.concept-desc {
    font-size: 16px;
    fill: #777;
}

.slice-text-pct {
    font-size: 16px;
    font-weight: 700;
    fill: #fff;
    text-anchor: middle;
}

.slice-text-label {
    font-size: 32px;
    fill: #fff;
    text-anchor: middle;
    text-transform: uppercase;
    pointer-events: none;
}


/* Add this to your existing CSS */
.concept-title,
.concept-desc {
    transition: all 0.3s ease;
}

.highlight {
    /* fill: #b3cb1c !important; */
    fill: #000 !important;
    /* Matches your main theme color */
    font-weight: 600;
    font-size: 16px;
    /* Slightly larger for emphasis */
    /* text-decoration: underline; */
}

.center-sphere {
    stroke: #b1c91e;
    stroke-width: 2;
    filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.15));
}

.bg-ring {
    transition: stroke-width 0.3s ease, opacity 0.3s ease;
    /* opacity: 0.6; */
}





.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    /* overflow: hidden; */
}

/* =========================
FULL BACKGROUND IMAGE
========================= */
.bg-image {
    position: absolute;
    inset: 0;
    background-image: url("assets/images/cleanroom.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-radius: 0 0 50px 50px;
}

/* =========================
FILM GRAIN / PAPER NOISE
========================= */
.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;

    background-image:
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 2px),
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 2px);

    opacity: 0.35;
    mix-blend-mode: overlay;
    animation: grainMove 6s steps(2) infinite;
}

/* =========================
SOFT VIGNETTE
========================= */
.bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 86%) 85%);
}

/* Grain movement */
@keyframes grainMove {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-1%, 1%);
    }

    50% {
        transform: translate(1%, -1%);
    }

    75% {
        transform: translate(-1%, -1%);
    }

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

/* =========================
BIG CLEAR RIGHT IMAGE
========================= */
.focus-image {
    position: absolute;
    top: 64%;
    right: 3%;
    width: 580px;
    height: 770px;
    background-image: url(assets/images/cleanroom.jpeg);
    background-size: cover;
    background-position: center;
    transform: translateY(-50%);
    border-radius: 50px;
    z-index: 4;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* =========================
CONTENT
========================= */
.hero-content {
    position: absolute;
    left: 8%;
    bottom: 22%;
    max-width: 520px;
    color: #fff;
    z-index: 5;

    opacity: 0;
    transform: translateY(40px);
    animation: contentFade 1s ease forwards;
}

.hero-content h2 {
    font-size: 48px;
    margin: 0 0 12px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}

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

/* =========================
RESPONSIVE
========================= */
@media (max-width: 992px) {
    .focus-image {
        width: 340px;
        height: 340px;
    }
}

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

    .hero-content h2 {
        font-size: 34px;
    }
}

.panl-card {
    border: 1px solid;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    position: relative;
    flex-grow: 1;
    /* background: #1a1919; */
    padding: 2rem;
    /* margin: 1rem 2rem; */
    /* border: 1px solid red; */
    border-radius: 30px;
    /* width: 25%; */
    color: #fff;
    height: 100%;
    /* padding-right: 16rem; */
    position: relative;
    /* padding-bottom: 9rem; */
    min-height: 290px;
    z-index: 1;
    overflow: hidden;
}

.pdct-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* border-radius: 180px 0 0 0; */
    overflow: hidden;
    z-index: -1;
}

.pdct-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdct-img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000b0;
    z-index: 4;
    top: 0;
    left: 0;
}







/* .h1,
h1 {
    font-size: 4.375rem;
} */

.pnl-dtl {
    display: flex;
    gap: 15px;
    align-items: stretch;
    min-height: 350px;
    width: 100%;
    flex-wrap: wrap;
}

.pnl-inte {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: 30px;
    padding: 2rem;
    background: #1a1919;
    /* Ensure height is strictly locked to the parent */
    align-items: flex-start;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}

.pnl-inte:hover {
    box-shadow: inset 0px -4px 11px 0px #80920f;
    transition: all 0.5s linear;
}

/* The Expanding Effect */
.pnl-inte.active {
    flex: 2.5;
    /* Grows larger than the others */
    /* Switches to white/gray like the image */
    background-color: #1a1919;
    box-shadow: inset 0px -4px 11px 0px #80920f;
    transition: all 0.5s linear;
    align-items: center;
}

.pnl-cont {
    flex: 0 0 250px;
    /* Do not grow, do not shrink, stay 300px */
    width: 250px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.pnl-inte .prd-p {
    opacity: 0.7;
    /* Optional: prevent word-wrapping fluctuations */
    /* display: -webkit-box; */
    -webkit-line-clamp: 4;
    /* Limits lines so height stays identical */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.pnl-inte.active .prd-p {
    opacity: 1;
}

/* Hide description and image by default */

.pnl-img {
    width: 0;
    opacity: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: width 3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s linear;
}

/* Show content only when active */

.pnl-inte.active .pnl-img {
    flex: 1;
    /* Image takes up all the newly created space */
    display: flex;
    opacity: 1;
    width: auto;
    /* Let flex handle the expansion */
    margin-left: 20px;
    justify-content: flex-end;
}

/* .pnl-img {
    display: none;
} */

.pnl-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.full-screen .swiper {
    z-index: 0;
}

.vertical-title-center {
    font-size: 156px;
    opacity: 0.1;
    color: #0000005c !important;
    -webkit-text-stroke-color: #919090;
    /* -webkit-text-stroke-width: 4px; */
    font-family: 'Raleway';
}

.ps-60px {
    padding-left: 60px !important;
}

.ms-100px {
    margin-left: 100px;
}

.mySwiper-ban1 h1 {
    font-size: 4rem;
    margin: 0;
    margin-bottom: 5px;
    line-height: 140%;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.95);
    transition: all .3s linear;
}

.left-minus-45 {
    left: -45%;
}


.text-dark-gray {
    color: #000;
}

.swiper-pagination-progress .swiper-progress {
    background-color: var(--dark-gray);
}

.border-color-extra-medium-gray {
    border-color: #cdcdcd !important;
}

.pnl-cont h3 {
    font-size: 2rem;
    color: var(--primary-green) !important;
    line-height: normal;
}

.pnl-sec {
    border-radius: 50px;
    z-index: 7;
    position: relative;
    background: #000000;
    margin-top: 0px;
    height: 100%;
    margin-bottom: -50px;
}

.stack-box .cover-background {
    border-radius: 0 50% 50% 0;
}

.cln-sec:after {
    content: '';
    position: absolute;
    top: -25vh;
    right: 0;
    background-image: url(assets/images/demo-vertical-portfolio-bg-03.jpg);
    width: 100vw;
    height: 110vh;
    z-index: 0;
    /* background: #948888; */
    /* border-radius: 0 360% 900% 0%; */
    opacity: 0.04;
    background-size: cover;
}

.cnt-1 {
    /* background: #b3cb1c; */
    padding: 1rem;
    color: #000000;
    border-radius: 30px;
    /* box-shadow: -1px 2px 20px 3px #e5e2e2; */
    font-weight: 600;
    font-size: 1.3rem;
}

.cnt-1 ul {
    margin-bottom: 0;
    padding: 0;
}

.cnt-1 ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    color: #505050 !important;
}

.cnt-1 ul li strong {
    color: var(--primary-green) !important;
}

.cnt-1 ul li i {
    font-size: 1rem;
    margin-right: 1rem;
}

.cnt-1 ul li p {
    margin-bottom: 0;
    text-align: left;
}

.stack-box {
    position: relative;
    z-index: -1;
    height: 300vh;
    margin-bottom: -50px;
}




/* Swiper Base */
.mySwiper-ban1.swiper {
    width: 100%;
    height: 100vh;
    border-radius: 0 0 20px 20px;
}

.mySwiper-ban1 .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Background Animation */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.mySwiper-ban1 .swiper-slide-active .slide-bg {
    transform: scale(1);
}

/* Gradient Overlay */
.gradient-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    inset: 0;
}

/* Text Reveal Animations */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mySwiper-ban1 .swiper-slide-active .text-reveal {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal.delay-100 {
    transition-delay: 0.1s;
}

.text-reveal.delay-200 {
    transition-delay: 0.2s;
}

.text-reveal.delay-300 {
    transition-delay: 0.3s;
}

.text-reveal.delay-400 {
    transition-delay: 0.4s;
}

.text-reveal.delay-500 {
    transition-delay: 0.5s;
}

.text-reveal.delay-600 {
    transition-delay: 0.6s;
}

/* Navigation Buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.7);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: white;
}

/* Progress Bar */
.progress-fill {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-green) 100%);
    transition: width 0.3s ease;
    height: 100%;
}

/* Custom Pagination */
.mySwiper-ban1 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.mySwiper-ban1 .swiper-pagination-bullet-active {
    background: var(--primary-green);
    width: 32px;
    border-radius: 4px;
}

/* Typography Overrides */
.display-1 {
    font-size: calc(3rem + 2.5vw);
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 992px) {
    .display-1 {
        font-size: 6rem;
    }
}

/* Border Accent */
.border-accent {
    border-left: 2px solid rgba(255, 215, 140, 0.5);
    padding-left: 1.5rem;
}

/* Z-index utilities */
.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.current-num {
    color: #fff;
}




/* Animated Corner Boxes */
.corner-boxes {
    position: relative;
    width: 80px;
    height: 80px;
}

.box-green {
    width: 50px;
    height: 50px;
    background-color: #d4ff3f;
    /* Lime Green */
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.box-black {
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

/* Typography */
.main-title {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
}

/* .description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
} */

/* Animated Circular Button */
.circle-btn-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.inner-circle {
    width: 60px;
    height: 60px;
    background-color: #d4ff3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
}

.inner-circle:hover {
    transform: scale(1.1);
    background-color: #c0eb30;
}

/* Image Styling */
.img-rounded {
    border-radius: 20px;
    /* filter: grayscale(100%); */
    transition: filter 0.5s ease;
    width: 100%;
    object-fit: cover;
}

/* .img-rounded:hover {
    filter: grayscale(0%);
} */

/* .hero-section {
    padding: 100px 0;
} */

.lead {
    margin: auto;
    text-align: center;
}





/* ---------------- OVERLAP SECTION ---------------- */
.overlap-section {
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.cards-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    position: absolute;
    width: 90%;
    max-width: 1400px;
    will-change: transform;
    border: none;
    padding: 0;
    height: auto;
    min-height: 500px;
    max-height: 80vh;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.34);
}

.card-1 {
    z-index: 1;
}

.card-2 {
    z-index: 2;
    transform: translateY(110vh);
}

/* ---------------- PROMO CARD UI ---------------- */
.promo {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 500px;
}


.promo::before {
    left: -120px;
    top: -120px;
}

.promo::after {
    right: -140px;
    bottom: -140px;
}

.promo__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    padding: 42px 44px;
    align-items: center;
    height: 100%;
}

.promo__title {
    margin: 0 0 22px;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.1;
    text-align: left;
    color: #000;
    font-family: 'Raleway', sans-serif;
}

.promo__desc {
    color: #8b8b8b;
    font-size: 18px;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #f4a261;
    color: #fff;
}

.btn--ghost {
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: #333;
}

.promo__right {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.ring {
    position: absolute;
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.18);
}

.ring--lg {
    width: 450px;
    height: 450px;
    right: 60px;
    top: -140px;
    z-index: -1;
}

.ring--md {
    width: 380px;
    height: 380px;
    right: 55px;
    top: 35px;
    opacity: 0.35;
    z-index: -1;
}

.promo__photo {
    width: 500px;
    height: 500px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 1px 2px 13px rgba(0, 0, 0, 0.31);
}

.promo__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo__photo--slideshow {
    position: relative;
}

.promo__photo--slideshow img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.promo__photo--slideshow img.is-active {
    opacity: 1;
}

.promo__badge {
    position: absolute;
    right: 22px;
    top: 52px;
    width: 132px;
    height: 132px;
    background: #f4a261;
    color: #fff;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.promo__chip {
    position: absolute;
    left: 28px;
    bottom: 36px;
    width: 128px;
    height: 128px;
    border-radius: 999px;
    background: #ededee;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.overlap-wrapper {
    position: relative;
    z-index: 1;
    border: 1px solid #000;
    height: 100%;
}

.st-refreshing {
    overflow: hidden;
}

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */

/* Large Laptops and Desktops (1440px and above) */
@media (min-width: 1440px) {
    .card {
        width: 85%;
        max-width: 1400px;
    }

    .promo__title {
        font-size: 2.2rem;
    }

    .promo__desc {
        font-size: 20px;
    }
}

/* Standard Laptops and Desktops (1024px to 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .card {
        width: 92%;
        max-height: 85vh;
    }

    .promo__inner {
        padding: 36px 40px;
        gap: 24px;
    }

    .promo__title {
        font-size: 2.2rem;
    }

    .promo__desc {
        font-size: 17px;
    }

    .promo__photo {
        width: 450px;
        height: 450px;
    }

    .ring--lg {
        width: 400px;
        height: 400px;
        right: 40px;
        top: -120px;
    }

    .ring--md {
        width: 340px;
        height: 340px;
        right: 35px;
        top: 25px;
    }
}

/* iPad and Tablets (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .card {
        width: 94%;
        max-height: 90vh;
        min-height: 450px;
    }

    .promo__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 36px;
    }

    .promo__title {
        font-size: 38px;
        text-align: center;
        margin-bottom: 16px;
    }

    .promo__desc {
        font-size: 16px;
        text-align: center;
        max-width: 60ch;
        margin: 0 auto 24px;
    }

    .promo__left {
        text-align: center;
    }

    .promo__right {
        min-height: 300px;
        margin-top: 20px;
    }

    .promo__photo {
        width: 380px;
        height: 380px;
    }

    .ring--lg {
        width: 350px;
        height: 350px;
        right: 50%;
        transform: translateX(50%);
        top: -100px;
    }

    .ring--md {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translateX(50%);
        top: -50px;
    }

    .promo__badge {
        right: 40px;
        top: 40px;
        width: 110px;
        height: 110px;
    }

    .promo__chip {
        left: 40px;
        bottom: 40px;
        width: 110px;
        height: 110px;
    }

    .promo::before {
        left: -80px;
        top: -80px;
        width: 200px;
        height: 200px;
    }

    .promo::after {
        right: -100px;
        bottom: -100px;
        width: 200px;
        height: 200px;
    }
}

/* Mobile Devices (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .card {
        width: 96%;
        max-height: 95vh;
        min-height: auto;
        border-radius: 18px;
    }

    .promo {
        border-radius: 18px;
        min-height: auto;
    }

    .promo__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 28px;
    }

    .promo__title {
        font-size: 28px;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .promo__desc {
        font-size: 15px;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .promo__left {
        text-align: center;
    }

    .promo__right {
        min-height: 250px;
        margin-top: 15px;
    }

    .promo__photo {
        width: 300px;
        height: 300px;
    }

    .ring--lg {
        width: 280px;
        height: 280px;
        right: 50%;
        transform: translateX(50%);
        top: -80px;
    }

    .ring--md {
        width: 240px;
        height: 240px;
        right: 50%;
        transform: translateX(50%);
        top: -40px;
    }

    .promo__badge {
        right: 20px;
        top: 20px;
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    .promo__chip {
        left: 20px;
        bottom: 20px;
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    .promo::before,
    .promo::after {
        display: none;
    }

    .btn {
        height: 36px;
        padding: 0 16px;
        font-size: 11px;
    }
}

/* Small Mobile Devices (Below 576px) */
@media (max-width: 575px) {
    .card {
        width: 94%;
        max-height: 95vh;
        min-height: auto;
        border-radius: 16px;
    }

    .promo {
        border-radius: 16px;
        min-height: auto;
    }

    .promo__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 22px;
    }

    .promo__title {
        font-size: 28px;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .promo__desc {
        font-size: 14px;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .promo__left {
        text-align: center;
    }

    .promo__right {
        min-height: 200px;
        margin-top: 10px;
    }

    .promo__photo {
        width: 250px;
        height: 250px;
    }

    .ring--lg {
        width: 220px;
        height: 220px;
        right: 50%;
        transform: translateX(50%);
        top: -60px;
    }

    .ring--md {
        width: 190px;
        height: 190px;
        right: 50%;
        transform: translateX(50%);
        top: -30px;
        display: none;
        /* Hide on very small screens */
    }

    .promo__badge {
        right: 15px;
        top: 15px;
        width: 70px;
        height: 70px;
        font-size: 12px;
    }

    .promo__chip {
        left: 15px;
        bottom: 15px;
        width: 70px;
        height: 70px;
        font-size: 12px;
    }

    .promo::before,
    .promo::after {
        display: none;
    }

    .btn {
        height: 34px;
        padding: 0 14px;
        font-size: 11px;
        margin: 0 4px;
    }

    .btn-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

/* Extra Small Devices (Below 375px) */
@media (max-width: 374px) {
    .promo__title {
        font-size: 24px;
    }

    .promo__desc {
        font-size: 13px;
    }

    .promo__photo {
        width: 200px;
        height: 200px;
    }

    .ring--lg {
        width: 180px;
        height: 180px;
        top: -50px;
    }

    .promo__badge,
    .promo__chip {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }

    .btn {
        height: 32px;
        padding: 0 12px;
        font-size: 10px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .card {
        max-height: 90vh;
    }

    .promo__inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }

    .promo__title {
        font-size: 28px;
        text-align: left;
    }

    .promo__desc {
        font-size: 14px;
        text-align: left;
    }

    .promo__left {
        text-align: left;
    }

    .promo__right {
        min-height: 200px;
    }

    .promo__photo {
        width: 220px;
        height: 220px;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        /* Better touch target */
        padding: 0 20px;
    }

    .card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        /* Softer shadow for mobile */
    }
}


/* Wrapper ko display block rakhein taaki sticky context mile */
.pn-main-wrapper {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    position: relative;
    /* Sticky container ke liye zaroori hai */
    border-top: 3px solid #b6d61d;
}

.pn-container {
    display: flex;
    max-width: 1343px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 20px;
    align-items: flex-start;
    /* Isse left side stretch nahi hogi aur sticky kaam karega */
}

/* LEFT SIDE: Sticky Fix */
.pn-left-sticky {
    flex: 1;
    position: -webkit-sticky;
    /* Safari support */
    position: sticky;
    top: 15%;
    /* Yeh screen ke top se gap hai */
    z-index: 10;
}

.pn-card P {
    margin-bottom: 10px;
}

.pn-card h3 {
    color: #b6d61d;
    font-family: 'Raleway', sans-serif;
}

.pn-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.pn-highlight {
    color: #b6d61d;
}

.pn-spec-list {
    list-style: none;
    padding: 0;
}

.pn-spec-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    color: #FFF;
    font-family: 'Raleway';
}

.pn-icon {
    color: #b6d61d;
    margin-right: 10px;
}

/* RIGHT SIDE: Cards */
.pn-right-scroll {
    flex: 1;
}

.pn-card {
    background: rgb(26 25 25);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.pn-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pn-container {
        flex-direction: column;
    }

    .pn-left-sticky {
        position: relative;
        top: 0;
    }

    .pnl-cont {
        flex: 0 0 100%;
    }

    .pnl-inte.active {
        flex-wrap: wrap;
    }

    .pnl-img {
        width: 100%;
        opacity: 1;
    }

    .about-section .reveal-wrapper {
        margin-top: 30px;
    }

    .pn-title {
        font-size: 2rem;
        font-weight: 600;
    }

    .pn-card h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .pn-card {
        justify-content: start;
        min-height: 300px;
        padding: 20px;
    }
}




/* Make parent relative */
.nav-services {
    position: relative;
    cursor: pointer;
}

/* Dropdown box */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Dropdown links */
.services-dropdown a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

/* .services-dropdown a:hover {
background-color: #f5f5f5;
color: #000;
} */

/* Show dropdown on hover */
.nav-services:hover .services-dropdown a {
    color: #fff;
}

.nav-services:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: #ffffff36;
    backdrop-filter: blur(18px);
    z-index: 10;
    color: #fff;
    top: 60px;
}

.dr-main-container2 {
    font-family: 'Space Grotesk', sans-serif;
    /* height: 100vh; */
    /* overflow: hidden; */
    color: #fff;
    /* background: #080808; */
    display: grid;
    grid-template-columns: 1fr 60%;
}

.dr-main-container2 {
    display: grid;
    grid-template-columns: 1fr 60%;
}

/* ADD THIS */
.dr-viewport {
    order: 2;
}

.dr-controls {
    order: 1;
}

.dr-main-container2 {
    grid-template-columns: 60% 1fr;
}

.dr-viewport {
    position: relative;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* border-right: 1px solid rgba(204, 255, 0, 0.15); */
}

.dr-grid-overlay {
    position: absolute;
    width: 200%;
    height: 300%;
    /* background-image: linear-gradient(rgba(204, 255, 0, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(204, 255, 0, 0.07) 1px, transparent 1px); */
    background-size: 40px 40px;
    z-index: 1;
    transform: perspective(4000px) rotateX(60deg) translateY(-20%);
    opacity: 0.5;
}

.dr-scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ccff00;
    box-shadow: 0 0 15px #ccff00;
    z-index: 10;
    top: 0;
    opacity: 0.3;
    pointer-events: none;
}

.dr-image-stage {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dr-door-img {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.9));
}

.dr-door-img.dr-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border-radius: 20px;
}

.dr-bg-watermark {
    position: absolute;
    font-size: 15vw;
    font-weight: 800;
    color: rgba(204, 255, 0, 0.02);
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.dr-controls {
    background: #0d0d0d;
    /* padding: 0px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* overflow-y: scroll; */
    /* padding-top: 100px;
        padding-right: 30px;
        padding-bottom: 100px; */
    font-family: "Raleway", sans-serif;
}

.description {
    color: #666 !important;
}

.dr-top-label {
    color: #ccff00;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 0;
    display: block;
    font-weight: 700;
}

.dr-accordion {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dr-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.dr-card:hover {
    border-color: #ccff00;
}

.dr-card.dr-active {
    background: #ffffff;
    border-color: #647400;
    box-shadow: unset;
}

.dr-card-header {
    padding: 0px 15px 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dr-card-header h3 {
    font-size: 1.3rem;
    /* text-transform: uppercase; */
    font-weight: 700;
    transition: 0.3s;
    margin: 0;
}

.dr-card.dr-active h3 {
    color: #000;
}

.dr-card-body {
    height: 0;
    opacity: 0;
    padding: 0 15px;
    overflow: hidden;
}

.dr-card.dr-active .dr-card-body {
    height: auto;
    opacity: 1;
    padding-bottom: 25px;
    border-top: 1px dashed #CDDC39;
    margin-top: 0px;
    padding-top: 15px;
}

.dr-card-body p {
    color: rgb(0 0 0 / 70%);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: start;
}

.dr-spec-tags {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.blg-cnt h3 {
    font-size: 30px;
}

.dr-s-tag {
    font-size: 13px;
    background: rgb(0 0 0);
    color: #ffffff;
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 20px;
}

.crm-h1 {
    font-size: 2.5rem;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 12px;
}

@media (max-width: 992px) {
    .dr-main-container2 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dr-viewport {
        display: none;
        height: 60vh;
        border-right: none;
        border-bottom: 1px solid rgba(204, 255, 0, 0.15);
    }

    .dr-controls {
        padding: 0px;
        padding-top: 0px;
    }

    .pn-main-wrapper {
        padding: 50px 0;
    }

    .pn-card {
        margin-bottom: 20px;
    }

    .crm-h1 {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: start;
    }

    .pnl-inte.active .pnl-img {
        margin-left: 1px;
        margin-top: 20px;
    }

    .cnt-sec {
        padding: 0 !important;
        padding-top: 2rem !important;
    }

    .about-section {
        margin-bottom: -100px;
    }

    .animation-section .reveal-wrapper {
        margin-bottom: 0;
    }

}


@media (max-width:1199px) {
    .mySwiper-ban1.swiper {
        height: 60vh;
    }

}