@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
    --exp-bg-color: #f5f5f5;
    --exp-text-primary: #1a1a1a;
    --exp-text-secondary: #666666;
    --exp-btn-bg: #ffffff;
    --exp-btn-text: #1a1a1a;
    --exp-icon-bg: rgba(255, 255, 255, 0.15);
    --exp-icon-backdrop: blur(10px);
    --exp-border-radius: 24px;
    --exp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0F5132;
    --light-gray: #E5E7EB;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --zm-primary: #1a1a1a;
    --zm-secondary: #4a4a4a;
    --zm-accent: #2d5016;
    --zm-text-muted: #6b6b6b;
    --zm-border-color: #F6F7F9;
    --zm-seal-bg: #ECF5F5;
    --zm-seal-hover: #e0eded;
    --zm-card-bg: #ffffff;
    --zm-tab-border: #e0ddd6;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- Header Styles --- */
.header-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

header {
    border-radius: 999px;
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 68px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    border: 1px solid #fff; /* ✅ 2px white border */
}

/* header {
    border-radius: 999px;
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
} */

.nav-left,
.nav-links {
    display: flex;
    gap: 55px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-left a,
.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 21px;
    font-weight: 300;
    font-family: 'Avenir';
    /* font-family: Arial, sans-serif; */
    letter-spacing: 0.15px;
    transition: color 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.icon-group {
    display: flex;
    gap: 30px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-first-btn {
    background: none;
    border: none;
}

/* --- Banner Styles --- */
.banner {
    position: relative;
    overflow: hidden;

    height: 130vh;              /* ✅ full screen */
    min-height: 600px;
    width: 100%;                /* ❌ 100vw hatao */

    background: url('../images/main-image/2.jpeg') center/cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    padding: 100px 20px 40px;   /* 🔥 better spacing */
}

/* .banner {
    height: 140vh;
    min-height: 600px;
    width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/main-image/main-image.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
} */

/* .banner {
    position: relative;
    overflow: hidden;
    background: none !important;
    
    height: 100vh; 
    min-height: 500px;
    width: 100%;
}

.bg-video-file {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.banner-content,
.tv-container {
    position: relative;
    z-index: 2;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
} */
/* --- TV Container --- */
.tv-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/10;
    z-index: 10;
}

.tv-screen {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 8%;
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* --- Product Slider --- */
.product-slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.product-display {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex: 1;
    width: 100%;
}

.product-item {
    flex: 0 0 auto;
    max-width: 40%;
}

.product-item:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-img {
    width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.product-title {
    color: white;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: auto;
    padding-bottom: 20px;
}

/* --- Slider Navigation --- */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-dark);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* --- Slider Dots --- */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* --- Banner Content --- */
.banner-content {
    width: 100%;
    max-width: 1400px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* --- CTA Buttons --- */
.cta-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-family: inherit;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* button hover image */
.banner-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    transition: gap 0.3s ease;
}

.banner-content .btn .btn-icon {
    display: inline-flex;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.banner-content .btn:hover .btn-icon {
    width: 20px;
    opacity: 1;
}

.banner-content .btn:hover {
    gap: 8px;
}

.banner-content .btn .btn-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

/*  */
/* --- Responsive Design --- */

/* Tablets */
@media (max-width: 1024px) {
    .tv-container {
        width: 60%;
        max-width: 600px;
    }

    .product-title {
        font-size: clamp(20px, 3.5vw, 36px);
        letter-spacing: 3px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .nav-content {
        padding: 0 20px;
    }

    .nav-left,
    .nav-right {
        gap: 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-content {
        padding: 0 15px;
    }

    .nav-left,
    .nav-right {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }

    .banner {
        height: 120vh;
        min-height: 700px;
    }

    .tv-container {
        width: 70%;
        max-width: 500px;
        top: 45%;
    }

    .tv-screen {
        padding: 10%;
    }

    .product-display {
        gap: 15px;
    }

    .product-img {
        max-height: 250px;
    }

    .product-title {
        font-size: clamp(18px, 3vw, 28px);
        letter-spacing: 2px;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-section {
        gap: 12px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .banner {
        height: 100vh;
        min-height: 600px;
    }

    .tv-container {
        width: 85%;
        max-width: 400px;
        top: 40%;
        height: 500px;
    }

    .tv-screen {
        padding: 12%;
        border-radius: 10px;
    }

    .product-display {
        gap: 10px;
        margin-bottom: 15px;
    }

    .product-item {
        max-width: 100%;
    }

    .product-img {
        max-height: 100%;
    }
    .banner-content .btn{
        display: block;
    }

    .product-title {
        font-size: clamp(16px, 4vw, 24px);
        letter-spacing: 1.5px;
        padding-bottom: 10px;
    }

    .slider-nav {
        width: 28px;
        height: 28px;
    }

    .slider-nav.prev {
        left: 5px;
    }

    .slider-nav.next {
        right: 5px;
    }

    .slider-nav svg {
        width: 18px;
        height: 18px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 20px;
    }

    .banner-content {
        padding-bottom: 40px;
    }

    .cta-section {
        gap: 10px;
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .tv-container {
        width: 90%;
    }
  .icon-group {
      gap: 18px !important;
    }

    .product-img {
        max-height: 250px !important;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .cta-section {
        gap: 8px;
    }
}

/* Zero background Image change */
.ze-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    text-align: center;
    margin-bottom: 60px;
    /* padding: 40px 20px; */
    margin-top: 30px;
}

.ze-title {
    color: #1a1a1a !important;
    font-size: 38px !important;
    /* font-family: 'Glacial Indifference', sans-serif !important; */
    font-family: 'Avenir', sans-serif;
    font-weight: 700 !important;
    line-height: 50.4px !important;
    margin-bottom: 12px !important;
    display: block !important;
    visibility: visible !important;
}

.ze-subtitle {
    color: rgba(0, 0, 0, 0.50) !important;
    font-size: 20px !important;
    font-family: 'Glacial Indifference', sans-serif !important;
    font-weight: 400 !important;
    line-height: 27.2px !important;
    max-width: 600px;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ze-title {
        font-size: 32px !important;
    }

    .ze-subtitle {
        font-size: 18px !important;
    }
}

@media (max-width: 576px) {
    .ze-title {
        font-size: 28px !important;
    }

    .ze-subtitle {
        font-size: 16px !important;
    }
}

/* End */
/* Zero Essentials */
.ze-section {
    padding: 80px 20px;
    background: #ffffff;
}

.ze-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ze-header {
    text-align: center;
    /* margin-bottom: 50px; */
        margin-bottom: 13px;
}

.ze-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    /* font-family: 'Outfit', sans-serif; */
    font-family: 'Avenir', sans-serif;
}

.ze-subtitle {
    font-size: 16px;
    color: #6B7280;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
}

.ze-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ze-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ze-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ze-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
}

.ze-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ze-card-content {
    padding: 20px;
}

.ze-card-title {
    font-size: 24px;
    font-weight: 200;
    color: #1F2937;
    margin-bottom: 8px;
    /* font-family: "Century Gothic", sans-serif; */
    font-family: 'Avenir';
}

.ze-card-desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 42px;
    font-family: "Century Gothic", sans-serif;
}

.ze-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ze-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #0F5132;
    font-weight: 500;
    background: #D1FAE5;
    padding: 5px;
    border-radius: 13px;
}

.ze-badge-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.ze-btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.ze-btn-primary {
    background: #0F5132;
    color: white;
}

.ze-btn-primary:hover {
    background: #0a3a23;
    transform: scale(1.02);
}

.ze-btn-secondary {
    background: #9CA3AF;
    color: white;
    cursor: not-allowed;
}

/* Zero Section Css */
.zed-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0 120px;
    overflow: hidden;
}

.zed-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 0px;
    overflow: hidden;
}

.zed-header {
    margin-bottom: 60px;
}

.zed-logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.zed-logo-text span {
    font-size: 18px;
    letter-spacing: 10px;
    font-weight: 400;
}

.zed-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

/* Swiper Container */
.zed-swiper {
    padding: 40px 0 60px;
    overflow: visible !important;

}

.zed-swiper .swiper-wrapper {
    align-items: center;
}

/* Slider Configuration - Side cards bigger */
.zed-swiper .swiper-slide {
    width: 500px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.88) translateY(15px);
    opacity: 0.7;
    z-index: 1;
}

/* Previous and Next slides positioning */
.zed-swiper .swiper-slide-prev,
.zed-swiper .swiper-slide-next {
    transform: scale(0.88) translateY(15px);
    opacity: 0.7;
}

/* Center Active Slide - Slightly larger */
.zed-swiper .swiper-slide-active {
    transform: scale(1.08) translateY(0);
    opacity: 1;
    z-index: 10;
}

/* Card Styling */
.zed-collab-card {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
    cursor: grab;
}

.zed-swiper .swiper-slide-active .zed-collab-card {
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6);
}

