/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #ffffff;
  --bg-2: #ecebe8;
  --text: #101722;
  --muted: #8f918f;
  --line: #252b35;
  --accent: #ff7b22;
  --dark: #0b1420;
  --white: #ffffff;
  --header-h: 104px;
  --qiro: #14637b;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ========================Animation============================== */


/* =========================
   REVEAL ANIMATION
========================= */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s ease;
}

/* UP */
.reveal-up {
  transform: translateY(80px);
}

/* LEFT */
.reveal-left {
  transform: translateX(-80px);
}

/* RIGHT */
.reveal-right {
  transform: translateX(80px);
}

/* ACTIVE */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Body base style */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Remove default underline */
a {
  text-decoration: none;
}

/* =========================
   MDX STYLE HEADER
========================= */

.topbar {
  transition:
    background .45s ease,
    backdrop-filter .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}



.topbar.dark-nav .talk-link,
.topbar.dark-nav .audio-trigger,
.topbar.dark-nav .nav-center a {
  color: #fff;
}

.topbar.dark-nav .divider {
  background: #fff;
}

.topbar.dark-nav .menu-btn span {
  background: #fff;
}

.topbar.dark-nav .talk-link::after {
  background: #fff;
}

.topbar.dark-nav .logo img {
  filter: brightness(0) invert(1);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  z-index: 1000;

}


.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: all .3s ease;

}

.divider {
  width: 1px;
  height: 24px;
  background: #1b2230;
  opacity: .7;
  transition: background-color .45s ease;
}


.nav-center {
  display: none;
}

/* Let's Talk */

.talk-link {
  position: relative;

  font-size: 18px;
  font-weight: 300;
  color: #1d2430;

  text-decoration: none;
  letter-spacing: .5px;
}

.talk-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: #1d2430;
}

.talk-link span {
  color: #ff7b22;
  margin-left: 4px;
  font-size: 20px;
}

/* hamburger */

.menu-btn {
  width: 54px;
  height: 34px;

  border: none;
  background: transparent;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 10px;
  cursor: pointer;
}

.menu-btn span {
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background: #1d2430;
}

.menu-btn span:last-child {
  width: 80%;
  margin-left: auto;
}

.topbar.scrolled {

  background: rgba(255, 255, 255, 0.552);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar.dark-nav.scrolled {

  background: rgba(10, 15, 25, 0.82);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);

}

/* ==================================================
   RESPONSIVE NAVBAR
================================================== */

/* Laptop */
@media (max-width:1024px) {

  .topbar {
    height: 84px;
    padding: 0 30px 20px;
  }

  .nav-left,
  .nav-right {
    gap: 20px;
  }

  .logo img {
    height: 90px;
  }

  .audio-trigger {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .talk-link {
    font-size: 16px;
  }

  .menu-btn {
    width: 48px;
    gap: 8px;
  }

}

/* Tablet */
@media (max-width:768px) {

  .topbar {
    height: 78px;
    padding: 0 22px;
  }

  .nav-left,
  .nav-right {
    gap: 16px;
  }

  .logo img {
    height: 80px;
  }

  .divider {
    height: 20px;
  }

  .audio-trigger {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .talk-link {
    font-size: 15px;
  }

  .talk-link span {
    font-size: 17px;
  }

  .menu-btn {
    width: 42px;
    gap: 7px;
  }

}

/* Mobile */
@media (max-width:576px) {

  .topbar {
    height: 72px;
    padding: 0 16px;
  }

  .nav-left,
  .nav-right {
    gap: 12px;
  }

  .logo img {
    height: 90px;
  }

  .divider {
    display: none;
  }

  .audio-trigger {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .talk-link {
    display: none;
  }

  .menu-btn {
    width: 36px;
    gap: 6px;
  }

}

/* Small Mobile */
@media (max-width:400px) {

  .topbar {
    height: 68px;
    padding: 0 12px;
  }

  .logo img {
    height: 90px;
    margin-top: 10px;
  }

  .audio-trigger {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .menu-btn {
    width: 40px;
  }

}

/*=========================================
Extra Small Devices (360px and below)
=========================================*/
@media (max-width: 360px) {

  .topbar {
    height: 65px;
    padding: 0 12px;
  }

  .nav-left,
  .nav-right {
    gap: 12px;
  }

  .logo img {
    height: 58px;
  }

  .divider {
    height: 18px;
  }

  .talk-link {
    font-size: 13px;
    letter-spacing: 0;
  }

  .talk-link span {
    font-size: 15px;
    margin-left: 2px;
  }

  .menu-btn {
    width: 38px;
    height: 24px;
    gap: 6px;
  }

  .menu-btn span {
    height: 2px;
  }

  .menu-btn span:last-child {
    width: 75%;
  }

}

/* =========================
   MENU OVERLAY
========================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(221, 239, 240, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 22px;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ebf7f8;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

  overflow-y: auto;
  /* add this */

  transform: translateY(26px) scale(.985);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.menu-overlay.active .menu-panel {
  transform: translateY(0) scale(1);
}

.menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 22px;
  background: #d1f6f7;
  color: #1d2430;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.menu-content {
  display: grid;
  grid-template-columns: 1.15fr .72fr .72fr;
  gap: 60px;
  padding: 92px 58px 28px;
}

/* left */
.menu-left {
  opacity: 0;
  transform: translateY(30px);
  transition: .55s cubic-bezier(.22, 1, .36, 1);
  transition-delay: .08s;
}

.menu-overlay.active .menu-left {
  opacity: 1;
  transform: translateY(0);
}

.menu-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #14637b;
  font-size: 18px;
  margin-bottom: 28px;
}

.menu-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14637b;
  display: inline-block;
}

.menu-title {
  margin: 0;
  color: #101822;
  font-family: 'Outfit', sans-serif;
  font-size: 70px;
  line-height: .94;
  letter-spacing: -2.8px;
  font-weight: 300;
}

.menu-line {
  width: 70px;
  height: 2px;
  background: #a5adb4;

}

.menu-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #76808a;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 18px;
  margin-bottom: 56px;
  left: 200px;
}

.menu-mail-icon {
  font-size: 18px;
}

.menu-talk-btn {
  display: inline-flex;
  align-items: center;

  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #091321, #06111f);
  color: #fff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  box-shadow: 0 18px 34px rgba(9, 19, 33, .16);
}

.menu-talk-btn span {
  color: #ffffff;
  font-size: 24px;
}

