@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

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

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(186, 186, 186, 0.35);
    --glass-blur: blur(22px);
    --nav-bg: rgba(255, 255, 255, 0.96);
    --ibdic-blue-1: #0A40A1;
    --ibdic-blue-2: #1D6DD0;
    --ibdic-sky: #EDFAFF;
    --ibdic-white: #FEFEFE;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

/* =====================================================
   CONTAINER & SECTION STYLES
   ===================================================== */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 64px;
}

section {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0px;
    }

    .container {
        padding: 0 24px;
    }

}
/* =====================================================
   header & sub-title
   ===================================================== */

.collab-header {
    margin-bottom: 40px;
}

.what-is .collab-header {
    margin-bottom: 0;
}

.eyebrow {
    color: var(--ibdic-blue-1);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}

.eyebrow::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    top: 10px;
    left: calc(100% + 6px);
    height: 0.1ch;
    background: var(--ibdic-blue-1);
}

.collab-header h2 {
    color: var(--ibdic-blue-1);
    font-size: 40px;
    margin-top: 50px;
    font-weight: 500;
}


@media (max-width: 768px) {
    .eyebrow {
        font-weight: 400;
        font-size: 14px;
    }

    .collab-header h2 {
        font-weight: 600;
        font-size: 24px;
        margin-top: 24px;
    }

    .collab-header {
        margin-bottom: 27px;
    }

}

/* =====================================================
   Testimonial swiper
   ===================================================== */

.testimonial-swiper.swiper {
  overflow: visible;
}

.testimonial-logo {
  display: flex;
  align-items: center;
}

.testimonial-logo img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.testimonial-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.name-design {
  text-align: initial;
}

.testimonial-slides {
  display: flex;
  gap: 30px;
}

.testimonial-swiper .slide-wrapper img {
  border-radius: 20px;
}

.testimonial-swiper .slide-1 {
  max-width: 1000px;
  display: flex;
  gap: 28px;
  position: relative;
  padding: 30px;
  background: var(--ibdic-sky);
  border-radius: 20px;
}

.testimonial-swiper .slide-1 img {
  border-radius: 20px;
  max-width: 352px;
}

.testimonial-swiper {
  width: 100%;
  padding-bottom: 50px;
}

.testimonial-swiper .podcast-content {
  display: flex;
  width: 100%;
  text-align: left;
}

.testimonial-swiper .right img {
  max-width: 44px;
  max-height: 32px;
}

.testimonial-swiper .testimonial-card {
  background:
    radial-gradient(ellipse, rgba(10, 64, 161, 0.1) 1px, transparent 1px),
    #edfaff;
  background-size:
    22px 22px,
    100% 100%;
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  color: #0a40a1;
  height: 100%;
  overflow: hidden;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card-top {
  display: flex;
  gap: 24px;
  align-items: center;
}

.testimonial-card-bottom {
  padding: 24px;
  text-align: initial;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  flex: 1;  /* ← THIS IS THE ONLY CHANGE */
}

.logo-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card-top img {
  object-fit: revert-rule;
  max-height: 170px;
}

.name-design h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
}

.testimonial-card-bottom p {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.name-design p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}




/* --- Values Grid --- */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.value-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 40px;
    height: 290px;
    max-height: 390px;
    display: flex;
    background-color: var(--ibdic-blue-1);
    color: #fff;

}

.value-card--wide {
    width: 66%;
}

.value-card--narrow {
    width: 33%;
}

.value-card--medium {
    width: 44%;
}

.value-card--large {
    width: 55%;
}

.value-card__content h3 {
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 12px;
}

.value-card__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}

.value-card--wide .value-card__content {
    max-width: 400px;
}

.value-card--narrow .value-card__content {
    max-width: 300px;
}

.value-card--medium .value-card__content {
    max-width: 315px;
}

.value-card--large .value-card__content {
    max-width: 400px;
}

.value-card__gif {
    position: absolute;
    right: 0;
    top: 50px;
}

.value-card__gif img {
    width: 300px;
    height: 300px;
    /* mix-blend-mode: soft-light; */
    opacity: 60%;
}


@media (max-width: 768px) {

    /* value cards media */
    .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Remove the flex-based width classes on mobile */
    .value-card--wide,
    .value-card--narrow,
    .value-card--medium,
    .value-card--large {
        width: 100%;
    }

    .value-card {
        padding: 20px 16px;
        height: auto;
        min-height: 160px;
        border-radius: 16px;
    }

    /* Card 1 (Transparency Rules) — tall left card, spans 2 rows */
    .value-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 320px;
    }

    /* Card 2 (Learn. Grow. Evolve.) — top right */
    .value-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Card 3 (Balance is Key) — bottom left */
    .value-card:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    /* Card 4 (Fuel Your Potential) — tall right card, spans 2 rows */
    .value-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2 / 4;
        min-height: 320px;
    }

    .value-card__content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .value-card__content p {
        font-size: 12px;
        line-height: 18px;
    }

    .value-card--wide .value-card__content,
    .value-card--narrow .value-card__content,
    .value-card--medium .value-card__content,
    .value-card--large .value-card__content {
        max-width: 100%;
    }

    .value-card__gif {
        position: absolute;
        right: 0;
        top: initial;
        bottom: 0;
    }

    .value-card__gif img {
        width: 120px;
        height: 120px;
    }

}