.zed-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zed-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.zed-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 28px;
    z-index: 2;
    align-items: center;
    gap: 11px;
}

.zed-label-btn {
    align-self: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: default;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.zed-card-text {
    text-align: center;
}

.zed-card-title {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.0px;
    font-family: Arial;
    /* font-family: 'Outfit', sans-serif; */
}

.zed-card-desc {
    font-size: 15px;
    color: rgb(207 197 197 / 95%);
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.zed-cta-btn {
    background: white;
    color: #0F5132;
    border: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}
.bottom-margin{
    margin-bottom: 20px;
}
.zed-cta-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Bottom Collaborations Image */
.zed-bottom-graphic {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.zed-collab-text-img {
    width: 100%;
    display: block;
    height: auto;
    opacity: 1;
}

/* Experience Section  */
.exp-section {
    padding: 80px 20px;
}

.exp-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header Styles */
.exp-header {
    text-align: center;
    margin-bottom: 60px;
    animation: exp-fadeInUp 0.8s ease-out;
}

.exp-title {
    /* font-family: 'Space Grotesk', sans-serif; */
    font-family: 'Avenir', sans-serif;
    font-size: 64px;
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    font-weight: 700;
    color: var(--exp-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.exp-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--exp-text-secondary);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
}

/* Cards Grid */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/* Individual Card */
.exp-card {
    animation: exp-fadeInUp 0.8s ease-out backwards;
}

.exp-card:nth-child(1) {
    animation-delay: 0.1s;
}

.exp-card:nth-child(2) {
    animation-delay: 0.2s;
}

.exp-card:nth-child(3) {
    animation-delay: 0.3s;
}

.exp-card-inner {
    position: relative;
    height: 500px;
    border-radius: var(--exp-border-radius);
    /* FIXED: Better background image handling */
    background-size: cover;
    background-position: center 40%;
    /* Shifted up to show more image content */
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    transition: var(--exp-transition);
    cursor: pointer;
}

.exp-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

/* Icon Container */
.exp-card-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: var(--exp-icon-bg);
    backdrop-filter: var(--exp-icon-backdrop);
    -webkit-backdrop-filter: var(--exp-icon-backdrop);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--exp-transition);
}

.exp-card-inner:hover .exp-card-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.exp-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Card Content */
.exp-card-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.exp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    /* text-transform: uppercase; */
}