/* columns */
.menu-col {
  opacity: 0;
  transform: translateY(30px);
  transition: .55s cubic-bezier(.22, 1, .36, 1);
}

.menu-overlay.active .menu-col:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s;
}

.menu-overlay.active .menu-col:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .28s;
}

.menu-col-title {
  color: #7f8991;
  font-size: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7d1ca;
}

.menu-col-title-space {
  margin-top: 42px;
}

.menu-link {
  display: block;
  color: #7f868d;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 25px;
  line-height: 1.28;
  font-weight: 300;
  margin-bottom: 14px;

  white-space: nowrap;
  /* text eka line madhe thevnar */
}

.menu-link.active {
  color: #161e28;
  position: relative;
  padding-left: 30px;
}

.menu-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #14637b;
  transform: translateY(-50%);
}

.menu-link.muted {
  color: #8f9499;
}

/* bottom */
.menu-bottom {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 34px;
  padding-top: 24px;
  border-top: 2px solid #a7aeb4;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;

  opacity: 0;
  transform: translateY(20px);
  transition: .55s cubic-bezier(.22, 1, .36, 1);
  transition-delay: .36s;
}

.menu-overlay.active .menu-bottom {
  opacity: 1;
  transform: translateY(0);
}

.menu-copy {
  display: flex;
  color: #76808a;
  font-size: 16px;


}

.menu-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.menu-socials a {
  width: 40px;
  height: 40px;
  border: 1.4px solid #8f979d;
  border-radius: 50%;
  color: #73808a;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.menu-policies {
  display: flex;
  position: relative;
  justify-content: flex-end;
  gap: 42px;
  margin-right: 50px;
  z-index: 9999;

}

.menu-policies a {
  color: #76808a;
  text-decoration: none;
  font-size: 20px;
}

/* ==================================================
   RESPONSIVE MENU OVERLAY
================================================== */

/* Tablet */
@media (max-width:1024px) {

  .menu-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .menu-left {
    grid-column: 1 / -1;
  }

  .menu-title {
    font-size: 54px;
  }

  .menu-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    margin: 20px 24px;
    padding-bottom: 30px;

    grid-template-columns: 1fr;
    text-align: center;
  }

}

