:root {
    --teal: #00A8B5;
    --black: #111111;
    --white: #ffffff;
    --border: rgba(255,255,255,0.55);
    --input-bg: rgba(255,255,255,0.97);
    --placeholder: #999;
  
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
   
}
body {
    margin: 0;
    /*    font-family: Arial, sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.4px;
    position: relative;
    overflow-x: hidden;
}
/* MENU BAR */
.menu-bar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    background: #1aa0b0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
}

.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: #1aa0b0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9;
    border-bottom: 10px solid #007d93;
}

    .full-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

.close-btn {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    background: white;
    color: #1aa0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}
.menu-title {
    display: block;
    font-weight: 900;
    font-size: 22px;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: justify;
    font-style: italic;
}
.menu-link:hover {
    color: white;
}
.menu-link {
    display: block;
    font-size: 14px;
    color: white;
    text-decoration: none;
    margin: 8px 0;
   /* opacity: 0.8;*/
    text-align: justify;
    position: relative;
}

.custom-border {
    position: relative;
}
/* Centered vertical line */
.custom-border::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%; 
    width: 1px;
    background: #007d93;
}
.menu-title:hover {
    opacity: 1;
    text-decoration: none;
    color: #fff !important;
}



.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #007d93;
    transition: 0.3s;
}

.menu-link:hover::after {
    width: 60%;
}

.social-media-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.rabbit-image {
    max-width: 220px;
}
.custom-translate {
    transform: translateX(-50%) translateY(0%);
   
}
.social-media-icons a {
    background: #030303;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    padding: 7px;
}
.social-media-icons a img {
    width: 20px;
    height: 20px;
    max-width: unset;
}
.menu-links {
    display: block;
    font-size: 14px;
    color: #0b0b0b;
    text-decoration: none;
    margin: 4px 0;
    opacity: 0.8;
    text-align: justify;
    font-weight: 600;
}
.menu-links:hover {
    color: #fff;
}

.diverter-home{
    position:fixed;
    top:0;
    right:0;
}

.move-home {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
}

.move-home img {
    width: 50px;
}

.popupImg{
    width:55%;
}
/* 🎥 VIDEO SECTION */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    object-fit: cover;
    z-index: 1;
}

/* Image overlay */
.overlay-img {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.curtain-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* now matches video */
    z-index: 5;
    pointer-events: none;
}

.curtain {
    position: absolute;
    width: 50%;
    height: 100%;
    background: black;
    top: 0;
}

.curtain.left {
    left: 0;
}

.curtain.right {
    right: 0;
}
/* HERO SECTION SECOND SECTION */
.hero-section {
    background: #fff;
    min-height: 100vh;
    padding: 60px 0;
}

.hero-img {
    max-width: 90%;
}

.main-heading {
    font-size: 60px;
    font-weight: 900;
    font-style: italic;
}

.main-heading span {
    font-size: 30px;
}

.btn-green {
    background-color: #62ff00 !important;
    color: #000;
    font-weight: 600;
}

.sticker img {
    height: 100px;
    transform: rotate(-10deg);
    margin-bottom: 100px;
}
.min-vh-90 {
    min-height: 90vh !important;
}

.translate-x-30 {
    transform: translateX(35%);
    width:250px;
}

.translate-x-20 {
    transform: translateX(-20%);
    width: 250px;
}

.btn-outline-light {
    background: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
}
.btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
}

.color-strip {
    height: 20px; 
    width: 100%;
}

.color-box {
    height: 100%;
}

.purple {
    background: #a100ff;
    width: 25%;
}

.orange {
    background: #ff8c00;
    width: 25%;
}

.teal {
    background: #1aa0b0;
    width: 25%;
}

.yellow {
    background: #e6e600;
    width: 25%;
}

/*-- SIXth SECTION --*/

.work-item {
    cursor: pointer;
}

.work-img {
    transition: transform 0.4s ease;
}

.work-overlay {
    background-color:#000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-img {
    transform: scale(1.08);
}

.work-item:hover .work-overlay {
    opacity: 1;
}
.video-section-link{
    font-style:italic;
    font-weight:900;
}

.text-normal {
    text-transform: none !important;
}

.video-animation-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/*-------------------CREATE SECTION CSS-------------------------*/
.progress-container {
    width: 100%;
    height: 20px;
    position: relative;
    overflow: hidden;
}