.exp-card-description {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 400;
}

/* Button Styles */
.exp-card-btn {
    background: var(--exp-btn-bg);
    color: var(--exp-btn-text);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--exp-transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exp-card-btn:hover {
    background: #f8f8f8;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.exp-card-btn svg {
    transition: transform 0.3s ease;
}

.exp-card-btn:hover svg {
    transform: translateX(4px);
}

/* Animations */
@keyframes exp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Footer Image */
.zm-fullwidth-hero {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: 100px;
}

.zm-fullwidth-hero__container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.zm-fullwidth-hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

/* End */
/* Footer Section */
.zm-footer {
    width: 100%;
    background: #edebe7;
    padding: 60px 24px 40px;
}

.zm-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Social Media Icons */
.zm-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 8px;
}

.zm-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
    text-decoration: none;
}

.zm-footer__social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.zm-footer__social-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: #4a4a4a;
}

/* Copyright Text */
.zm-footer__copyright {
    font-size: 0.875rem;
    color: #6b6b6b;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

/* Tagline Image */
.zm-footer__tagline-fullwidth {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #edebe7;
}

.zm-footer__tagline-fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
}

/* End */
/* Marketplace css */
.zm-features {
    max-width: 1400px;
    margin: 0 auto;
    /* Centers the section */
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.zm-features__heading {
    font-family: 'Avenir', sans-serif;
    /* font-family: 'Fraunces', Georgia, serif; */
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    font-size: 34px;
    /* margin-bottom: 40px; */
    margin-left: 25px;
    margin-top: 40px;
    color: var(--zm-primary);
}

/* ========================================= */
/* TAB HEADER - SEPARATE (stays fixed) */
/* ========================================= */

.zm-tab-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 32px;
}

.zm-features__description {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--zm-secondary);
    max-width: 550px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: right;
    line-height: 1.6;
}

/* Tab Navigation */
.zm-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
}

.zm-tab {
    background: transparent;
    border: none;
    color: var(--zm-primary);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.zm-tab:hover {
    background: rgba(0, 0, 0, 0.05);
}

.zm-tab.zm-active {
    background: #000000;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========================================= */
/* CONTENT GRID - Changes on tab click */
/* ========================================= */

.zm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    background-color: #F6F8F9;
    border-radius: 20px;
}

/* Hidden class for inactive tabs */
.zm-hidden {
    display: none !important;
}

/* ========================================= */
/* LEFT COLUMN - Feature List */
/* ========================================= */

.zm-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    padding: 20px 20px 20px 20px;
}