/* Mobile */
@media (max-width:768px) {

  .menu-overlay {
    padding: 12px;
  }

  .menu-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 80px 24px 140px;
  }

  .menu-title {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .menu-email {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .menu-link {
    font-size: 22px;
  }

  .menu-close {
    width: 60px;
    height: 60px;
    font-size: 28px;
    top: 18px;
    right: 18px;
  }

  .menu-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    margin: 10px 24px 40px;

    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-policies {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

}

/* Small Mobile */
@media (max-width:576px) {

  .menu-content {
    padding: 7px 18px 110px;
  }

  .menu-title {
    font-size: 34px;
    line-height: 1;
  }

  .menu-kicker {
    font-size: 14px;
  }

  .menu-email {
    font-size: 14px;
  }

  .menu-talk-btn {
    width: 100%;
    justify-content: center;
  }

  .menu-link {
    font-size: 19px;
  }

  .menu-close {
    width: 52px;
    height: 52px;
    font-size: 24px;
    border-radius: 14px;
  }

  .menu-socials a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .menu-copy {
    font-size: 16px;
    justify-content: center;
  }

}

/* Extra Small */
@media (max-width:400px) {

  .menu-title {
    font-size: 28px;
  }

  .menu-link {
    font-size: 17px;
  }

  .menu-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-policies {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2px;
  }

}

/* ==================================================
   OVERLAY RESPONSIVE - TABLET
================================================== */
@media (max-width:1024px) {

  .menu-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 90px 40px 30px;
  }

  .menu-left {
    grid-column: 1 / -1;
  }

  .menu-title {
    font-size: 50px;
  }

  .menu-email {
    margin-bottom: 35px;
  }

  .menu-link {
    font-size: 22px;
  }

  .menu-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    margin: 40px;
    padding-top: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 24px;
  }

  .menu-copy {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .menu-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .menu-policies {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: -30px;
    margin-bottom: 10px;
  }

}

/* ==================================================
   OVERLAY RESPONSIVE - MOBILE
================================================== */
@media (max-width:768px) {

  .menu-overlay {
    padding: 12px;
  }

  .menu-panel {
    border-radius: 20px;
  }

  .menu-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 85px 24px 30px;
  }

  .menu-title {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .menu-kicker {
    font-size: 15px;
  }

  .menu-email {
    font-size: 15px;
    margin-bottom: 28px;
    word-break: break-word;
  }

  .menu-talk-btn {
    min-height: 54px;
    padding: 0 24px;
    font-size: 16px;
  }

  .menu-col-title {
    font-size: 14px;
  }

  .menu-link {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .menu-close {
    width: 58px;
    height: 58px;
    font-size: 26px;
    border-radius: 16px;
  }

  .menu-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;

    margin: 50px 24px 60px;
    padding-bottom: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .menu-copy {
    width: 100%;
    text-align: center;
  }

  .menu-socials {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;

  }

  .menu-policies {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: -50px;
  }

}

/* ==================================================
   SMALL MOBILE
================================================== */
@media (max-width:576px) {

  .menu-content {
    padding: 75px 18px 25px;
  }

  .menu-title {
    font-size: 32px;
  }

  .menu-kicker {
    font-size: 13px;
  }

  .menu-email {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .menu-talk-btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
  }

  .menu-link {
    font-size: 18px;
  }

  .menu-socials a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .menu-copy {
    font-size: 15px;
  }

  .menu-policies a {
    font-size: 13px;
  }

  .menu-bottom {
    margin: 40px 16px 50px;
    padding-bottom: 25px;
    gap: 20px;
  }

  .menu-policies {
    width: 100%;
    margin-top: -50px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }


}

/* ==================================================
   EXTRA SMALL MOBILE
================================================== */
@media (max-width:400px) {

  .menu-content {
    padding: 70px 14px 20px;
  }

  .menu-title {
    font-size: 26px;
  }

  .menu-kicker {
    font-size: 12px;
  }

  .menu-link {
    font-size: 16px;
  }

  .menu-talk-btn {
    font-size: 14px;
    padding: 0 18px;
  }

  .menu-close {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .menu-socials {
    gap: 8px;
    font-size: large;

  }

  .menu-socials a {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .menu-policies {
    gap: 10px;
  }

  .menu-policies a {
    font-size: 15px;
  }

  .menu-copy {
    font-size: 12px;
  }

}

/*=========================================
Extra Small (360px)
=========================================*/
@media (max-width:360px) {

  .menu-overlay {
    padding: 8px;
  }

  .menu-panel {
    border-radius: 16px;
  }

  .menu-content {
    padding: 65px 16px 20px;
    gap: 24px;
  }

  .menu-close {
    width: 44px;
    height: 44px;
    font-size: 20px;
    top: 12px;
    right: 12px;
    border-radius: 14px;
  }

  .menu-title {
    font-size: 26px;
    line-height: 1.1;
  }

  .menu-kicker {
    font-size: 14px;
    gap: 8px;
  }

  .menu-dot {
    width: 8px;
    height: 8px;
  }

  .menu-email {
    font-size: 13px;
    margin-bottom: 20px;
    gap: 8px;
  }

  .menu-talk-btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
    padding: 0 16px;
  }

  .menu-link {
    font-size: 16px;
    white-space: normal;
  }

  .menu-col-title {
    font-size: 10px;
  }

  .menu-bottom {
    gap: 16px;
    padding-top: 16px;
  }

  .menu-copy {
    font-size: 13px;
    text-align: center;
  }

  .menu-socials {
    gap: 8px;
  }

  .menu-socials a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .menu-policies {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .menu-policies a {
    font-size: 14px;
  }

}

/* ====================================================================================== */



/* --- HERO SECTION CONTAINER --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h, 0px));
  margin-top: 30px;
  overflow: hidden;
  z-index: 1;

}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;

  pointer-events: none;
}


.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(rgba(0, 0, 0, .28) .6px, transparent .8px);
  background-size: 8px 8px;
  pointer-events: none;
  mix-blend-mode: soft-light;
}


.hero-inner {
  position: relative;
  min-height: calc(100vh - var(--header-h, 0px));
  display: flex;
  align-items: center;

  justify-content: flex-start;
  padding: 90px 8%;
  padding-bottom: 10px;

  z-index: 5;
  box-sizing: border-box;

}


.main-content {
  max-width: 1500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.main-heading {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(40px, 5.2vw, 131px);

  font-weight: 300;

  color: #111;

  line-height: 1.00;

  letter-spacing: -0.04em;

  margin: 20px 0 2px;
}

.main-heading strong {
  font-weight: 600;
}

.description {
  max-width: 700px;
  /* Width कमी */
  width: 100%;
  /* Responsive राहील */

  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  line-height: 1.65;
  color: #2c3038;
  font-weight: 400;
}



/* --- LET'S TALK BUTTON --- */
.btn-talk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2b6166 0%, #356f74 100%);
  color: white;
  padding: 18px 42px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(43, 97, 102, 0.35);
  width: fit-content;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-talk:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.btn-talk svg {
  width: 16px;
  height: 16px;
}

/* ==========================================
   LARGE LAPTOP (1400px)
========================================== */
@media (max-width: 1400px) {

  .hero-inner {
    padding: 80px 7%;
  }

  .main-heading {
    font-size: 70px;
  }

  .description {
    font-size: 20px;
  }
}


/* ==========================================
   LAPTOP (1200px)
========================================== */
@media (max-width: 1200px) {

  .hero {
    margin-top: 20px;
  }

  .hero-inner {
    padding: 70px 6%;
  }

  .main-heading {
    font-size: 60px;
  }

  .description {
    font-size: 19px;
  }
}


/* ==========================================
   TABLET (992px)
========================================== */
@media (max-width: 992px) {

  .hero {
    min-height: auto;
    margin-top: 50px;
  }

  .hero-inner {
    min-height: auto;
    padding: 50px 40px 20px;
    align-items: center;
  }

  .main-content {
    gap: 26px;
  }

  .main-heading {
    font-size: 48px;
    line-height: 1.2;
  }

  .description {
    font-size: 18px;
    line-height: 1.7;
  }

  .btn-talk {
    padding: 16px 34px;
  }
}


/* ==========================================
   MOBILE (768px)
========================================== */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    margin-top: 80px;
  }

  .hero-inner {
    min-height: auto;
    padding: 50px 20px 30px;
    justify-content: center;
    align-items: flex-start;
  }

  .main-content {
    text-align: center;
    align-items: center;
    gap: 22px;
  }

  .main-heading {
    font-size: 48px;
    line-height: 1.2;
  }

  .main-heading br {
    display: none;
  }

  .description {
    font-size: 19px;
    line-height: 1.7;
  }

  .btn-talk {
    padding: 15px 30px;
    font-size: 14px;
  }
}


/* ==========================================
   SMALL MOBILE (480px)
========================================== */
@media (max-width: 480px) {

  .hero {
    min-height: auto;
    margin-top: 20px;
    padding: 0;
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 120px 20px 30px;
  }

  .main-content {
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 18px;
  }

  .main-heading {
    font-size: 38px;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.5px;
  }

  .description {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
  }

  .btn-talk {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    margin-top: 25px;
    padding: 14px 22px;
    font-size: 14px;
  }

  .btn-talk svg {
    width: 16px;
    height: 16px;
  }
}


/* ==========================================
   EXTRA SMALL (360px)
========================================== */
@media (max-width: 360px) {

  .hero {
    min-height: auto;
    margin-top: 80px;
    margin-bottom: 10px;
    padding: 0;
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 20px 20px;
  }

  .main-heading {
    font-size: 28px;
  }

  .description {
    font-size: 14px;
  }

  .btn-talk {
    max-width: 200px;
    padding: 13px 18px;
    font-size: 13px;
    margin-bottom: 50px;
  }
}

/* =============================
Hero-next 
============================= */
/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 120vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  padding: 20px 20px;
}



/* =========================================================
   AURA CONTAINER
========================================================= */

.aura-container {
  position: absolute;

  width: 1200px;
  height: 1200px;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%) scale(var(--auraScale, .55)) translateY(var(--auraMove, 0px));

  border-radius: 50%;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;

  transition:
    transform .15s linear,
    opacity .2s linear;
}

/* =========================================================
   COMMON AURA
========================================================= */

.aura-circle {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  opacity: .95;

  animation: fadeInAura 2s ease forwards;
}

/* =========================================================
   LEFT AURA
========================================================= */

.orange-aura {
  width: 700px;
  height: 700px;

  background:
    radial-gradient(circle,
      rgba(245, 254, 255, 0.95) 0%,
      rgba(54, 155, 152, 0.62) 32%,
      rgba(50, 160, 193, 0) 78%);

  bottom: 14%;
  left: -20%;

  transform:
    translateY(var(--auraInnerMove, 0px)) scale(var(--auraInnerScale, 1));

  transition:
    transform .15s linear;
}