@media (max-width: 1024px) {

    /* value cards media */
    .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Remove the flex-based width classes on mobile */
    .value-card--wide,
    .value-card--narrow,
    .value-card--medium,
    .value-card--large {
        width: 100%;
    }

    .value-card {
        padding: 32px 26px;
        height: auto;
        min-height: 240px;
        border-radius: 16px;
    }

    /* Card 1 (Transparency Rules) — tall left card, spans 2 rows */
    .value-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 320px;
    }

    /* Card 2 (Learn. Grow. Evolve.) — top right */
    .value-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Card 3 (Balance is Key) — bottom left */
    .value-card:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    /* Card 4 (Fuel Your Potential) — tall right card, spans 2 rows */
    .value-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2 / 4;
        min-height: 320px;
    }

   
    .value-card--wide .value-card__content,
    .value-card--narrow .value-card__content,
    .value-card--medium .value-card__content,
    .value-card--large .value-card__content {
        max-width: 100%;
    }

    .value-card__gif {
        position: absolute;
        right: 0;
        top: initial;
        bottom: 0;
    }

    .value-card__gif img {
        width: 120px;
        height: 120px;
    }

}


.last {
    padding-bottom: 100px;
}



/* =====================================================
  Marquee swiper 
   ===================================================== */

.marquee-container {
    width: 100%;
}

.geek-flex {
    display: flex;
    width: max-content;
    gap: 130px;
    padding-right: 130px;
    animation: marqueeMove 30s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    max-height: 67px;
    align-items: center;
}

.geek1 {
    flex-shrink: 0;
}

.geek-flex:hover {
    animation-play-state: paused;
}

.geek1 img {
    width: auto;
    display: block;
    transition: 0.3s ease;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* common secondary header */

section.hero-secondary {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-secondary .container {
    max-width: none;
    width: 100%;
    padding: 0;
    height: 100%;
}

.secondary-hero-media {
    height: 100%;
    width: 100%;
    position: relative;
}

.secondary-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.secondary-hero-overlay {
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    width: 100%;
    height: 100%;
}

.secondary-hero-overlay-content {
    padding-left: 64px;
    max-width: 877px;
}

.secondary-hero-overlay-content-small {
    padding-left: 64px;
    max-width: 650px;
    position: absolute;
    bottom: 74px;
    text-wrap: balance;
}

.secondary-hero-overlay h1.xl {
    font-weight: 600;
    font-size: 56px;
    margin-bottom: 12px;
}

.secondary-hero-overlay h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.28;
    margin-bottom: 12px;
}


.secondary-hero-overlay p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
}

.secondary-hero-overlay p.p-xl {
    font-weight: 400;
    font-size: 20px;
}

.secondary-hero-segment-tag {
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 24px;
    border: 1px solid rgba(186, 186, 186, 0.35);
    background: none;
    backdrop-filter: blur(12px);
    color: var(--ibdic-white);
    cursor: default;
    display: inline-block;
}

.secondary-hero-segment {
    font-weight: 400;
    font-size: 16px;
    color: var(--ibdic-white);
    margin-bottom: 12px;
}

.secondary-hero-cta-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 16px 24px;
    border: none;
    border-radius: 25px;
    background: var(--ibdic-blue-2);
    color: var(--ibdic-white);
    margin-top: 40px;
}

.black-section-overlay {
    background: linear-gradient(246.06deg, rgba(0, 0, 0, 0) -0.17%, #000000 92.36%);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;

}


section.hero-secondary {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-secondary .container {
    max-width: none;
    width: 100%;
    padding: 0;
    height: 100%;
}

.secondary-hero-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.secondary-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.secondary-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
}

.secondary-hero-overlay-content {
    padding-left: 64px;
    max-width: 950px;
    position: absolute;
    bottom: 74px;
}

.secondary-hero-overlay h1.xl {
    font-weight: 600;
    font-size: 56px;
    margin-bottom: 12px;
}

.secondary-hero-overlay h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.secondary-hero-segment {
    font-weight: 400;
    font-size: 16px;
    color: var(--ibdic-white);
    margin-bottom: 12px;
}

.secondary-hero-segment-tag {
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 24px;
    border: 1px solid rgba(186, 186, 186, 0.35);
    background: none;
    backdrop-filter: blur(12px);
    color: var(--ibdic-white);

}

.secondary-hero-cta-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 16px 24px;
    border: none;
    border-radius: 25px;
    background: var(--ibdic-blue-2);
    color: var(--ibdic-white);
    margin-top: 40px;
}


.extra-top-padding {
    padding-top: 120px;
}

.black-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(246.06deg,
            rgba(0, 0, 0, 0) -0.17%,
            #000000 92.36%);
}

@media (max-width: 768px) {
    .secondary-hero-overlay-content {
        padding: 0 24px;
    }

    .secondary-hero-overlay-content-small {
        padding-left: 24px;
        padding-right: 24px;
    }

    .secondary-hero-overlay h1.xl {
        font-size: 32px;
    }

    .extra-top-padding {
        padding-top: 100px;
    }

    .geek-flex {
        gap: 20px;
    }

    .geek1 img {
        width: 65%;
    }

}