/* Feature Items */
.zm-feature-item {
    margin-bottom: 32px;
}

.zm-feature-item:last-of-type {
    margin-bottom: 0;
}

.zm-feature-item__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--zm-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.zm-feature-item__title::before {
    content: '•';
    color: var(--zm-primary);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -2px;
}

.zm-feature-item__text {
    font-size: 0.9rem;
    color: var(--zm-text-muted);
    line-height: 1.7;
    padding-left: 27px;
}

/* Zero Seal Card */
.zm-seal {
    margin-top: 48px;
    padding: 32px;
    background-color: #ecf5f5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.3s ease;
    border: 1px solid #dfdfdf;
}

.zm-seal:hover {
    background: var(--zm-seal-hover);
}

.zm-seal__content {
    flex: 1;
}

.zm-seal__title {
    /* font-family: 'Fraunces', Georgia, serif; */
     font-family: Arial;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--zm-primary);
    line-height: 1.3;
}

.zm-seal__text {
    color: var(--zm-text-muted);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.zm-seal__button {
    background: transparent;
    border: 1.5px solid var(--zm-primary);
    color: var(--zm-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.zm-seal__button:hover {
    background: var(--zm-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zm-seal__badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.25rem;
    color: white;
    flex-shrink: 0;
}

/* ========================================= */
/* RIGHT COLUMN - Showcase Card */
/* ========================================= */

.zm-showcase {
    position: relative;
    border-radius: 0px 20px 20px 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.zm-showcase:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.zm-showcase__icon {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 1.4rem;
}

.zm-showcase__content {
    position: relative;
    z-index: 2;
}

.zm-showcase__title {
    font-family: sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.zm-showcase__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.5;
}

.zm-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.zm-showcase__cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

.zm-showcase__cta:hover::after {
    transform: translateX(4px);
}

/*End  */
/* Animation Part */
.zm-seal__badge img {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Zero essientials image change*/
.ze-section {
    position: relative;
    transition: background 0.5s ease;
}

.ze-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

/* Target cards inside .ze-grid */
/* .ze-section:has(.ze-grid .ze-card:nth-child(1):hover)::before {
    background-image: url('../images/2b25586b7aa5b88a6da704b3bdf1c012249a4091.png');
    opacity: 1;
}

.ze-section:has(.ze-grid .ze-card:nth-child(2):hover)::before {
    background-image: url('../images/zero-slider-3.png');
    opacity: 1;
}

.ze-section:has(.ze-grid .ze-card:nth-child(3):hover)::before {
    background-image: url('../images/zero-slider-2.png');
    opacity: 1;
}

.ze-section:has(.ze-grid .ze-card:nth-child(4):hover)::before {
    background-image: url('../images/zero-slider-1.png');
    opacity: 1;
} */

/* Text color change */
.ze-section:has(.ze-card:hover) .ze-title {
    color: #ffffff;
    transition: color 0.5s ease;
}

.ze-section:has(.ze-card:hover) .ze-subtitle {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.5s ease;
}

/* Keep content above background */
.ze-container {
    position: relative;
    z-index: 1;
}


/*hamburger menu*/
/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 0 24px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.4s ease, padding 0.3s ease, visibility 0.3s ease;
    display: flex; /* always flex, controlled by visibility/opacity */
}
.mobile-menu.open {
    visibility: visible;
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 28px 24px;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile-nav a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: color 0.3s ease;
}
.mobile-nav a:hover {
    color: rgba(0, 0, 0, 0.5);
}
.mobile-icons {
    display: flex;
    gap: 20px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    header {
        grid-template-columns: 1fr auto auto;
        border-radius: 999px;
        padding: 10px 16px;
        gap: 0;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo {
        grid-column: 1;
        justify-content: flex-start;
    }

    .hamburger {
        display: flex;
        grid-column: 3;
        margin-left: auto;
    }
}

/* edit by ashish */
/* 27-0-2026 */
.button-convert-href {
    display: block; 
    width: 100%;
    text-align: center;
}
/* 27-0-2026 */

/* 11-03-2026 */
    .zm-hidden{
display:none;
}
  .bgr {
    background-color: #edebe7;
  }
/* 11-03-2026 end */

/* 12-03-2026 */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6{
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

/* Mobile View */
@media (max-width: 768px){
    .col-md-6{
        width: 100%;
        text-align: center;
    }
}
/* 12-03-2026 end */

/* edit by ashish end */