/* =========================================================
   RIGHT AURA
========================================================= */

.yellow-aura {
  width: 500px;
  height: 500px;

  background:
    radial-gradient(circle,
      rgba(61, 165, 179, 0.95) 0%,
      rgba(54, 155, 152, 0.62) 32%,
      rgba(50, 160, 193, 0) 78%);

  right: -10%;
  bottom: 14%;

  transform:
    translateY(var(--auraInnerMove, 0px)) scale(var(--auraInnerScale, 1));

  transition:
    transform .15s linear;
}

/* =========================================================
   AURA ANIMATION
========================================================= */

@keyframes fadeInAura {

  0% {
    opacity: 0;

    transform:
      scale(.8) translateX(var(--tx, 0));
  }

  100% {
    opacity: .65;

    transform:
      scale(1) translateX(var(--tx, 0));
  }
}

.orange-aura {
  --tx: -15%;
}

.yellow-aura {
  --tx: 15%;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 5;

  text-align: center;

  max-width: 1100px;

  padding: 0 20px;

  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity .9s ease,
    transform .9s ease;
}

/* CONTENT SHOW */

.hero-section.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADING
========================================================= */

.hero-heading {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(54px, 6.8vw, 142px);

  font-weight: 300;

  color: #111;

  line-height: 1.02;

  letter-spacing: -0.04em;

  margin: 0 0 24px;
}

.hero-heading strong {
  font-weight: 600;
}

/* =========================================================
   SUBHEADING
========================================================= */

.hero-subheading {
  font-size: clamp(1rem, 1.26vw, 1.20rem);

  color: #555;

  line-height: 1.5;

  margin: 0 auto 40px;

  max-width: 800px;

  font-weight: 400;
}

/* =========================================================
   BUTTON
========================================================= */

.hero-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  background:
    linear-gradient(180deg, #4d99a4, #0d4e53);

  color: #fff;

  padding: 20px 40px;

  border-radius: 40px;

  text-decoration: none;

  font-size: 1rem;

  font-weight: 500;

  letter-spacing: .05em;

  text-transform: uppercase;

  transition: .35s ease;
}

.hero-button:hover {
  transform: translateY(-4px);
}

/* ==========================================
   TABLET (1024px)
========================================== */
@media (max-width: 1024px) {

  .hero-section {
    min-height: 85vh;
    padding: 30px 24px 30px;
  }

  .aura-container {
    width: 850px;
    height: 850px;
  }

  .orange-aura {
    width: 500px;
    height: 500px;
    left: -18%;
  }

  .yellow-aura {
    width: 360px;
    height: 360px;
    right: -15%;
  }

  .hero-content {
    max-width: 750px;
    text-align: center;
  }

  .hero-heading {
    font-size: clamp(46px, 7vw, 80px);
    line-height: 1.1;
  }

  .hero-subheading {
    max-width: 650px;
    margin: 20px auto 32px;
  }
}


/* ==========================================
   MOBILE (768px)
========================================== */
@media (max-width: 768px) {

  .hero-section {
    min-height: 85vh;
    padding: 30px 20px 30px;

  }

  .aura-container {
    width: 650px;
    height: 700px;
  }

  .orange-aura {
    width: 480px;
    height: 380px;
    left: -20%;
    top: 5%;
    filter: blur(60px);
  }

  .yellow-aura {
    width: 380px;
    height: 280px;
    right: -18%;
    bottom: 8%;
    filter: blur(60px);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 1.15;
    margin-top: -120px;
  }

  .hero-heading br {
    display: none;
  }

  .hero-subheading {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-button {
    padding: 15px 30px;
    font-size: 14px;
  }
}


/* ==========================================
   SMALL MOBILE (480px)
========================================== */
@media (max-width: 480px) {

  .hero-section {
    min-height: 70vh;
    padding: 50px 16px 10px;
  }

  .aura-container {
    width: 500px;
    height: 800px;
  }

  .orange-aura {
    width: 280px;
    height: 280px;
    left: -25%;
    top: 0;
    filter: blur(50px);
  }

  .yellow-aura {
    width: 220px;
    height: 220px;
    right: -20%;
    bottom: 0;
    filter: blur(50px);
  }

  .hero-content {
    padding: 0;
    text-align: center;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.2;
    margin-top: -100px;
    letter-spacing: -0.02em;
  }

  .hero-heading br {
    display: none;
  }

  .hero-subheading {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 240px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-button svg {
    width: 16px;
    height: 16px;
  }
}


/* ==========================================
   EXTRA SMALL (360px)
========================================== */
@media (max-width: 360px) {

  .hero-section {
    min-height: 80vh;
    padding: 10px 14px 10px;
    margin-top: -100px;
  }

  .aura-container {
    width: 400px;
    height: 400px;
  }

  .orange-aura {
    width: 220px;
    height: 220px;
  }

  .yellow-aura {
    width: 170px;
    height: 170px;
  }

  .hero-heading {
    font-size: 28px;
    margin-top: -50px;
  }

  .hero-subheading {
    font-size: 13px;
  }

  .hero-button {
    max-width: 220px;
    padding: 13px 18px;
    font-size: 13px;

  }
}

/* ==========================================================================
   1. RESET & SECTION BASE
   ========================================================================== */
.ideas-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/* ==========================================================================
   2. BACKGROUND EFFECT (GLOW & GLASS ARC)
   ========================================================================== */


.ideas-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(73, 170, 167, 0.58) 0%,
      rgba(95, 230, 227, 0.629) 35%,
      rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;

  opacity: 0;

  transform:
    translate(-50%, -50%) scale(.7);

  transition:
    transform 1.8s cubic-bezier(.22, 1, .36, 1),
    opacity 1.4s ease;
}

.ideas-bg-circle {
  position: absolute;

  width: 1050px;
  height: 1050px;

  top: 18%;
  left: 50%;

  opacity: 0;

  transform:
    translateX(-50%) translateY(180px) scale(.88);

  transition:
    transform 1.6s cubic-bezier(.22, 1, .36, 1),
    opacity 1.2s ease;

  border-radius: 50%;

  /* ===== GLASS BACKGROUND ===== */
  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.18) 35%,
      rgba(255, 255, 255, 0.04) 60%,
      rgba(255, 255, 255, 0) 100%);

  /* ===== ONLY TOP PART VISIBLE ===== */
  border-top: 2px solid rgba(255, 255, 255, 0.95);

  /* soft edge */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 40px 80px rgba(255, 255, 255, 0.18),
    0 0 80px rgba(255, 255, 255, 0.08);

  /* ===== GLASSMORPHISM ===== */
  backdrop-filter: blur(45px) saturate(160%);
  -webkit-backdrop-filter: blur(45px) saturate(160%);

  /* smooth fade at bottom */
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0) 100%);

  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 35%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0) 100%);

  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   3. CONTENT & TYPOGRAPHY
   ========================================================================== */