#progressBar {
    height: 100%;
    width: 0%;
    background: transparent;
    position: absolute;
    left: 0; /* 👈 FIX: always start from LEFT */
    top: 0;
    transition: width 0.4s ease, background 0.3s ease;
}
.create-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* ICON (Mask) */
.icon-mask {
    width: 85px;
    height: 85px;
    background-color: #000;
    -webkit-mask-image: var(--img);
    mask-image: var(--img);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: 0.3s;
}

/* TEXT */
.create-text {
    font-weight: 900;
    font-style: italic;
    font-size: 27px;
    margin: 0;
    transition: 0.3s;
}

/* 🔥 HOVER-1 */
.create-card-1:hover .icon-mask {
    background-color: #961e73;
    transform: scale(1.1);
}

.create-card-1:hover .create-text {
    color: #961e73;
}
/* 🔥 HOVER-2 */
.create-card-2:hover .icon-mask {
    background-color: #00aacb;
    transform: scale(1.1);
}

.create-card-2:hover .create-text {
    color: #00aacb;
}
/* 🔥 HOVER-3 */
.create-card-3:hover .icon-mask {
    background-color: #e1cd1e;
    transform: scale(1.1);
}

.create-card-3:hover .create-text {
    color: #e1cd1e;
}
/* 🔥 HOVER-4 */
.create-card-4:hover .icon-mask {
    background-color: #f0870f;
    transform: scale(1.1);
}

.create-card-4:hover .create-text {
    color: #f0870f;
}
/* 🔥 HOVER-5 */
.create-card-5:hover .icon-mask {
    background-color: #00afb9;
    transform: scale(1.1);
}

.create-card-5:hover .create-text {
    color: #00afb9;
}
/* POPUP BACKGROUND */
.custom-popup {
    display: none;
    background: #000;
    width: 100%;
    position: relative;
    height:240px;
}

.custom-popup.active {
    display: block;
}

/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

#popupText {
    color: #ddd;
    line-height: 1.7;
    text-align:start
}
/* IMAGE */
.popup-img {
    max-width: 300px;
}

/* ANIMATION */
.custom-popup.active .popup-text {
    transform: translateY(0);
    opacity: 1;
}

.popup-text {
    transform: translateY(30px);
    opacity: 0;
    transition: 0.6s;
}

/* section 10 css*/

.team-heading {
    font-size: 5rem;
    font-style: italic;
}

.divider-line {
    width: 150px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
}

.team-card {
    background-color: #ffffff;
    padding: 10px;
}

.card-name {
    font-size: 18px;
    font-weight:800;
    font-style: italic;
}

.btn-mail {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none;
    border-radius: 0 !important;
    background-color: #000000 !important;
    color: #fff !important;
}
.team-mail {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.main {
    position: relative;
    width: calc(min(90rem, 90%));
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
}

.swiper {
    width: 100%;
    padding: 1.875rem 0;
}

.swiper-slide {
    width: 18.75rem;
    height: 35rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    box-shadow: 0.063rem 0.5rem 1.25rem hsl(0deg 0% 0% / 12.16%);
}
.swiper-slide-content {
    background: #fff;
    padding: 0 1.65rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    width: 100%;
}

.slider {
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    flex: 0 0 auto;
    padding: 15px;
}

.slide img {
    width: 100%;
    transition: transform 0.5s;
}

.slide img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

.team-card {
    perspective: 1200px;
}
.card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.6s ;
    transform-style: preserve-3d;
}
.team-card.flipped .card-inner {
    transform: rotateY(180deg);
}
.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.card-back {
    transform: rotateY(180deg);
}

.card-front video,
.card-back img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-back {
    background: #000;
}
/* Center box */
.info-box {
    padding: 20px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}
.mt-25p {
    margin-top: 25%;
}


/* Gradient fade */
.slider::before,
.slider::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, white, transparent);
}

