
/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/*
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #003056;
    color: #ffffff;
}

*/
.slides-container{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #003056;
    color: #ffffff;
}

.evenslide{
    background-color: #001e38;

}

/* ─── Shared Slide Base ─── */
.slide {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    min-height: 768px;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
}

/* ─── Shared Heading ─── */
.slide__heading {
    font-size: 48px;
    font-weight: 800;
    color: #00a8e8;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.slide__heading--centered {
    text-align: center;
}

.slide__heading--large {
    font-size: 56px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide__divider {
    width: 56px;
    height: 4px;
    background-color: #00a8e8;
    margin-bottom: 32px;
}

.slide__divider--centered {
    margin-left: auto;
    margin-right: auto;
}

.slide__text {
    font-size: 1.7rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

.slide__text--centered {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.slide__text--dark {
    color: #333333;
}

.slide__text p { margin-bottom: 16px; }
.slide__text p:last-child { margin-bottom: 0; }

/* ─── White image frame ─── */
.img-frame {
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ─── Separator ─── */
.separator {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    height: 80px;
    overflow: hidden;
}

.separator img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
    SLIDE 1: Products (cards)
    ============================================= */
.s-products {
    display: flex;
    flex-direction: column;
    background-color: #003056;
}

.s-products__header {
    text-align: center;
    margin-bottom: 56px;
}

.s-products__cards {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: stretch;
}

.card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 4px;
    padding: 48px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(0, 48, 86, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.card__icon svg {
    width: 32px;
    height: 32px;
    stroke: #003056;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 16px;
}

.card__body {
    font-size: 13px;
    line-height: 1.65;
    color: #333333;
    text-align: left;
}

.card__body p + p { margin-top: 12px; }

/* =============================================
    SLIDE 2: Spray Roaster Technology (benefits grid)
    ============================================= */
.s-tech {
    display: flex;
    flex-direction: column;
    background-color: #001e38;
}

.s-tech__content {
    display: flex;
    gap: 40px;
    flex: 1;
}

.benefits {
    flex: 0 0 58%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 140px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit__text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.benefit__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.benefit__icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 8px;
}

.callout__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #00a8e8;
    flex-shrink: 0;
}

.callout__content { flex: 1; }

.callout__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.callout__text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.callout__highlight {
    color: #00a8e8;
    font-weight: 700;
}

.callout__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
}

.callout__icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-image {
    flex: 0 0 38%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =============================================
    SLIDE 3: 2 images left, text right
    ============================================= */
.s3 {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.s3__images {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 80px;
}

.s3__images .img-frame {
    height: calc((768px * 0.75 - 80px - 16px) / 2);
}
.s3__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s3__content { flex: 1; }

/* =============================================
    SLIDE 4: text left, 2 images diagonal right
    ============================================= */
.s4 {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.s4__content { flex: 0 0 40%; }

.s4__images {
    flex: 1;
    position: relative;
    min-height: 580px;
}

.s4__images .img-frame:nth-child(1) {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 55%;
    height: 280px;
}

.s4__images .img-frame:nth-child(2) {
    position: absolute;
    right: 0;
    top: 40px;
    width: 55%;
    height: 280px;
}

/* =============================================
    SLIDE 5: text left-top, image below, image right
    ============================================= */
.s5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 32px;
}

.s5__content { grid-column: 1; grid-row: 1; }

.s5__img-bottom {
    grid-column: 1;
    grid-row: 2;
    height: 280px;
}

.s5__img-right {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 400px;
}

/* =============================================
    SLIDE 6: full background, centered text
    ============================================= */
.s6 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.s6__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 56, 0.75);
    z-index: 1;
}

.s6__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.s6 .slide__text { text-align: center; font-size: 17px; }

/* =============================================
    SLIDES 7 & 8: BAT-style info slides
    ============================================= */
.s-info {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.s-info__left {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
}

.s-info__right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.s-info__right .img-frame {
    width: 100%;
    max-height: 480px;
}

.s-info__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.s-info__bullets li {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.s-info__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00a8e8;
}

.s-info__icons {
    display: flex;
    gap: 24px;
    margin-top: auto;
    margin-bottom: 2rem;
    padding-top: 16px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 1);
}

.icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: rgb(255, 255, 255);
    fill: none;
    stroke-width: 1.5;
}

.accent-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 8px;
    background: #00a8e8;
}

/* =============================================
    RESPONSIVE
    ============================================= */
@media (max-width: 1024px) {
    .s-products__cards { flex-wrap: wrap; }
    .card { flex: 1 1 calc(50% - 10px); min-width: 260px; }
    .s-tech__content { flex-direction: column; }
    .benefits { flex: none; }
    .product-image { flex: none; max-height: 400px; }
    .product-image img { max-height: 400px; }
}

@media (max-width: 900px) {
    .slide {
    padding: 32px 24px;
    min-height: auto;
    }

    .s-split-bottom__top {
        flex-direction: column;
        gap: 32px;
    }

    .s-stack__split {
        flex-direction: column;
        gap: 32px;
    }

    .slide__heading { font-size: 36px; }
    .slide__heading--large { font-size: 36px; }

    .s-products__cards { flex-direction: column; }
    .card { flex: none; width: 100%; }

    .s-tech__content { flex-direction: column; }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .callout { flex-wrap: wrap; gap: 12px; }
    .callout__icon { display: none; }

    .s3, .s4, .s-info { flex-direction: column; }
    .s3__images, .s4__content, .s-info__left { flex: none; width: 100%; }
    .s3__images { padding-top: 0; }
    .s3__images .img-frame { height: 200px; }

    .s4__images {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    }

    .s4__images .img-frame:nth-child(1),
    .s4__images .img-frame:nth-child(2) {
    position: relative;
    inset: auto;
    width: 100%;
    height: 200px;
    }

    .s5 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    }
    .s5__content { grid-column: 1; grid-row: 1; }
    .s5__img-right { grid-column: 1; grid-row: 2; min-height: 250px; }
    .s5__img-bottom { grid-column: 1; grid-row: 3; height: 200px; }

    .s6 .slide__heading { font-size: 40px; }
    .s-info__right .img-frame { max-height: 300px; }
    .separator { height: 50px; }
}

