/* =========================
   FOURTH SECTION BACKGROUND
   ========================= */
.fourth-section {
  background-color: #fbf8ff;
  margin-top: 100px;
}

/* =========================
   FOURTH SECTION TITLE IMAGE
   ========================= */
.fourthtitle {
  position: absolute;
  top: 340%;
  left: 0;
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   FOURTH SECTION BODY IMAGE
   ========================= */
.fourthbody {
  position: absolute;
  top:375%;
  left: 0;
  width: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
}

/* =========================
   FOURTH SECTION MAIN ROW
   ========================= */
.row-fourth {
  position: relative;            /* normal document flow */
  width: 100%;
  display: flex;
  justify-content: center;       /* horizontal centering */
  align-items: center;           /* vertical centering */
  flex-wrap: wrap;
  padding: 180px 130px 0 150px;
  top: -500px;            /* pull section upward */
  box-sizing: border-box;
  z-index: 1;
}

/* =========================
   COLUMN WRAPPER
   ========================= */
.col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   IMAGE STYLING INSIDE COLUMNS
   ========================= */
.col img {
  width: auto;
  max-width: 100%;
  height: 525px;
  object-fit: contain;
  display: block;
  margin-top: 260%;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Image hover pop effect */
.col img:hover {
  transform: translateY(-6px) scale(1.03);
}

/* =========================
   FOURTH SECTION TITLE ROW
   ========================= */
.row-title {
  top: -550px;
  position: relative;
  z-index: 2;
  padding: 20px 0 100px 160px;   /* left-aligned spacing */
  margin-top: 60px;
}

/* =========================
   TITLE TEXT STYLES
   ========================= */
.t1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
}

.t2 {
  font: italic 800 30px 'Poppins', sans-serif;
  margin-top: -40px;
}

/* =========================
   SCROLLING BANNER WRAPPER
   ========================= */
.fourth-scrolling-banner-wrapper {
  position: absolute;
  top: 470%;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: auto;
}

/* =========================
   BASE SCROLLING BANNER
   ========================= */
.fourth-scrolling-banner {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  position: relative;
  white-space: nowrap;
  top: 650%;
}

/* Right-aligned banner (optional) */
.fourth-scrolling-banner.right {
  text-align: right;
}

/* =========================
   SCROLLING TRACK
   ========================= */
.fourth-scrolling-track {
  display: inline-flex;
  width: max-content;
  animation: fourth-scroll-left-to-right 18s linear infinite;
  font-size: 1.5em;
}

/* =========================
   BANNER TEXT
   ========================= */
.fourth-scrolling-banner p {
  margin: 5px 40px;
  font-weight: 600;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* Emphasized banner text */
.fourth-scrolling-banner .fourth-rightbanner {
  font-weight: 800;
}

/* Highlighted words */
.fourth-scrolling-banner .play {
  color: #6f4cb2;
  font-weight: 700;
  font-style: italic;
}

.fourth-scrolling-banner .culture {
  color: #63c5b4;
  font-weight: 700;
  font-style: italic;
}

.fourth-scrolling-banner .technology {
  color: #fcc810;
  font-weight: 700;
  font-style: italic;
}

/* =========================
   KEYFRAMES (LEFT → RIGHT)
   ========================= */
@keyframes fourth-scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =========================
   CORE MESSAGE IMAGE
   ========================= */
.core-message {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: -30px auto;
  z-index: -3;
  margin-top: -590px;
}

/* =========================
   FIFTH SECTION BACKGROUND
   ========================= */
.fifth-banner {
  background: linear-gradient(
    90deg,
    #ddc4f1 0%,
    #f1e8fd 50%,
    #f4f4fe 100%
  );
  padding-bottom: 650px;
  margin-top: -80px;
}

/* =========================
   FIFTH SECTION CONTENT
   ========================= */
.fifthcontent {
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 150px auto;
}

/* Fifth section subtitle */
.fifthcontent h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-family: "Times New Roman", Times, serif;
}


/* Fifth section main heading */
.fifthcontent h1 {
  font-size: 42px;
  font-weight: 700;
  margin-top: -15px;     /* moves text up slightly */
  margin-bottom: 40px;
  color: #030016;
  font-family: "Poppins", Arial, sans-serif;
}

/* =========================
   FIFTH SECTION BUTTON
   ========================= */
.fifthvisit-button {
  width: 250px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: -10px;
}
.mobile-break {
  display: none;
}
.row-fourth-mobile {
  display: none;
}
.stepinsidebgmobile{
  display: none;
}
.core-messagem {
  display: none;
}

/* ============================= */
/* STATEMENT SECTION – TRUE CENTER */
/* ============================= */

.statement-section {
  position: relative;
  z-index: 10;
  margin-top: -550px;
  padding-bottom: 350px;
  background: transparent;
  opacity: 0;
  transform: translateY(-40px); /* fade DOWN */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
/* WHEN VISIBLE */
.statement-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 REMOVE BOOTSTRAP SIDE OFFSET */
.statement-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* CENTER WRAPPER */
.statement-inner {
  max-width: 1100px;       /* wider = better optical center */
  margin: 0 auto;
  text-align: center;
}

/* EYEBROW */
.statement-eyebrow {
  margin-bottom: 16px;
  text-align: center;
  font-size: 30px;
}
.stepinsidebgmobile{
  top: -20%;
}

/* 🔑 TRUE OPTICAL CENTER HEADING */
.statement-heading {
  display: inline-block;   /* shrink to text width */
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  /* 🔥 OPTICAL ADJUSTMENT */
  transform: translateX(-1px);
}
.enter-button{
  margin-top: 50px;
  width: 250px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 425px) {
  .fourthtitle {
    position: relative;
    top: -450px;
    display: block;
    width: 120%;
    z-index: 10;
    left: -10%;
  }
  .row-title{
    padding: 20px 0 100px 20px;
    top: -450px;
  }
  .mobile-break {
    display: inline;
  }
  .t1 {
    font-size: 20px;
  }
  .t2 {
    font-size: 24px;
    position: relative;
    top: 5px;
  }
  .row-fourth{
    display: none;
  }
  .fourthbody {
    display: none;
  }

/* ================================
   STEP INSIDE BACKGROUND (MOBILE)
   ================================ */
.stepinsidebgmobile {
    display: block;
    position: absolute;
    top: 170%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

/* ================================
   ROW FOURTH IMAGES (ON TOP)
   ================================ */
.row-fourth-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  top: -250px;
  position: relative; /* REQUIRED for z-index */
  z-index: 10;        /* above background */
}

.row-fourth-mobile .col {
  position: relative;
  top: -160px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.row-fourth-mobile img {
  display: block;
  width: 80%;
  max-width: 360px;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  top: 65px;
}

#entermettacitym {
  display: block;
        width: 150px;
        height: auto;
  margin-top: 15px;
}
.core-message {
  display: none;
}
.core-messagem {
  display: block;
  position: absolute;
  top: 312%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0; /* background layer */
} 

.fourth-scrolling-banner-wrapper {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 35px;
  overflow: hidden;
}
/* Image hover pop effect */
.col img:hover {
  transform: none; /* disable hover effect on mobile */
}
.fifthcontent {
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 100px auto;
}
  .fifthcontent h2 {
    font-size: 18px;
    position: relative;
    top: -250px;     /* 👈 moves it UP */
    margin-top: 0; /* reset push-down */
  }
  .fifthcontent h1 {
    font-size: 16px;
    position: relative;
    top: -260px;     /* 👈 moves it UP */
    margin-top: 0; /* reset push-down */
  }

.fifthvisit-button {
    position: relative;
    margin-top: -560px; /* 👈 moves it UP */
    width: 150px;
    height: auto;
}
.fifth-banner {
  background: none;
  padding-bottom: 0;
  margin-top: 0;
}
/* ============================= */
/* STATEMENT SECTION – TRUE CENTER */
/* ============================= */

.statement-section{
  margin-top: -200px;
  margin-bottom: 50px;
}
/* EYEBROW */
.statement-eyebrow {
  position: relative;
  top: 25px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 15px;
}


.statement-heading {
  font-size: 18px;
}
.enter-button{
  margin-top: 50px;
  width: 150px;
  height: auto;
}
.statement-inner{
  margin-top: 50px;
}
}