.bottom-content a {
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

/* ── Section background light blue ── */
/* MAIN SECTION */
.main-section {
    background: linear-gradient(to bottom, #b7e9ff, #ffffff);
}
.main-section{
    padding-bottom:0 !important
}
    /* ===================================
   HERO
=================================== */
.hero {
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-weight: 900;
    font-style: italic;
    font-size: 80px;
    color: #111;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 28px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1rem;
    color: #222;
    margin-bottom: 40px;
}

.hero-subtitle .line {
    width: 150px;
    height: 1.5px;
    background: #333;
}

.hero-intro {
    font-weight: 700;
    font-style: italic;
    font-size: 24px;
    color: #111;
    line-height: 1.6;
}

/* Floating Images */
.cube-left {
    position: absolute;
    left: 80px;
    top: 210px;
    width: 210px;
    pointer-events: none;
}

.cube-right {
    position: absolute;
    right: 80px;
    bottom: 30px;
    width: 210px;
    pointer-events: none;
}

/* ===================================
   CARDS
=================================== */
.cards-section {
    padding: 40px 60px;
}

.bundle-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-25px);
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.card-body {
    padding: 25px 20px;
    text-align: center;
}

.card-title {
    font-style: italic;
    font-weight: 900;
    font-size:17px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 17px;
    line-height: 26px;
    color: #222;
    font-style: italic;
    font-weight: 500;
}

/* CTA */
.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.btn-mehr {
    background: #111;
    color: #fff;
    border: none;
    font-size: .75rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-mehr:hover {
    background-color: #ffcd46 !important;
    border: none;
    color:#000;
}

.nav-arrow {
    width: 45px;
}

/* Accent line */
.card-accent {
    height: 4px;
    width: 40px;
    margin: 0 auto;
    transition: width 0.4s ease;
    margin-top: 40px;
}

.bundle-card:hover .card-accent {
    width: 240px;
}

/* ===================================
   FOOTER
=================================== */
.footer-section {
    position: relative;
    padding-top: 80px;
    width: 100%;
    overflow: hidden;
}

.footer-scene {
    width: 100%;
    display: block;
}

.komm-rein {
    position: absolute;
    top: -30px;
    right: 20%;
    width: 220px;
}

.brand-flower {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 70px;
}

/* COLOR BAR */
.colorful-box {
    height: 20px;
    background-color: #E1DC1E;
}

.hero-wrapper {
    bottom: 0;
    left: 0;
    height: 250px;
}

/* Background scene */
.hero-bg {
 background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* Right logo */
.hero-logo {
    position: absolute;
    right: 60px;
    bottom: 20px;
    width: 120px;
}

.image-hover-wrapper {
    overflow: hidden;
}
.hover-move-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.stack-wrapper {
    position: relative;
    overflow: visible !important;
}

/* har section ko scroll space do */
.stack-section {
    position: sticky;
    top: 0;
    height: 80vh;
     overflow: hidden;
}
.stack-inner {
    height: 90vh;
    display: flex;
    align-items: center;
    will-change: transform;
}
 
/*    .stack-section::after {
        content: "";
        display: block;
        height: 60vh;
    }
.stack-section:last-child::after {
    display: none;
}*/
.image-hover-wrapper .hover-move-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% center;
    transition: object-position 4s linear;
    display: block;
}

/* Hover state – image pans smoothly to the right */
.image-hover-wrapper:hover .hover-move-img {
    object-position: 100% center;
}

/* ── Section wrapper ─────────────────────────────── */
.lets-talk-section {
    background-color: var(--teal);
    padding: 80px 340px;
}

/* ── Header: icon + title + tagline ──────────────── */
.lts-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}

.lts-icon-group {
    position: relative;
    flex-shrink: 0;
}

.lts-icon-group svg {
    width: 120px;
    height: auto;
}

.lts-title {
    font-weight: 900;
    font-size: 52px;
    line-height: 44px;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: -0.5px;
    white-space: nowrap;
    font-style: italic;
}

.lts-tagline {
    color: var(--white);
    font-size: 18px;
    line-height: 1.55;
    margin-left: auto;
}

/* ── Form inputs ─────────────────────────────────── */
.lts-input {
    background: var(--input-bg);
    border: none;
    border-radius: 0;
    color: var(--black);
    font-size: 0.95rem;
    padding: 14px 18px;
    height: 52px;
    transition: box-shadow .2s;
}

.lts-input::placeholder {
    color: var(--placeholder);
}

.lts-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.18);
    background: var(--white);
}

.lts-textarea {
    background: var(--input-bg);
    border: none;
    border-radius: 0;
    color: var(--black);
    font-size: 0.95rem;
    padding: 14px 18px;
    resize: none;
    height: 100%;
    transition: box-shadow .2s;
}