@media (max-width: 640px) {
    .s-products { padding: 32px 20px 40px; }
    .slide__heading--large { font-size: 32px; }
}

@media (max-width: 480px) {
    .slide { padding: 24px 16px; }
    .slide__heading { font-size: 28px; }
    .s6 .slide__heading { font-size: 32px; }
    .benefits__grid { grid-template-columns: 1fr; gap: 16px; }
}
.circle-image {
/* width: 200px;
height: 200px; */
border-radius: 50%;
object-fit: cover; /* This prevents the image from stretching */
}
.image-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%; /* Or a specific size */
height: 500px; 
}

.image-container img {
position: absolute;
margin-top: 10%;
/* Centering logic */
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.top-layer {
z-index: 2;
width: 500px;
height: 500px;
border-radius: 50%;
object-fit: cover;
}

.base-layer {
z-index: 1;
width: 100%;


}

.text-seperator {
    width: 100%; 
    background-color: #bbbbbb;
    height: 2px;
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;

}



/* =============================================
     2 Columns Top, Full-Width Bottom
   ============================================= */
.s-split-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Space between the top row and bottom row */
}

.s-split-bottom__top {
    display: flex;
    gap: 48px; /* Space between the left and right info boxes */
    align-items: flex-start;
}

.s-split-bottom__left {
    flex: 1; /* Takes up equal width on the left */
}

.s-split-bottom__right {
    flex: 1; /* Takes up equal width on the right */
}

.s-split-bottom__full {
    width: 100%; /* Spans the entire combined width underneath */
}


/* =============================================
     Multi-Tier Stack Layout
   ============================================= */
.s-stack {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Uniform spacing between all stacked rows */
    width: 100%;
}

/* Fallback/reset for full-width items inside the stack */
.s-stack__full {
    width: 100%;
}

/* Two column container */
.s-stack__split {
    display: flex;
    gap: 48px; /* Gap between the columns */
    align-items: flex-start;
    width: 100%;
}

/* Individual columns taking equal space */
.s-stack__col {
    flex: 1;
}




.dark-img {
  filter: brightness(70%);
}



.contact-form {
  max-width: 500px;
  font-family: sans-serif;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #ffffff;
  font-size: 1.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #767676;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Style the send button */
button[type="submit"] {
  background-color: #f0f0f0;
  border: 1px solid #767676;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button[type="submit"]:hover {
  background-color: #e5e5e5;
}

/* Container styling to align the icon and dropdown */
.lang-switcher-container {
  display: inline-flex;
  align-items: center;
  -background-color: #121214; /* Match your deep dark background */
  -border: 1px solid #2d2d34; /* Subtle dark gray border */
  border-radius: 4px;
  padding: 4px 12px;
  font-family: system-ui, -apple-system, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-right: 5%;
}

/* Global/Language Icon */
.lang-icon {
  font-size: 2rem;
  margin-right: 8px;
  opacity: 0.8;
}

/* The actual dropdown menu */
.custom-lang-select {
  background: transparent;
  color: #000000; /* High contrast white text */
  border: none;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  padding-right: 4px;
  -webkit-appearance: none; /* Removes default browser arrow if desired */
  -moz-appearance: none;
}

/* Styling the options inside the dropdown menu */
.custom-lang-select option {
  background-color: #121214; /* Prevents white flash on dropdown expand */
  color: #ffffff;
}

/* Hover & Focus state matching your neon cyan accents */
.lang-switcher-container:hover,
.lang-switcher-container:focus-within {
  border-color: #00b0bd; /* Neon cyan accent border */
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.4); /* Soft neon glow effect */
}