.ideas-content {
  position: relative;
  z-index: 3;
  /* ग्लो आणि कर्वच्या वर मजकूर दिसण्यासाठी */
  width: 100%;
  max-width: 1400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;

  transform: translateY(90px);

  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(.22, 1, .36, 1);

  transition-delay: .35s;
}

/* मुख्य हेडिंग स्टाइल */
.ideas-title {
  font-size: clamp(44px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.04em;
  /* अक्षरांमधील अंतर कमी केले */
  color: #0b0f19;
  margin: 0 0 32px 0;
}


.ideas-title span {
  font-weight: 500;
  color: #0b0f19;
}

/* सब-टेक्स्ट (Subheading) */
.ideas-text {
  max-width: 720px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
  color: #1a1e26;
  font-weight: 400;
}

.ideas-text span {
  color: rgba(26, 30, 38, 0.45);
}

/* =========================
   ACTIVE ANIMATION
========================= */

.ideas-section.active .ideas-bg-circle {
  opacity: 1;

  transform:
    translateX(-50%) translateY(0) scale(1);
}

.ideas-section.active .ideas-bg-glow {
  opacity: 1;

  transform:
    translate(-50%, -50%) scale(1);
}

.ideas-section.active .ideas-content {
  opacity: 1;
  transform: translateY(0);
}


/* ====================================

====================================== */
.build-stack-wrap {
  position: relative;
  height: 200vh;
  background: #ffffff;
  margin-top: -10px;
}

.build-stack-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;


}

/* =========================
CENTER BLOB
========================= */

.build-blob-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.build-blob-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(20, 99, 123, .42) 0%,
      rgba(73, 202, 224, .22) 38%,
      rgba(79, 195, 220, .08) 58%,
      transparent 78%);

  filter: blur(80px);
  transition: all .7s ease-out;
}

.build-blob {
  position: absolute;
  width: 400px;
  height: 400px;

  border-radius:
    48% 52% 45% 55% / 52% 48% 55% 45%;

  background:
    radial-gradient(circle at 50% 55%,
      rgba(79, 195, 220, .45) 0%,
      rgba(153, 241, 255, .28) 28%,
      rgba(255, 255, 255, .88) 72%,
      rgba(255, 255, 255, .96) 100%);

  box-shadow:
    inset 0 18px 70px rgba(255, 255, 255, .72),
    inset 0 -12px 30px rgba(0, 0, 0, .03),
    0 30px 90px rgba(20, 99, 123, .12);

  backdrop-filter: blur(18px);

  transition:
    width .9s cubic-bezier(.22, .61, .36, 1),
    height .9s cubic-bezier(.22, .61, .36, 1),
    transform .9s cubic-bezier(.22, .61, .36, 1);
}

/* =========================
BIG TITLE
========================= */

.build-content {
  position: relative;
  z-index: 10;
  text-align: center;

  transform: translateY(120px) scale(.82);
  opacity: 0;

  transition:
    transform .8s cubic-bezier(.22, .61, .36, 1),
    opacity .6s ease;
}

.build-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(58px, 6vw, 138px);
  line-height: .9;
  letter-spacing: -5px;
  font-weight: 300;
  color: #0f1720;
}