.lts-textarea::placeholder {
    color: var(--placeholder);
}

.lts-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.18);
    background: var(--white);
}

/* Keep textarea column same height as left stack */
.lts-textarea-col {
    display: flex;
    flex-direction: column;
}

.lts-textarea-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lts-textarea-wrapper .lts-textarea {
    flex: 1;
}

/* ── Privacy checkbox ────────────────────────────── */
.lts-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
}

.lts-privacy .form-check-input {
    width: 22px;
    height: 52px;
    border-radius: 0;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 0 !important;
}

.lts-privacy .form-check-input:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.lts-privacy label {
    color: var(--black);
    font-size: 0.875rem;
    line-height: 1.45;
    cursor: pointer;
    font-weight: 600;
}

.lts-privacy label a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Submit button ───────────────────────────────── */
.lts-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.03em;
    padding: 17px 140px;
    margin-top: 38px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.lts-btn:hover {
    background: #2a2a2a;
}

.lts-btn:active {
    transform: scale(0.98);
}

/* ── Section ───────────────────────────────────────── */
.engagement-section {
    padding: 64px 24px 72px;
    background: var(--white);
}

/* ── Title ─────────────────────────────────────────── */
.engagement-title {
    font-style: italic;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin-bottom: 52px;
}

/* ── Card ──────────────────────────────────────────── */
.eng-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px;
    position: relative;
}

/* Vertical divider between cards (right border on all but last) */
.eng-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--divider);
}

/* ── Logo area ─────────────────────────────────────── */
.eng-logo-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* SVG / placeholder logos */
.eng-logo-wrap svg,
.eng-logo-wrap img {
    max-height: 90px;
    max-width: 160px;
    object-fit: contain;
}

/* ── Description ───────────────────────────────────── */
.eng-desc {
    font-size:14px;
    font-weight:400;
}

/* ── Link ──────────────────────────────────────────── */
.eng-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--link-color);
    text-decoration: none;
}

.eng-link:hover {
    color: #000 !important;
}

/* ── Section ──────────────────────────────────────── */
.netzwerk-section {
    padding: 64px 0 72px;
    background: var(--bg);
    overflow: hidden;
    background-color: #f9f9f9;
}

/* ── Title ────────────────────────────────────────── */
.netzwerk-title {
    font-style: italic;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin-bottom: 48px;
}

/* ── Slider wrapper ───────────────────────────────── */
.slider-outer {
    position: relative;
    overflow: hidden;
}

/* fade edges */
.slider-outer::before,
.slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.slider-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.slider-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

/* ── Track ────────────────────────────────────────── */
.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 28s linear infinite;
    will-change: transform;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Logo card ────────────────────────────────────── */
.logo-card {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 14px 16px;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    border-radius:0 !important;
}
/* ── Footer wrapper ─────────────────────────────── */
.site-footer {
    background: var(--bg);
    padding: 56px 0 48px;
    color: var(--white);
    background: #000;
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-top: 4px;
    margin-left: 44px; /* align under "gut" part */
}

.footer-img{
    width:40%;
}
.footer-social-img{
    width:16px;
    height:24px;
}
/* ── Diamond icon ───────────────────────────────── */
.logo-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.logo-icon svg {
    width: 225px;
    height: 110px;
    flex-shrink: 0;
}

/* ── Social icons ───────────────────────────────── */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    margin-left: 44px;
}

.social-icons a {
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}


.social-icons svg {
    width: 16px;
    height: 16px;
}

/* ── Column headings ────────────────────────────── */
.footer-heading {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
}

/* ── Links & text ───────────────────────────────── */
.footer-link {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--teal);
    text-decoration: none;
    margin-bottom: 10px;
    transition: opacity .2s;
}

.footer-link:hover {
    opacity: 0.75;
    color: #e6e600;
}

.footer-text {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 6px;
}

/*---------- JOB PAGE CSS START ---------*/
.custom-text {
    font-size: 60px;
    font-weight: 900;
    font-style: italic;
}

.box-height {
    height: 410px;
}

.werkstatt-job-container {
    justify-content: center;
    display: flex;
    align-items: center;
}

.werkstatt-job-text {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    padding: 20px;
}
.chemistry-meeting-text {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    text-align: right;
    padding: 20px;
}

.werkstatt-job-text h3 {
    font-weight: 900;
}
.chemistry-meeting-text h3 {
    font-weight: 900;
}

