/* =========================
   CREATIONS SECTION
========================= */

.creations-section {
    padding: 20px 0;
}

/* intro */
.intro-text {
    font-family: "f2";
    font-size: 26px;
    color: #444;
    max-width: 600px;
    margin: auto;
}

.creations-title {
    font-family: "f4";
    font-size: 90px;
    margin: 100px 0 60px;
}

/* rows */
.creation-row {
    margin-bottom: 60px;
}

/* robot text */
.robot-title {
    font-family: "f4";
    font-size: 32px;
}

.robot-desc {
    font-family: "f1";
    color: #777;
    line-height: 1.6;
    margin: 16px 0;
    font-size: 18px;
}

/* explore link */
.explore-link {
    font-family: "f3";
    color: #ff5a3c;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

/* underline animation */
.explore-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ff5a3c;
    transition: width 0.3s ease;
}

/* arrow slide */
.explore-link:hover {
    gap: 10px;
}

.explore-link:hover::after {
    width: 100%;
}

/* image */
.robot-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* button */

/* =========================
   PREMIUM VIEW BUTTON
========================= */

.view-btn {
    font-family: "f3";
    background: #efefef;
    border: none;
    padding: 12px 32px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

/* animated background fill */
.view-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0%;
    height: 0%;
    background: #ff5a3c;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

/* text above animation */
.view-btn span {
    position: relative;
    z-index: 1;
}

/* hover effect */
.view-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* text color change */
.view-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}


.view-btn {
    text-decoration: none;
    color: #444;
}

a,
button {
    transition: all 0.25s ease;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .creations-title {
        font-size: 56px;
    }

    .creation-row {
        text-align: center;
    }

    .robot-img {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .creations-title {
        font-size: 40px;
    }

    .intro-text {
        font-size: 16px;
    }
}


/* =========================
   INNOVATION SECTION
========================= */

.innovation-section {
    padding: 80px 0;
}

/* title */
.section-main-title {
    font-family: "f4";
    font-size: 44px;
}

/* feature card */
.innovation-card {
    position: relative;
    margin-bottom: 70px;
}

.innovation-img {
    width: 100%;
    height: 820px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(60%);
}

/* overlay */
.innovation-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.brand-text {
    font-family: "f3";
}

.innovation-heading {
    font-family: "f4";
    margin: 10px 0 20px;
}

/* button */
.experience-btn {
    font-family: "f3";
    background: #ffffff40;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.experience-btn:hover {
    background: #ff5a3c;
}

/* rows */
.section-row {
    margin-bottom: 70px;
}

.section-title {
    font-family: "f4";
    font-size: 32px;
}

.section-subtitle {
    font-family: "f4";
    margin-bottom: 40px;
    font-size: 32px;

}

.section-desc {
    font-family: "f1";
    color: #777;
    line-height: 1.6;
    font-size: 18px;
}

.section-img {
    width: 100%;
    border-radius: 18px;
}

/* responsive */
@media (max-width: 992px) {
    .innovation-img {
        height: 320px;
    }

    .section-main-title {
        font-size: 32px;
    }

    .section-row {
        text-align: center;
    }

    .section-img {
        margin-top: 20px;
    }
}


/* =========================
   MEDIA SECTION
========================= */

.media-section {
  padding: 10px 0;
}

.section-heading {
  font-family: "f4";
  font-size: 36px;
  margin-bottom: 40px;
}

/* video cards */
.video-card {
  cursor: pointer;
}

.video-img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.35s ease;
}

.video-card:hover .video-img {
  transform: scale(1.04);
}

.video-title {
  font-family: "f1";
  margin-top: 10px;
}

/* explore more */
.explore-more {
  margin: 20px 0 60px;
}


/* partner */
    .partners-section {
      padding: 10px 0;
    }

    .section-heading {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .partner-item {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
    }

    .partner-logo {
      max-width: 160px;
      transition: 0.3s ease;
      opacity: 0.9;
    }

    .partner-logo:hover {
      transform: scale(1.05);
      opacity: 1;
    }