.build-content h2 span {
  font-weight: 600;

  background: linear-gradient(180deg,
      #14637b 0%,
      #145768 45%,
      #2a6471 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.build-content p {
  margin-top: 20px;
  font-size: clamp(18px, 1.5vw, 28px);
  font-family: 'Outfit', sans-serif;
  color: #2d3840;
  font-weight: 300;
}

.build-content p span {
  color: #4fc3dc;
}

/* =========================
PILLS
========================= */

.build-pill {
  position: absolute;
  z-index: 15;
  width: 200px;

  padding: 16px 2px;
  display: flex;
  justify-content: center;
  text-align: center;

  border-radius: 999px;

  border: 1px solid rgba(20, 99, 123, .22);

  background: rgba(255, 255, 255, .72);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #18232b;

  box-shadow:
    0 10px 30px rgba(20, 99, 123, .08);

  transition:
    all .9s cubic-bezier(.22, .61, .36, 1);
}

/* INITIAL STATE */

.pill-ui {
  top: 36%;
  left: 30%;
}

.pill-dev {
  top: 36%;
  right: 30%;
}

.pill-brand {
  bottom: 36%;
  left: 30%;
}

.pill-anim {
  bottom: 36%;
  right: 30%;
}

/* =========================
ACTIVE STATE
========================= */

.build-stack-section.active .build-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.build-stack-section.active .build-blob {
  width: 450px;
  height: 450px;
}

.build-stack-section.active .build-blob-glow {
  width: 500px;
  height: 500px;
}

.build-stack-section.active .pill-ui {
  top: 20%;
  left: 10%;
}

.build-stack-section.active .pill-dev {
  top: 20%;
  right: 10%;
}

.build-stack-section.active .pill-brand {
  bottom: 12%;
  left: 12%;
}

.build-stack-section.active .pill-anim {
  bottom: 12%;
  right: 10%;
}

.build-stack-section.active .build-top-content {
  transform: translateY(-100px);
  opacity: 0;
}

.build-stack-section.active .build-top-para {
  transform: translateY(-120px);
  opacity: 0;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {

  .build-stack-wrap {
    height: 200vh;
    margin-top: -150px;
  }

  .build-top-content {
    top: 30px;
    left: 24px;
  }

  .build-top-content h3 {
    font-size: 34px;
  }

  .build-top-para {
    top: 120px;
    left: 24px;
    right: auto;
    width: 240px;
  }

  .build-top-para p {
    font-size: 15px;
  }

  .build-blob {
    width: 200px;
    height: 200px;
  }

  .build-stack-section.active .build-blob {
    width: 420px;
    height: 420px;
  }

  .build-content h2 {
    font-size: 58px;
    letter-spacing: -2px;
    line-height: .94;
  }

  .build-content p {
    font-size: 15px;
    line-height: 1.3;
    padding: 0 20px;
  }

  .build-pill {
    padding: 10px 8px;
    font-size: 12px;
    width: 125px;
  }

  .pill-ui {
    top: 38%;
    left: 8%;
  }

  .pill-dev {
    top: 38%;
    right: 8%;
  }

  .pill-brand {
    bottom: 38%;
    left: 8%;
  }

  .pill-anim {
    bottom: 38%;
    right: 8%;
  }

  .build-stack-section.active .build-blob {
    width: 300px;
    height: 300px;
  }

  .build-content h2 {
    font-size: 40px;
    letter-spacing: -3px;
  }

  .build-content p {
    font-size: 18px;
  }


  .build-stack-section.active .pill-ui {
    top: 20%;
    left: 2%;
  }

  .build-stack-section.active .pill-dev {
    top: 20%;
    right: 2%;
  }

  .build-stack-section.active .pill-brand {
    bottom: 20%;
    left: 2%;
  }

  .build-stack-section.active .pill-anim {
    bottom: 20%;
    right: 2%;
  }

}

/* =========================
TABLET
========================= */

@media (min-width:769px) and (max-width:1024px) {

  .build-stack-wrap {
    height: 200vh;
    margin-top: -100px;
  }

  .build-top-content {
    top: 50px;
    left: 40px;
  }

  .build-top-content h3 {
    font-size: 48px;
  }

  .build-top-para {
    top: 70px;
    right: 40px;
    width: 280px;
  }

  .build-top-para p {
    font-size: 18px;
  }

  .build-blob {
    width: 320px;
    height: 320px;
  }

  .build-stack-section.active .build-blob {
    width: 500px;
    height: 500px;
  }

  .build-content h2 {
    font-size: 82px;
    letter-spacing: -3px;
  }

  .build-content p {
    font-size: 18px;
  }

  .build-pill {
    width: 160px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .pill-ui {
    top: 30%;
    left: 12%;
  }

  .pill-dev {
    top: 30%;
    right: 12%;
  }

  .pill-brand {
    bottom: 30%;
    left: 12%;
  }

  .pill-anim {
    bottom: 30%;
    right: 12%;
  }

  .build-stack-section.active .pill-ui {
    top: 16%;
    left: 8%;
  }

  .build-stack-section.active .pill-dev {
    top: 16%;
    right: 8%;
  }

  .build-stack-section.active .pill-brand {
    bottom: 12%;
    left: 8%;
  }

  .build-stack-section.active .pill-anim {
    bottom: 12%;
    right: 8%;
  }

}



/* ========================
showcase Section
========================  */

.showcase-section {
  background: #000;
  color: #f4f4f4;
  padding: 44px 42px 36px;
  font-family: 'Outfit', sans-serif;
}

.showcase-section * {
  box-sizing: border-box;
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.showcase-title {
  margin: 0;
  font-size: clamp(46px, 4vw, 76px);
  line-height: .95;
  letter-spacing: -2px;
  font-weight: 300;
  color: #f4f4f4;
}


.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 60px;
  padding: 0 40px;
  border-radius: 999px;
  border: 1.4px solid #2e2e2e;
  background: transparent;
  color: #d8d8d8;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(90deg, #14637b, #1d95b9);
  color: #fff;
  border-color: #14637b;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  row-gap: 50px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
}

/* IMAGE BOX */
.showcase-thumb {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  margin-bottom: 18px;
  position: relative;

  /* Center image */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Full image visible, no crop */
  display: block;
}

.showcase-meta {
  color: #9d9d9d;
  font-size: 17px;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.showcase-card-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f2f2f2;
  text-decoration: none;
  font-size: clamp(34px, 2.6vw, 56px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -1.4px;
}

.showcase-card-title span {
  color: #1f9fc6;
  font-size: .9em;
}

/* Hidden projects */
.extra-project {
  display: none;
}

/* Bottom button */
.showcase-bottom {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.showcase-viewall {
  border: none;
  cursor: pointer;

  background: linear-gradient(90deg, #14637b, #1d95b9);
  color: #fff;

  padding: 16px 34px;
  border-radius: 999px;

  font-size: 16px;
  font-weight: 500;

  transition: .3s ease;
}

.showcase-viewall:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 28px 16px 26px;
  }

  .showcase-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-title {
    font-size: clamp(38px, 10vw, 56px);
  }

  .filter-btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 18px;
  }

  .showcase-meta {
    font-size: 14px;
  }

  .showcase-card-title {
    font-size: clamp(28px, 8vw, 42px);
  }
}







/* ==========================================
   TABLET (769px - 1024px)
========================================== */
@media (min-width:769px) and (max-width:1024px) {

  .showcase-section {
    padding: 36px 24px 32px;
  }

  .showcase-title {
    font-size: 56px;
  }

  .showcase-thumb {
    height: 340px;
  }

  .filter-btn {
    min-height: 56px;
    padding: 0 32px;
    font-size: 18px;
  }

  .showcase-card-title {
    font-size: 42px;
  }

  /* Bottom button */
  .showcase-bottom {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .showcase-viewall {
    border: none;
    cursor: pointer;

    padding: 18px 30px;

    font-size: 12px;
    font-weight: 300;


  }


}

/* ==========================================
   MOBILE (768px)
========================================== */
@media (max-width:768px) {

  .showcase-section {
    padding: 24px 16px;
  }

  .showcase-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .showcase-title {
    font-size: 42px;
    line-height: 1;
  }


  .showcase-filters {
    gap: 10px;
  }

  .filter-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-thumb {
    height: 260px;
    border-radius: 18px;
  }

  .showcase-meta {
    font-size: 13px;
  }

  .showcase-card-title {
    font-size: 28px;
    gap: 10px;
  }


}

/* ==========================================
   SMALL MOBILE (480px)
========================================== */
@media (max-width:480px) {

  .showcase-title {
    font-size: 34px;
  }

  .showcase-thumb {
    height: 220px;
  }

  .filter-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .showcase-card-title {
    font-size: 24px;
  }

  .showcase-meta {
    font-size: 12px;
  }


}

/* ==========================================
   EXTRA SMALL DEVICES (360px)
========================================== */
@media (max-width:360px) {

  .showcase-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .showcase-title {
    font-size: 30px;
  }

  .showcase-thumb {
    height: 190px;
  }

}


/* ========================================================================= */
.contact-mdx-section {
  --bg: #edefef;
  --panel: #d5faff;
  --text: #111822;
  --muted: #98a0a6;
  --line: #30363f;
  --accent: #14637b;
  --dark: #071321;

  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  background:
    linear-gradient(90deg, #e2f1f2 0%, #e2f1f2 38%, #edefef 38%, #edefef 100%);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.contact-mdx-section * {
  box-sizing: border-box;
}

.contact-mdx-left {
  padding: 84px 64px 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.contact-mdx-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
}

.contact-mdx-kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.contact-mdx-title {
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(50px, 5.3vw, 76px);
  line-height: .95;
  letter-spacing: -2.7px;
  font-weight: 300;
}

.contact-mdx-line {
  width: 72px;
  height: 2px;
  background: #74808a;
  margin: 38px 0 34px;
}

.contact-mdx-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #75808a;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.mail-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #75808a;
}

.mail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-mdx-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 44px;
}

.contact-mdx-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #7e8891;
  color: #6f7983;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
}

.contact-mdx-right {
  position: relative;
  padding: 72px 72px 72px 64px;
  background:
    radial-gradient(circle at 55% 70%, rgba(247, 201, 149, .22), transparent 28%),
    linear-gradient(180deg, #efefed 0%, #efefed 100%);
}

.contact-mdx-form-title {
  margin: 0 0 48px;
  color: var(--text);
  font-size: clamp(52px, 4vw, 74px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -2px;
}

.contact-mdx-form {
  width: 100%;
}

.contact-mdx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 24px;
  margin-bottom: 34px;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #2f363f;
  background: transparent;
  outline: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 300;
  padding: 18px 0 12px;
  border-radius: 0;
}

.field textarea {
  min-height: 124px;
  resize: none;
  padding-top: 26px;
}

.field label {
  position: absolute;
  left: 0;
  top: 6px;
  color: #9ea3a6;
  font-size: 18px;
  font-weight: 300;
  pointer-events: none;
  transition: .2s ease;
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 14px;
  color: #7d858c;
}

.interest-wrap {
  margin: 8px 0 28px;
}

.interest-label {
  color: #9ea3a6;
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 300;
}

.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interest-chip {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.interest-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-chip span {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.4px solid #5d6570;
  background: transparent;
  color: #2a3139;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  transition: .2s ease;
}

.interest-chip.active span,
.interest-chip input:checked+span {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  box-shadow: 0 10px 18px rgba(7, 19, 33, .18);
}

.field-textarea {
  margin-bottom: 38px;
}

.contact-mdx-submit {
  width: 100%;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #081321 0%, #05111d 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 400;
  box-shadow: 0 16px 34px rgba(7, 19, 33, .2);
  cursor: pointer;
}

.contact-mdx-submit .arrow {
  color: white;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .contact-mdx-section {
    grid-template-columns: 1fr;
    background: #efefed;
  }

  .contact-mdx-left,
  .contact-mdx-right {
    min-height: auto;
  }

  .contact-mdx-left {
    background: #f2ebe2;
    padding: 56px 28px 40px;
  }

  .contact-mdx-right {
    padding: 48px 28px 56px;
  }
}

@media (max-width: 768px) {
  .contact-mdx-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-mdx-title {
    font-size: clamp(44px, 10vw, 64px);
  }

  .contact-mdx-form-title {
    font-size: clamp(40px, 10vw, 56px);
  }

  .contact-mdx-mail {
    font-size: 18px;
  }

  .contact-mdx-socials a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .field input,
  .field textarea {
    font-size: 20px;
  }

  .field label,
  .interest-label {
    font-size: 16px;
  }
}

/* ==========================================
   TABLET (769px - 1024px)
========================================== */
@media (min-width:769px) and (max-width:1024px) {

  .contact-mdx-left {
    padding: 60px 40px;
  }

  .contact-mdx-right {
    padding: 60px 40px;
  }

  .contact-mdx-title {
    font-size: 58px;
  }

  .contact-mdx-form-title {
    font-size: 54px;
    margin-bottom: 36px;
  }

  .contact-mdx-grid {
    gap: 28px 20px;
  }

  .field input,
  .field textarea {
    font-size: 20px;
  }

  .interest-chip span {
    padding: 0 18px;
    font-size: 15px;
  }
}

/* ==========================================
   MOBILE (768px)
========================================== */
@media (max-width:768px) {

  .contact-mdx-section {
    display: block;
  }

  .contact-mdx-left {
    padding: 40px 20px 30px;
  }

  .contact-mdx-right {
    padding: 36px 20px 40px;
  }

  .contact-mdx-title {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .contact-mdx-form-title {
    font-size: 38px;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }

  .contact-mdx-line {
    margin: 24px 0;
  }

  .contact-mdx-mail {
    font-size: 15px;
    word-break: break-word;
  }

  .contact-mdx-socials {
    padding-top: 24px;
  }

  .contact-mdx-socials a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .contact-mdx-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 24px;
  }

  .field input,
  .field textarea {
    font-size: 17px;
    padding: 16px 0 10px;
  }

  .field textarea {
    min-height: 100px;
  }

  .field label {
    font-size: 15px;
  }

  .interest-label {
    font-size: 15px;
  }

  .interest-options {
    gap: 8px;
  }

  .interest-chip span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .contact-mdx-submit {
    min-height: 54px;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .contact-mdx-submit .arrow {
    font-size: 22px;
  }
}

/* ==========================================
   SMALL MOBILE (480px)
========================================== */
@media (max-width:480px) {


  .contact-mdx-section {
    display: block;

  }


  .contact-mdx-left {
    padding: 32px 16px 24px;
  }

  .contact-mdx-right {
    padding: 28px 16px 34px;
  }

  .contact-mdx-kicker {
    font-size: 14px;
    margin-top: 50px;
  }

  .contact-mdx-title {
    font-size: 34px;
  }

  .contact-mdx-form-title {
    font-size: 32px;
  }

  .contact-mdx-mail {
    font-size: 13px;
  }

  .field input,
  .field textarea {
    font-size: 15px;
  }

  .field label {
    font-size: 13px;
  }

  .interest-label {
    font-size: 13px;
  }

  .interest-chip span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .contact-mdx-socials a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .contact-mdx-submit {
    min-height: 50px;
    font-size: 14px;
  }
}

/* ==========================================
   EXTRA SMALL (360px)
========================================== */
@media (max-width:360px) {

  .contact-mdx-title {
    font-size: 30px;
  }

  .contact-mdx-form-title {
    font-size: 28px;
  }

  .interest-chip span {
    padding: 0 10px;
    font-size: 11px;
  }

  .contact-mdx-submit {
    font-size: 13px;
  }
}

/* ====================footer==================================== */
.footer-mdx {
  background: #000;
  color: #f2f2f2;
  padding: 42px 46px 24px;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.footer-mdx a {
  color: inherit;
  text-decoration: none;
}

.footer-mdx-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer-mdx-left {
  max-width: 720px;
}

.footer-mdx-heading {
  margin: 0 0 38px;
  font-size: clamp(52px, 4.4vw, 86px);
  line-height: 0.92;
  letter-spacing: -2.8px;
  font-weight: 300;
  color: #f5f5f5;
}

.footer-mdx-heading span {
  color: #757575;
  font-weight: 300;
}

.footer-mdx-email {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.footer-mdx-email-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f4f4f4;
  flex: 0 0 auto;
}

.footer-mdx-email-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.footer-mdx-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-bottom: 18px;
  flex-wrap: wrap;
}

.footer-mdx-nav a {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #f1f1f1;
}

.footer-mdx-divider {
  width: 100%;
  height: 2px;
  background: #1f1f1f;
  margin: 54px 0 32px;
}

.footer-mdx-logo-row {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
  align-items: end;
  gap: 34px;
}

.footer-mdx-logo {
  font-size: clamp(260px, 29vw, 520px);
  line-height: 0.82;
  font-weight: 700;
  color: #e9e9eb;
  user-select: none;
}

.footer-mdx-logo-Q {
  text-align: left;
  letter-spacing: -18px;
}

.footer-mdx-logo-I {
  text-align: center;
  letter-spacing: -20px;
}

.footer-mdx-logo-R {
  text-align: center;
  letter-spacing: -24px;
}

.footer-mdx-logo-O {
  text-align: right;
  letter-spacing: -24px;
}

.footer-mdx-bottom {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-mdx-socials {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-mdx-socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  color: #8f8f92;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;

  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.footer-mdx-socials a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-mdx-socials a:active {
  transform: scale(0.95);
}

/* ======================================================

===================================================== */

.footer-mdx-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  color: #8b8b8e;
  font-size: 18px;
  line-height: 1.2;
  flex-wrap: wrap;
}

.footer-mdx-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-privacy,
.footer-terms {
  position: relative;
  z-index: 10;
}

.footer-privacy a,
.footer-terms a,
.footer-copy a {
  cursor: pointer;
  color: #8b8b8e;
  text-decoration: none;
}

.footer-privacy a:hover,
.footer-terms a:hover,
.footer-copy a:hover {
  color: #fff;
}

.footer-mdx-meta a {
  color: #8b8b8e;
}

.footer-mdx-scrolltop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.footer-mdx-scrolltop-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid #e9e9eb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: translateY(-1px);
}

.footer-mdx-logo {
  font-size: clamp(260px, 29vw, 520px);
  line-height: 0.82;
  font-weight: 700;
  color: #e9e9eb;
  user-select: none;

  opacity: 0;
  transform: translateX(-140px);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-mdx-logo.show {
  opacity: 1;
  transform: translateX(0);
}

.footer-mdx-logo-Q {
  transition-delay: 0s;
}

.footer-mdx-logo-I {
  transition-delay: .18s;
}

.footer-mdx-logo-R {
  transition-delay: .36s;
}

.footer-mdx-logo-O {
  transition-delay: .54s;
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

  .footer-mdx {
    padding: 36px 30px 24px;
  }

  .footer-mdx-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-mdx-nav {
    gap: 24px;
    padding-bottom: 0;
  }

  .footer-mdx-logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 10px;
    width: 100%;
  }

  .footer-mdx-logo {
    font-size: 220px;
  }

  .footer-mdx-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-mdx-socials,
  .footer-mdx-meta {
    justify-content: flex-start;
  }
}

/* ---------- Tablet ---------- */
@media (max-width:1024px) {

  .footer-mdx {
    padding: 32px 24px 22px;
  }

  .footer-mdx-heading {
    font-size: 64px;
  }

  .footer-mdx-email {
    font-size: 22px;
  }

  .footer-mdx-nav a {
    font-size: 20px;
  }

  .footer-mdx-logo-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .footer-mdx-logo {
    font-size: 160px;
    letter-spacing: -10px;
  }

  .footer-mdx-socials a {
    font-size: 24px;
  }

  .footer-mdx-meta {
    font-size: 15px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width:768px) {

  .footer-mdx {
    padding: 28px 16px 18px;
  }

  .footer-mdx-top {
    gap: 24px;
  }

  .footer-mdx-heading {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .footer-mdx-email {
    font-size: 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-mdx-email-icon,
  .footer-mdx-email-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-mdx-nav {
    gap: 14px;
  }

  .footer-mdx-nav a {
    font-size: 16px;
  }

  .footer-mdx-divider {
    margin: 24px 0 18px;
  }

  /* IMPORTANT */
  .footer-mdx-logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    align-items: end;
  }

  .footer-mdx-logo {
    font-size: 95px;
    line-height: .85;
    letter-spacing: -5px;
    text-align: center;
  }

  .footer-mdx-bottom {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 16px;
  }

  .footer-mdx-socials {
    gap: 16px;
    margin-top: 20px;
  }

  .footer-mdx-socials a {
    font-size: 18px;
  }

  .footer-mdx-meta {
    justify-content: flex-start;
    gap: 10px 20px;
    font-size: 13px;
  }

  .footer-mdx-scrolltop {
    font-size: 14px;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width:480px) {

  .footer-mdx {
    padding: 24px 14px 16px;
  }

  .footer-mdx-heading {
    font-size: 34px;
  }

  .footer-mdx-email {
    font-size: 14px;
  }

  .footer-mdx-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-mdx-nav a {
    font-size: 15px;
  }

  .footer-mdx-logo-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .footer-mdx-logo {
    font-size: 70px;
    letter-spacing: -3px;
  }

  .footer-mdx-socials a {
    font-size: 16px;
  }

  .footer-mdx-meta {
    font-size: 12px;
  }

  .footer-mdx-scrolltop {
    font-size: 13px;
  }
}

/* ---------- Extra Small ---------- */
@media (max-width:360px) {

  .footer-mdx-heading {
    font-size: 28px;
  }

  .footer-mdx-email {
    font-size: 12px;
  }

  .footer-mdx-logo-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .footer-mdx-logo {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .footer-mdx-meta {
    font-size: 11px;
  }
}