.job-section {
    background-color: #e87e04;
}

.contact-title {
    font-size: 3rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1.1;
}

.textarea-custom {
    height: 200px;
    resize: none;
}
.left-arow:hover {
    filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(700%) hue-rotate(2deg);
}
.btn-submit {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 18px 0;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
}

.btn-submit:hover {
    background-color: #222;
    color: #fff;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: #fff;
    border: 2px solid #fff !important;
    border-radius: 0 !important;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: #fff;
}

.custom-checkbox:focus {
    outline: none;
    box-shadow: none !important;
}

/*---------- contant page css start-------------*/

.contact-section {
    background-color: #00aac8;
}

/*------------chemistry-title page css start-------------------*/
.chemistry-img{
    height:385px;
}

.chemistry-title {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
}

.faq-img{
    height:410px;
    width:410px;
}

.chemistry-text ul li {
    list-style: unset !important;
}

.chemistry-text p {
    font-size: 17px;
}

/*---------------creative-workout page css start-------------------*/
.creative-btn {
    text-transform: initial;
}

.creative-btn:hover {
    background-color:#ffcd46 !important;
    border:none;
}

.img-overlap-section {
    position: relative;
    height: 350px;
    background: #fff;
}

.img-overlap-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #000;
    z-index: 0;
}

.img-overlap-section .container {
    position: relative;
    z-index: 1;
    top: 88%;
    transform: translateY(-50%);
}

.full-img {
    transition: opacity 1s ease;
}
.full-video {
    transition: opacity 1s ease;
    opacity: 0;
}

.full-video.visible {
    opacity: 1;
}

.space {
    padding-top: 350px;
    padding-bottom: 200px;
}

.konzept-left {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0 10px;
}

.konzept-arrow {
    font-size: 1rem;
    color: #000;
    padding-top: 8px;
}

.konzept-arrow-white {
    font-size: 1rem;
    color: #fff;
    padding-top: 8px;
}

.konzept-bg-left {
    background-color: #00AAC8;
}

.konzept-bg-right {
    background-color: #002830;
}

.konzept-title {
    color: #000;
    font-size: 2rem;
}

.konzept-text {
    color: #003d30;
}

.konzept-link {
    color: #fff;
    text-decoration: underline;
}

.konzept-checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: #fff;
    margin-top: 2px;
}

.konzept-label {
    color: #003d30;
}

.lieber-title {
    font-size: 2rem;
}

.lieber-text {
    color: #aaa;
}

.lieber-img {
    width: 75px;
    height: 121px;
    object-fit: contain;
}

.btn-send {
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 1rem;
}

.btn-send:hover {
    background-color: #222;
    color: #fff;
}

.btn-meeting {
    background-color: #7fff00;
    color: #000;
    border: none;
    font-size: 1rem;
}

.btn-meeting:hover {
    background-color: #6de600;
    color: #000;
}

.bundle-img-card {
    height: 360px;
    position: relative;
    overflow: hidden;
}

.bundle-img-card:hover {
    transform: translateY(-25px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bundle-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------- work page css start -------------*/
.full-img {
    width: 100%;
    height: 576px;
    object-fit: cover;
    display: block;
}

.pt-15 {
    padding-top: 15rem !important;
}

.space-work2 {
    margin-top: 150px;
    margin-bottom: 150px;
}

/* ===== SECTION 4: NAVIGATION ROW ===== */
.nav-row-link {
    border: 1px solid #fff;
    color: #fff;
    padding: 16px 24px;
    text-decoration: none;
}

.nav-row-link:hover {
    color: #ccc;
}
/*<!-- Clickable Banner -->*/
.banner-link {
    width: 220px;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 999;
    transform: translateX(55%);
}
.banner-link:hover {
    transform: translateX(0);
}
.banner {
    background-color: #000;
    border-radius: 10px 0 0;
    padding: 20px 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.flask-icon {
    width: 60px;
    height: 90px;
}

.green-text {
    color: #00ff66;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.1;
}

.white-text {
    color: #ffffff;
    font-size: 20px;
    font-style: italic;
}

/*----------Terms & Conditions css---------------*/
.terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.terms-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-box h5 {
    margin-top: 30px;
    font-weight: 600;
}

.terms-box p {
    color: #555;
    line-height: 1.7;
}