/* =================================================================
   COMPREHENSIVE RESPONSIVE DESIGN - MOBILE & TABLET
   Fixes: Hamburger Menu, Mobile/Tablet Navbar, FAQ, All Sections
   ================================================================= */

/* ===== DEFAULT STYLES (applies to all screen sizes) ===== */

/* Hide hamburger and mobile menu on desktop by default */
.navbar-hamburger {
  display: none !important;
}

/* ==================== MOBILE BREAKPOINTS (360px - 768px) ==================== */

@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }

  body,
  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
  }

  .macbook-air {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    min-height: auto;
    margin: 0;
    padding: 0;
  }

  /* ===== DECORATIVE ELEMENTS - HIDE ON MOBILE ===== */
  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-3,
  .macbook-air .ellipse-4,
  .macbook-air .ellipse-5,
  .macbook-air .ellipse-6,
  .macbook-air .ellipse-7,
  .macbook-air .ellipse-8,
  .macbook-air .ellipse-9,
  .macbook-air .ellipse-10,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-12,
  .macbook-air .ellipse-13,
  .macbook-air .ellipse-14,
  .macbook-air .ellipse-15,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-17,
  .macbook-air .ellipse-18,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22,
  .macbook-air .ellipse-23,
  .macbook-air .loohog {
    display: none !important;
    position: absolute;
    z-index: 0 !important;
  }

  .macbook-air .simbol,
  .macbook-air .simbol-2,
  .macbook-air .simbol-3,
  .macbook-air .simbol-4,
  .macbook-air .simbol-5,
  .macbook-air .simbol-6,
  .macbook-air .simbol-7,
  .macbook-air .simbol-8,
  .macbook-air .simbol-9,
  .macbook-air .simbol-10,
  .macbook-air .simbol-11 {
    display: none !important;
  }

  /* ===== MOBILE NAVBAR ===== */
  .navbar-hamburger {
    display: flex; /* ALWAYS show on mobile */
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(33, 95, 116, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .frame-24 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin: 0;
    gap: 0;
    box-sizing: border-box;
    flex-wrap: nowrap;
  }

  .group-46 {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100px;
    flex-shrink: 0;
    order: 1;
  }

  .TDIGIVATHON-3 {
    width: 48px;
    height: 24px;
    object-fit: contain;
  }

  .logo-nyatu-outih {
    width: 16px;
    height: 24px;
    object-fit: contain;
  }

  /* Hide desktop navigation on mobile */
  .navbar-2 {
    display: none !important;
  }

  .group-47 {
    display: none !important;
  }

  /* ===== HAMBURGER MENU BUTTON ===== */
  .navbar-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    margin: 0 0 0 auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    z-index: 1001;
    position: relative;
    order: 3;
  }

  .navbar-hamburger:hover {
    transform: scale(1.1);
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  .navbar-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .navbar-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .navbar-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    max-height: 40vh;
    background: blur(10px) rgba(9, 20, 29, 0.089);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu.active {
    transform: translateY(0);
  }

  .mobile-menu-link {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(33, 95, 116, 0.15);
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
    position: relative;
  }

  .mobile-menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: rgba(33, 95, 116, 0.8);
    transform: scaleY(0);
    transition: transform 0.2s ease;
  }

  .mobile-menu-link:hover::before,
  .mobile-menu-link:active::before {
    transform: scaleY(1);
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:active {
    background-color: rgba(33, 95, 116, 0.15);
    padding-left: 24px;
  }

  .mobile-register-btn {
    display: block;
    padding: 14px 20px;
    margin: 16px 16px 24px 16px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #215f74 0%, #1a4856 100%);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    border: 2px solid #215f74;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-register-btn:hover {
    background: linear-gradient(135deg, #1a4856 0%, #0f2a33 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 95, 116, 0.4);
  }

  /* ===== MAIN CONTENT PADDING (account for fixed navbar) ===== */
  main {
    padding-top: 56px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
  }

  /* ===== HERO SECTION ===== */
  .frame {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 0 40px 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    min-height: auto !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* ===== MOBILE HERO IMAGES (Two Images Side by Side - 50% Each) ===== */
  .mobile-hero-images {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .mobile-hero-image-left {
    width: 50% !important;
    height: auto !important;
    max-width: 50vw !important;
    object-fit: contain !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .macbook-air .frame .loohog-2 {
    display: none !important;
  }

  .loohog-2 {
    display: none !important;
  }

  .group {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

  .macbook-air .frame .group {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    margin-top: -40px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

  .TDIGIVATHON {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 1000px !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5)) !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .text-wrapper {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
    display: block !important;
    margin-top: 12px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  .frame-parent {
    max-width: 280px;
    height: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .guidebook-wrapper,
  .register-here-wrapper {
    width: 100%;
    max-width: 100%;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .guidebook-wrapper:hover,
  .register-here-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
  }

  .guidebook,
  .register-here {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -8px;
    width: 100%;
    padding: 0px 0px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    color: #ffffff;
    box-shadow: none;
    min-height: 30px;
    max-height: 40px;
    letter-spacing: 0.5px;
  }

  .guidebook:hover,
  .register-here:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }

  /* ===== ABOUT SECTION ===== */
  .div-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 5;
  }

  .group-15 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
    padding: 0;
  }

  .frame-5 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .text-wrapper-24,
  .text-wrapper-25 {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    margin: 0;
    color: #ffffff;
  }

  .text-wrapper-25 {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
  }

  .frame-6,
  .frame-7 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    margin: 0 0 8px 0;
    background-color: rgba(33, 95, 116, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(33, 95, 116, 0.2);
  }
  .macbook-air .rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 30px;
    border-radius: 50px;
    background: linear-gradient(
      180deg,
      rgba(22, 50, 59, 1) 0%,
      rgba(44, 62, 80, 1) 100%
    );
  }
  .text-wrapper-26 {
    font-size: 13px;
    font-weight: 600;
    margin-left: -20px;
    margin-top: -8px;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    color: #ffffff;
  }

  .text-wrapper-27,
  .text-wrapper-28 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  /* ===== REGISTER/WHAT YOU GET SECTION ===== */
  .frame-4 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
    z-index: 5;
  }

  .macbook-air .group-11 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .text-wrapper-16,
  .text-wrapper-17 {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    margin: 0;
    color: #ffffff;
  }

  .text-wrapper-17 {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
  }

  .group-12,
  .group-13,
  .group-14 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    margin: 8px 0;
    background: linear-gradient(
      135deg,
      rgba(33, 95, 116, 0.12) 0%,
      rgba(45, 156, 202, 0.08) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(33, 95, 116, 0.25);
    transition: all 0.3s ease;
  }

  .group-12:hover,
  .group-13:hover,
  .group-14:hover {
    background: linear-gradient(
      135deg,
      rgba(33, 95, 116, 0.18) 0%,
      rgba(45, 156, 202, 0.12) 100%
    );
    border-color: rgba(33, 95, 116, 0.4);
    transform: translateY(-2px);
  }

  .text-wrapper-18,
  .text-wrapper-20,
  .text-wrapper-22 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 24px;
  }

  .image-8,
  .image-9 {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    margin: 8px auto;
  }
  .image-7 {
    position: static !important;
    width: min(42vw, 130px) !important;
    max-width: 130px !important;
    height: 20px;
    margin: 0 auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }
  .text-wrapper-19,
  .text-wrapper-21,
  .text-wrapper-23 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  /* ===== WHY JOIN SECTION ===== */
  .frame-3 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    z-index: 5;
  }

  .group-10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .text-wrapper-13,
  .text-wrapper-14 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    color: #ffffff;
  }

  .text-wrapper-14 {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
  }

  .macbook-air .text-wrapper-15 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 20px;
    font-weight: 400;
    -webkit-text-stroke: 1px #ffffff00;
  }

  /* ===== BENEFITS GRID ===== */
  .macbook-air .frame-2 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    display: flex;
    margin-top: -40px;
    flex-direction: column;
    gap: 30px;
    box-sizing: border-box;
    z-index: 5;
  }

  .group-2,
  .group-6 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .group-3,
  .group-4,
  .group-5,
  .group-7,
  .group-8,
  .group-9 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    margin: 8px 0;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(33, 95, 116, 0.2);
    transition: all 0.3s ease;
  }

  .group-3:hover,
  .group-4:hover,
  .group-5:hover,
  .group-7:hover,
  .group-8:hover,
  .group-9:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .p,
  .text-wrapper-3,
  .text-wrapper-5,
  .text-wrapper-7,
  .text-wrapper-9,
  .text-wrapper-11 {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .text-wrapper-2,
  .text-wrapper-4,
  .text-wrapper-6,
  .text-wrapper-8,
  .text-wrapper-10,
  .text-wrapper-12 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
  }

  .image,
  .image-2,
  .image-3,
  .image-4,
  .image-5,
  .image-6 {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin: 4px auto;
  }

  .group-wrapper {
    width: 100%;
  }

  /* ===== PRIZE POOL SECTION ===== */
  .macbook-air .frame-21 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 32px 0 24px 0;
    box-sizing: border-box;
    text-align: center;
    z-index: 5;
  }

  .macbook-air .text-wrapper-66 {
    font-size: 32px;
    line-height: 35px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .macbook-air .text-wrapper-67 {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 20px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
     background: conic-gradient(
    from 70deg at 51% 50%,
    rgb(0, 145, 171) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  }

  /* ===== TIMELINE SECTION ===== */
  .frame-8 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 5;
  }

  .text-wrapper-29 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    text-align: center;
    color: #ffffff;
  }

  .group-18 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 40px;
  }

  /* Vertical connecting line */
  .group-18::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      180deg,
      #215f74 0%,
      rgba(33, 95, 116, 0.3) 100%
    );
  }

  .group-19,
  .group-20,
  .kotak-timeline,
  .group-22,
  .group-23,
  .group-24,
  .group-25,
  .group-26,
  .group-27,
  .group-28 {
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
    padding: 14px 16px;
    background-color: rgba(33, 95, 116, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(33, 95, 116, 0.4);
    position: relative;
    margin-left: 0;
  }

  /* Timeline dots */
  .group-19::before,
  .group-20::before,
  .kotak-timeline::before,
  .group-22::before,
  .group-23::before,
  .group-24::before,
  .group-25::before,
  .group-26::before,
  .group-27::before,
  .group-28::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #2d9cca;
    border: 3px solid rgba(45, 156, 202, 0.3);
    box-shadow: 0 0 10px rgba(45, 156, 202, 0.4);
  }

  .text-wrapper-30,
  .text-wrapper-32,
  .online-talk-show,
  .text-wrapper-35,
  .text-wrapper-37,
  .text-wrapper-38,
  .text-wrapper-40,
  .text-wrapper-41,
  .text-wrapper-43,
  .text-wrapper-45 {
    font-size: 13px;
    line-height: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
  }

  .text-wrapper-31,
  .text-wrapper-33,
  .text-wrapper-34,
  .text-wrapper-36,
  .text-wrapper-39,
  .text-wrapper-42,
  .text-wrapper-44,
  .element-agustus,
  .element-juli,
  .element-agustus-2 {
    font-size: 11px;
    line-height: 14px;
    margin: 0;
    color: rgba(45, 156, 202, 0.8);
    font-weight: 500;
  }

  .group-29 {
    display: none !important;
  }

  /* ===== REGISTRATION FEE ===== */
  .frame-22 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 5;
  }

  .text-wrapper-68 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    text-align: center;
    color: #ffffff;
  }

  .frame-23 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .group-43 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .group-44,
  .group-45 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background-color: rgba(33, 95, 116, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(33, 95, 116, 0.2);
  }

  .text-wrapper-69,
  .text-wrapper-71 {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
  }

  .text-wrapper-70,
  .text-wrapper-72 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
  }

  /* ===== BENEFITS SECTION 2 ===== */
  .frame-9 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 5;
  }

  .group-30 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .text-wrapper-46 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    color: #ffffff;
  }

  .text-wrapper-47 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
  }

  .group-31 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .group-32 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .group-33,
  .group-34,
  .group-36,
  .group-37 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(33, 95, 116, 0.2);
    transition: all 0.3s ease;
  }

  .group-33:hover,
  .group-34:hover,
  .group-36:hover,
  .group-37:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .image-10,
  .image-11,
  .image-12,
  .image-13 {
    margin: 4px auto;
  }

  .text-wrapper-48,
  .text-wrapper-50,
  .text-wrapper-52,
  .text-wrapper-54 {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .text-wrapper-49,
  .text-wrapper-51,
  .text-wrapper-53,
  .text-wrapper-55 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
  }

  .group-35 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ===== FAQ SECTION ===== */
  .frame-10 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    z-index: 10;
  }

  .text-wrapper-56 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    text-align: center;
    color: #ffffff;
  }

  .faq-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid rgba(33, 95, 116, 0.3);
    background-color: transparent;
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background-color: rgba(33, 95, 116, 0.15);
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-family: "Poppins", sans-serif;
  }

  .faq-question:hover {
    background-color: rgba(33, 95, 116, 0.25);
  }

  .frame-11,
  .frame-12,
  .frame-13,
  .frame-14,
  .frame-15,
  .frame-16,
  .frame-17 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background-color: rgba(33, 95, 116, 0.15);
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-family: "Poppins", sans-serif;
  }

  .frame-11:hover,
  .frame-12:hover,
  .frame-13:hover,
  .frame-14:hover,
  .frame-15:hover,
  .frame-16:hover,
  .frame-17:hover {
    background-color: rgba(33, 95, 116, 0.25);
  }

  .frame-11.active,
  .frame-12.active,
  .frame-13.active,
  .frame-14.active,
  .frame-15.active,
  .frame-16.active,
  .frame-17.active {
    background-color: rgba(33, 95, 116, 0.25);
    border-radius: 8px 8px 0 0;
  }

  .iconamoon-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .vector {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .faq-question.active .iconamoon-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(33, 95, 116, 0.08);
    border-top: 1px solid rgba(33, 95, 116, 0.15);
  }

  .faq-answer.active {
    max-height: 500px;
  }

  .faq-content {
    padding: 14px 16px;
    font-size: 12px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.85);
  }

  .faq-content p,
  .faq-content ol,
  .faq-content li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.85);
  }

  .faq-content ol {
    padding-left: 20px;
  }

  /* ===== CONTACT US / FOOTER SECTION ===== */
  footer,
  .contact-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    background: rgba(9, 20, 29, 0.5);
    border-top: 1px solid rgba(33, 95, 116, 0.2);
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(33, 95, 116, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
  }

  .footer-social a:hover {
    background-color: rgba(45, 156, 202, 0.4);
    transform: translateY(-2px);
  }

  .footer-text {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  /* ===== GENERAL TYPOGRAPHY & SPACING ===== */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Poppins", sans-serif;
  }

  p {
    font-family: "Poppins", sans-serif;
  }

  /* ===== UTILITY CLASSES ===== */
  .hidden {
    display: none !important;
  }

  .visible {
    display: block !important;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
  }

  .group-30 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .text-wrapper-46,
  .text-wrapper-47 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    color: #ffffff;
  }

  .text-wrapper-47 {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
  }

  .group-31 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .group-32,
  .group-35 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .group-33,
  .group-34,
  .group-36,
  .group-37 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(33, 95, 116, 0.2);
    transition: all 0.3s ease;
  }

  .group-33:hover,
  .group-34:hover,
  .group-36:hover,
  .group-37:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .image-10,
  .image-11,
  .image-12,
  .image-13 {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin: 4px auto;
  }

  .text-wrapper-48,
  .text-wrapper-49,
  .text-wrapper-50,
  .text-wrapper-51,
  .text-wrapper-52,
  .text-wrapper-53,
  .text-wrapper-54,
  .text-wrapper-55 {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
  }

  .text-wrapper-49,
  .text-wrapper-51,
  .text-wrapper-53,
  .text-wrapper-55 {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
  }

  .text-wrapper-48,
  .text-wrapper-50,
  .text-wrapper-52,
  .text-wrapper-54 {
    color: rgba(255, 255, 255, 0.8);
  }

  /* ===== FAQ SECTION (OPTIMIZED - NO ABSOLUTE POSITIONING) ===== */
  .frame-10 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    z-index: 10;
    overflow: visible;
    min-height: auto;
  }

  .text-wrapper-56 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
  }

  .faq-question {
    width: 100%;
    min-height: 48px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: rgba(33, 95, 116, 0.15);
    border: 1px solid rgba(33, 95, 116, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    margin: 0;
  }

  .faq-question:hover {
    background-color: rgba(33, 95, 116, 0.25);
  }

  .faq-question.active {
    background-color: rgba(33, 95, 116, 0.3);
  }

  .iconamoon-arrow {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .faq-question.active .iconamoon-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease;
    margin: 0;
  }

  .faq-answer.open {
    opacity: 1;
  }

  .faq-content {
    padding: 12px;
    margin-top: 8px;
    background-color: rgba(33, 95, 116, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(33, 95, 116, 0.15);
    font-size: 12px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.85);
  }

  .faq-content p,
  .faq-content li {
    margin: 4px 0;
  }

  .faq-content ol,
  .faq-content ul {
    margin: 4px 0;
    padding-left: 16px;
  }

  /* ===== CONTACT SECTION (NO ABSOLUTE POSITIONING) ===== */
  .kontak {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    z-index: 5;
    background: linear-gradient(
      135deg,
      rgba(33, 95, 116, 0.1) 0%,
      rgba(22, 50, 59, 0.1) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(33, 95, 116, 0.15);
  }

  .text-wrapper-64 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    position: relative;
    text-align: center;
    color: #ffffff;
  }

  .group-39 {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 5;
  }

  .frame-16,
  .frame-17 {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(33, 95, 116, 0.12);
    border: 1px solid rgba(33, 95, 116, 0.2);
  }

  .frame-16:hover,
  .frame-17:hover {
    background-color: rgba(33, 95, 116, 0.2);
  }

  .group-40,
  .group-42 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .skill-icons,
  .logos-whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .group-41 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vector-2,
  .vector-4 {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .vector-4 {
    margin-top: -14px;
  }

  /* ===== FOOTER SECTION (NO ABSOLUTE POSITIONING) ===== */
  .frame-18 {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 24px 12px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    z-index: 5;
    background-color: rgba(9, 20, 29, 0.95);
    border-top: 1px solid rgba(33, 95, 116, 0.25);
  }

  .logo-DIGIVATHON {
    width: 40px;
    height: auto;
    object-fit: contain;
  }

  .TDIGIVATHON-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .TDIGIVATHON-2 {
    width: 150px;
    height: auto;
    object-fit: contain;
  }

  .bisnis-digital-UPI {
    font-size: 10px;
    line-height: 13px;
    margin: 0;
    padding: 0;
  }

  .logo-DIGIVATHON-2 {
    width: auto;
    height: 20px;
    object-fit: contain;
  }

  .frame-19 {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 16px 20px;
    background: transparent;
    border-top: none;
    z-index: 5;
  }

  .frame-19 .text-wrapper-65 {
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .frame-19 a:hover {
    color: rgba(255, 255, 255, 0.95);
  }

  .frame-20 {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
  }

  .footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    background-color: rgba(33, 95, 116, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(33, 95, 116, 0.3);
  }

  .social-icon-link:hover {
    background-color: rgba(33, 95, 116, 0.4);
    transform: translateY(-2px);
  }

  .social-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
  }

  /* ===== PREVENT HORIZONTAL SCROLLING ===== */
  body,
  html,
  .macbook-air {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* ==================== TABLET BREAKPOINTS (769px - 1024px) ==================== */

@media (min-width: 769px) and (max-width: 1024px) {
  * {
    box-sizing: border-box;
  }

  body,
  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .macbook-air {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    min-height: auto;
    margin: 0;
    padding: 0;
  }

  /* ===== HIDE DECORATIVE ELEMENTS ===== */
  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-3,
  .macbook-air .ellipse-4,
  .macbook-air .ellipse-5,
  .macbook-air .ellipse-6,
  .macbook-air .ellipse-7,
  .macbook-air .ellipse-8,
  .macbook-air .ellipse-9,
  .macbook-air .ellipse-10,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-12,
  .macbook-air .ellipse-13,
  .macbook-air .ellipse-14,
  .macbook-air .ellipse-15,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-17,
  .macbook-air .ellipse-18,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22,
  .macbook-air .ellipse-23,
  .macbook-air .loohog {
    display: none !important;
  }

  .macbook-air .simbol,
  .macbook-air .img,
  .macbook-air .simbol-2,
  .macbook-air .simbol-3,
  .macbook-air .simbol-4,
  .macbook-air .simbol-5,
  .macbook-air .simbol-6,
  .macbook-air .simbol-7,
  .macbook-air .simbol-8,
  .macbook-air .simbol-9,
  .macbook-air .simbol-10,
  .macbook-air .simbol-11 {
    display: none !important;
  }

  /* ===== TABLET NAVBAR (DESKTOP-LIKE) ===== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    background: linear-gradient(
      135deg,
      rgba(9, 20, 29, 0.98) 0%,
      rgba(15, 30, 42, 0.98) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(33, 95, 116, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .frame-24 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    margin: 0;
    gap: 24px;
    box-sizing: border-box;
    flex-wrap: nowrap;
  }

  .group-46 {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 48px;
    flex-shrink: 0;
    order: 1;
  }

  /* Show navigation on tablet */
  .navbar-2 {
    display: flex !important;
    gap: 28px;
    margin: 0;
    padding: 0;
    flex: 1;
    align-items: center;
    order: 2;
  }

  .navbar-2 a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .navbar-2 a:hover {
    color: #b0d4e3;
    border-bottom-color: #215f74;
  }

  .navbar-2 a:active {
    color: #7ab8cc;
    border-bottom-color: #215f74;
  }

  .group-47 {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    order: 3;
  }

  .rectangle-2 {
    width: 100px;
    height: 40px;
    background: linear-gradient(135deg, #215f74 0%, #1a4856 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-wrapper-75 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
  }

  /* Hide hamburger on tablet */
  .navbar-hamburger {
    display: none !important;
  }

  /* Hide mobile menu on tablet */
  .mobile-menu {
    display: none !important;
  }

  /* ===== MAIN CONTENT PADDING ===== */
  main {
    padding-top: 72px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 72px);
  }

  /* ===== TABLET SECTIONS - SCALED FOR MEDIUM SCREENS ===== */
  .frame {
    padding: 32px 24px;
    gap: 20px;
    margin-bottom: 16px;
    flex-direction: row;
  }

  /* Hide mobile hero images on tablet and above */
  .mobile-hero-images {
    display: none !important;
  }

  .mobile-hero-image-left,
  .mobile-hero-image-right {
    display: none !important;
  }

  .loohog-2 {
    width: 70%;
    max-width: 250px;
    display: block;
  }

  .TDIGIVATHON {
    max-width: 240px;
  }

  .text-wrapper {
    font-size: 15px;
    line-height: 20px;
  }

  .guidebook,
  .register-here {
    padding: 14px 24px;
    font-size: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .div-wrapper {
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .text-wrapper-24,
  .text-wrapper-25 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
  }

  .frame-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: -20px;
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .group-12,
  .group-13,
  .group-14 {
    grid-column: span 1;
    padding: 16px;
    background-color: rgba(33, 95, 116, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .group-12:hover,
  .group-13:hover,
  .group-14:hover {
    background-color: rgba(33, 95, 116, 0.12);
  }

  .group-11 {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .image-7,
  .image-8,
  .image-9 {
    max-width: 140px;
    height: auto;
  }

  .frame-3 {
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .frame-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .group-2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .group-3,
  .group-4,
  .group-5 {
    grid-column: span 1;
  }

  .group-wrapper {
    grid-column: 1 / -1;
  }

  .group-6 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .image,
  .image-2,
  .image-3,
  .image-4,
  .image-5,
  .image-6 {
    max-width: 100px;
  }

  .frame-21 {
    padding: 24px 20px;
    margin-bottom: 12px;
    background: linear-gradient(
      135deg,
      rgba(33, 95, 116, 0.1) 0%,
      rgba(33, 95, 116, 0.05) 100%
    );
    border-radius: 8px;
  }

  .frame-8 {
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .group-18 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .frame-22 {
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .frame-9 {
    padding: 24px 20px;
    margin-bottom: 12px;
  }

  .group-32 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .group-35 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .image-10,
  .image-11,
  .image-12,
  .image-13 {
    max-width: 100px;
  }

  .frame-10 {
    padding: 24px 20px;
    margin-bottom: 20px;
    overflow: visible;
    z-index: 10;
  }

  .text-wrapper-56 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .faq-question {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    min-height: 52px;
    background-color: rgba(33, 95, 116, 0.15);
    border: 1px solid rgba(33, 95, 116, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .faq-question:hover {
    background-color: rgba(33, 95, 116, 0.25);
    border-color: rgba(33, 95, 116, 0.5);
  }

  .faq-question.active {
    background-color: rgba(33, 95, 116, 0.3);
    border-color: rgba(33, 95, 116, 0.6);
  }

  .iconamoon-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-question.active .iconamoon-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.4s ease;
    margin-bottom: 8px;
  }

  .faq-answer.open {
    opacity: 1;
  }

  .faq-content {
    font-size: 13px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(33, 95, 116, 0.2);
    line-height: 18px;
  }

  .faq-content p,
  .faq-content li {
    margin: 6px 0;
  }

  .faq-content ol,
  .faq-content ul {
    margin: 8px 0;
    padding-left: 20px;
  }

  .kontak {
    padding: 24px 20px;
    margin-top: 32px;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    overflow: visible;
  }

  .text-wrapper-64 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 5;
  }

  .group-39 {
    gap: 14px;
    position: relative;
    z-index: 5;
  }

  .frame-16,
  .frame-17 {
    min-height: 52px;
    padding: 14px;
    background-color: rgba(33, 95, 116, 0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .frame-16:hover,
  .frame-17:hover {
    background-color: rgba(33, 95, 116, 0.15);
  }

  .skill-icons,
  .logos-whatsapp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .frame-18 {
    padding: 20px 24px;
    gap: 24px;
    margin-top: auto;
    position: relative;
    z-index: 5;
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(9, 20, 29, 0.95);
    border-top: 1px solid rgba(33, 95, 116, 0.3);
  }

  .logo-DIGIVATHON {
    width: 50px;
    height: auto;
    flex-shrink: 0;
  }

  .TDIGIVATHON-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .TDIGIVATHON-2 {
    width: 120px;
    height: auto;
    margin: 0;
  }

  .logo-DIGIVATHON-2 {
    width: 35px;
    height: auto;
  }

  .frame-19 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    flex: 1;
    padding: 0 20px;
  }

  .frame-19 .text-wrapper-65 {
    font-size: 14px;
    white-space: nowrap;
  }

  .frame-20 {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }

  .footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .social-icon-link {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    flex-shrink: 0;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }
}

/* =================================================================
   MOBILE COLLISION FIX
   Keep mobile sections in normal document flow and neutralize leftover
   desktop absolute positioning that makes containers overlap.
   ================================================================= */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    min-width: 0;
  }

  .macbook-air {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    height: auto !important;
    overflow-x: clip !important;
  }

  .macbook-air main {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 64px 0 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .macbook-air .navbar {
    height: 64px !important;
    padding: 0 !important;
    background: rgba(9, 20, 29, 0.92);
  }

  .macbook-air .frame-24 {
    height: 64px !important;
    padding: 0 16px !important;
    gap: 12px !important;
  }

  .macbook-air .group-46 {
    width: auto !important;
    height: 44px !important;
    gap: 10px !important;
  }

  .macbook-air .TDIGIVATHON-3 {
    width: 112px !important;
    height: auto !important;
    margin: 0 !important;
  }

  .macbook-air .logo-nyatu-outih {
    width: auto !important;
    height: 34px !important;
  }

  .macbook-air .navbar-hamburger {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
  }

  .macbook-air .mobile-menu {
    top: 64px !important;
    max-height: calc(100vh - 64px) !important;
    background: rgba(9, 20, 29, 0.94) !important;
  }

  .macbook-air .navbar-2,
  .macbook-air .group-47,
  .macbook-air .loohog-2,
  .macbook-air .group-29 {
    display: none !important;
  }

  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-3,
  .macbook-air .ellipse-4,
  .macbook-air .ellipse-5,
  .macbook-air .ellipse-6,
  .macbook-air .ellipse-7,
  .macbook-air .ellipse-8,
  .macbook-air .ellipse-9,
  .macbook-air .ellipse-10,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-12,
  .macbook-air .ellipse-13,
  .macbook-air .ellipse-14,
  .macbook-air .ellipse-15,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-17,
  .macbook-air .ellipse-18,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22,
  .macbook-air .ellipse-23,
  .macbook-air .loohog,
  .macbook-air .simbol,
  .macbook-air .img,
  .macbook-air .simbol-2,
  .macbook-air .simbol-3,
  .macbook-air .simbol-4,
  .macbook-air .simbol-5,
  .macbook-air .simbol-6,
  .macbook-air .simbol-7,
  .macbook-air .simbol-8,
  .macbook-air .simbol-9,
  .macbook-air .simbol-10,
  .macbook-air .simbol-11 {
    display: none !important;
  }

  .macbook-air .frame,
  .macbook-air .div-wrapper,
  .macbook-air .frame-4,
  .macbook-air .frame-3,
  .macbook-air .frame-2,
  .macbook-air .frame-21,
  .macbook-air .frame-8,
  .macbook-air .frame-22,
  .macbook-air .frame-9,
  .macbook-air .frame-10,
  .macbook-air .kontak,
  .macbook-air .frame-18 {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 25px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .macbook-air .frame {
    align-items: center !important;
    padding-top: 22px !important;
    gap: 16px !important;
  }

  .macbook-air .mobile-hero-images {
    width: 100% !important;
    max-width: 320px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .macbook-air .mobile-hero-image-left {
    width: min(72vw, 260px) !important;
    max-width: 260px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .macbook-air .frame .group,
  .macbook-air .group-15,
  .macbook-air .group-11,
  .macbook-air .group-10,
  .macbook-air .group-2,
  .macbook-air .group-wrapper,
  .macbook-air .group-6,
  .macbook-air .group-18,
  .macbook-air .frame-23,
  .macbook-air .group-43,
  .macbook-air .group-30,
  .macbook-air .group-31,
  .macbook-air .group-32,
  .macbook-air .group-35,
  .macbook-air .group-39 {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    box-sizing: border-box !important;
  }

  .macbook-air .group-38 {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    display: flex !important;
    gap: 0px !important;
  }

  .macbook-air .frame-6,
  .macbook-air .frame-7,
  .macbook-air .group-12,
  .macbook-air .group-13,
  .macbook-air .group-14,
  .macbook-air .group-3,
  .macbook-air .group-4,
  .macbook-air .group-5,
  .macbook-air .group-7,
  .macbook-air .group-8,
  .macbook-air .group-9,
  .macbook-air .group-19,
  .macbook-air .group-20,
  .macbook-air .kotak-timeline,
  .macbook-air .group-22,
  .macbook-air .group-23,
  .macbook-air .group-24,
  .macbook-air .group-25,
  .macbook-air .group-26,
  .macbook-air .group-27,
  .macbook-air .group-28,
  .macbook-air .group-44,
  .macbook-air .group-45,
  .macbook-air .group-33,
  .macbook-air .group-34,
  .macbook-air .group-36,
  .macbook-air .group-37,
  .macbook-air .frame-16,
  .macbook-air .frame-17 {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    border-radius: 10px !important;
  }
  .macbook-air .faq-item {
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 10px 18px;
  }
  .macbook-air .frame-5,
  .macbook-air .group-11,
  .macbook-air .group-10,
  .macbook-air .group-30 {
    text-align: center !important;
    align-items: center !important;
  }

  .macbook-air .TDIGIVATHON {
    position: static !important;
    width: min(100%, 420px) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .macbook-air .text-wrapper {
    position: static !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
    font-size: clamp(13px, 3.8vw, 15px) !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }

  .macbook-air .frame-parent {
    position: static !important;
    width: min(100%, 300px) !important;
    height: auto !important;
    margin: 0px auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .macbook-air .guidebook-wrapper,
  .macbook-air .register-here-wrapper {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .macbook-air .guidebook,
  .macbook-air .register-here {
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .macbook-air h1,
  .macbook-air h2,
  .macbook-air h3,
  .macbook-air p,
  .macbook-air a,
  .macbook-air span,
  .macbook-air div {
    overflow-wrap: anywhere;
  }

  .macbook-air .text-wrapper-13,
  .macbook-air .text-wrapper-14,
  .macbook-air .text-wrapper-16,
  .macbook-air .text-wrapper-17,
  .macbook-air .text-wrapper-24,
  .macbook-air .text-wrapper-25,
  .macbook-air .text-wrapper-29,
  .macbook-air .text-wrapper-46,
  .macbook-air .text-wrapper-47,
  .macbook-air .text-wrapper-56,
  .macbook-air .text-wrapper-64,
  .macbook-air .text-wrapper-68 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    font-size: clamp(24px, 7vw, 32px) !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  .macbook-air .text-wrapper-66,
  .macbook-air .text-wrapper-67 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }

  .macbook-air .text-wrapper-67 {
    font-size: 40px;
    line-height: 1.1 !important;
  }

  .macbook-air .p,
  .macbook-air .text-wrapper-3,
  .macbook-air .text-wrapper-5,
  .macbook-air .text-wrapper-7,
  .macbook-air .text-wrapper-9,
  .macbook-air .text-wrapper-11,
  .macbook-air .text-wrapper-19,
  .macbook-air .text-wrapper-21,
  .macbook-air .text-wrapper-23,
  .macbook-air .text-wrapper-27,
  .macbook-air .text-wrapper-28,
  .macbook-air .text-wrapper-48,
  .macbook-air .text-wrapper-50,
  .macbook-air .text-wrapper-52,
  .macbook-air .text-wrapper-54 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .macbook-air .text-wrapper-2,
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-6,
  .macbook-air .text-wrapper-8,
  .macbook-air .text-wrapper-10,
  .macbook-air .text-wrapper-12,
  .macbook-air .text-wrapper-18,
  .macbook-air .text-wrapper-20,
  .macbook-air .text-wrapper-22,
  .macbook-air .text-wrapper-49,
  .macbook-air .text-wrapper-51,
  .macbook-air .text-wrapper-53,
  .macbook-air .text-wrapper-55,
  .macbook-air .text-wrapper-69,
  .macbook-air .text-wrapper-70,
  .macbook-air .text-wrapper-71,
  .macbook-air .text-wrapper-72 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 1.35 !important;
  }

  .macbook-air .image,
  .macbook-air .image-2,
  .macbook-air .image-3,
  .macbook-air .image-4,
  .macbook-air .image-5,
  .macbook-air .image-6,
  .macbook-air .image-8,
  .macbook-air .image-9,
  .macbook-air .image-10,
  .macbook-air .image-11,
  .macbook-air .image-12,
  .macbook-air .image-13 {
    position: static !important;
    width: 100px !important;
    max-width: 130px !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
  }

  .macbook-air .frame-21,
  .macbook-air .frame-22,
  .macbook-air .kontak {
    margin: 12px 18px !important;
    width: auto !important;
    border-radius: 12px !important;
  }

  .macbook-air .group-18 {
    padding-left: 32px !important;
    gap: 16px !important;
  }

  .macbook-air .group-18::before {
    left: 10px !important;
    top: 4px !important;
    bottom: 4px !important;
  }

  .macbook-air .group-19::before,
  .macbook-air .group-20::before,
  .macbook-air .kotak-timeline::before,
  .macbook-air .group-22::before,
  .macbook-air .group-23::before,
  .macbook-air .group-24::before,
  .macbook-air .group-25::before,
  .macbook-air .group-26::before,
  .macbook-air .group-27::before,
  .macbook-air .group-28::before {
    left: -30px !important;
    top: 20px !important;
  }

  .macbook-air .text-wrapper-30,
  .macbook-air .text-wrapper-31,
  .macbook-air .text-wrapper-32,
  .macbook-air .text-wrapper-33,
  .macbook-air .online-talk-show,
  .macbook-air .text-wrapper-34,
  .macbook-air .text-wrapper-35,
  .macbook-air .text-wrapper-36,
  .macbook-air .text-wrapper-37,
  .macbook-air .element-agustus,
  .macbook-air .text-wrapper-38,
  .macbook-air .text-wrapper-39,
  .macbook-air .text-wrapper-40,
  .macbook-air .element-juli,
  .macbook-air .text-wrapper-41,
  .macbook-air .text-wrapper-42,
  .macbook-air .text-wrapper-43,
  .macbook-air .text-wrapper-44,
  .macbook-air .text-wrapper-45,
  .macbook-air .element-agustus-2 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 1.35 !important;
  }

  .macbook-air .faq-question,
  .macbook-air .frame-11,
  .macbook-air .frame-12,
  .macbook-air .frame-13,
  .macbook-air .frame-14,
  .macbook-air .frame-15 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 52px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  .macbook-air .text-wrapper-57,
  .macbook-air .text-wrapper-58,
  .macbook-air .text-wrapper-59,
  .macbook-air .text-wrapper-60,
  .macbook-air .text-wrapper-61 {
    position: static !important;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: wrap !important;
  }

  .macbook-air .faq-answer {
    width: 100% !important;
    margin: 0 !important;
  }

  .macbook-air .faq-content {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .macbook-air .frame-16,
  .macbook-air .frame-17 {
    flex-direction: row !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  .macbook-air .group-40,
  .macbook-air .group-42 {
    position: static !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .macbook-air .text-wrapper-62,
  .macbook-air .text-wrapper-63 {
    position: static !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  .macbook-air .frame-18 {
    align-items: center !important;
    text-align: center !important;
  }

  .macbook-air .logo-DIGIVATHON-2,
  .macbook-air .TDIGIVATHON-wrapper,
  .macbook-air .frame-19,
  .macbook-air .footer-social-icons {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .macbook-air .logo-DIGIVATHON {
    top: -6px;
    left: 35%;
    width: auto;
    height: 215px;
    position: absolute;
    aspect-ratio: 0.68;
    z-index: -1;
  }

  .macbook-air .TDIGIVATHON-wrapper,
  .macbook-air .frame-19,
  .macbook-air .footer-social-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}

/* =================================================================
   FIGMA TABLET MATCH (769px - 1024px)
   Scoped override so mobile and desktop layouts stay untouched.
   ================================================================= */

@media (min-width: 769px) and (max-width: 1024px) {
  html,
  body {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body {
    background: #09141d !important;
  }

  .macbook-air {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .macbook-air main {
    display: block !important;
    width: 100% !important;
    padding: 96px 0 0 !important;
    margin: 0 !important;
  }

  .mobile-menu,
  .navbar-hamburger,
  .mobile-hero-images,
  .mobile-hero-image-left,
  .mobile-hero-image-right {
    display: none !important;
  }

  .macbook-air .simbol,
  .macbook-air .img,
  .macbook-air .simbol-2,
  .macbook-air .simbol-3,
  .macbook-air .simbol-4,
  .macbook-air .simbol-5,
  .macbook-air .simbol-6,
  .macbook-air .simbol-7,
  .macbook-air .simbol-8,
  .macbook-air .simbol-9,
  .macbook-air .simbol-10,
  .macbook-air .simbol-11 {
    display: block !important;
    position: absolute !important;
    opacity: 0.55 !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .macbook-air .loohog,
  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-3,
  .macbook-air .ellipse-4,
  .macbook-air .ellipse-5,
  .macbook-air .ellipse-6,
  .macbook-air .ellipse-7,
  .macbook-air .ellipse-8,
  .macbook-air .ellipse-9,
  .macbook-air .ellipse-10,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-12,
  .macbook-air .ellipse-13,
  .macbook-air .ellipse-14,
  .macbook-air .ellipse-15,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-17,
  .macbook-air .ellipse-18,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22,
  .macbook-air .ellipse-23 {
    display: block !important;
    position: absolute !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .macbook-air .loohog {
    top: -36px !important;
    left: -96px !important;
    width: 430px !important;
    height: 456px !important;
    object-fit: cover !important;
    opacity: 0.78 !important;
  }

  .macbook-air .simbol {
    top: 28px !important;
    left: -42px !important;
    width: 132px !important;
    height: auto !important;
  }

  .macbook-air .simbol-8 {
    top: 80px !important;
    right: -38px !important;
    left: auto !important;
    width: 122px !important;
    height: auto !important;
  }

  .macbook-air .img {
    top: 780px !important;
    left: -50px !important;
    width: 130px !important;
    height: auto !important;
  }

  .macbook-air .simbol-9 {
    top: 1160px !important;
    right: -42px !important;
    left: auto !important;
    width: 118px !important;
    height: auto !important;
  }

  .macbook-air .simbol-11 {
    top: 1800px !important;
    right: -44px !important;
    left: auto !important;
    width: 126px !important;
    height: auto !important;
  }

  .macbook-air .simbol-3 {
    top: 3780px !important;
    left: -44px !important;
    width: 130px !important;
    height: auto !important;
  }

  .macbook-air .simbol-4 {
    top: 3520px !important;
    right: -64px !important;
    left: auto !important;
    width: 172px !important;
    height: auto !important;
  }

  .macbook-air .simbol-10 {
    top: 4600px !important;
    right: -46px !important;
    left: auto !important;
    width: 122px !important;
    height: auto !important;
  }

  .macbook-air .simbol-6 {
    top: 6100px !important;
    right: -42px !important;
    left: auto !important;
    width: 118px !important;
    height: auto !important;
  }

  .macbook-air .simbol-7 {
    top: 6460px !important;
    left: -48px !important;
    width: 132px !important;
    height: auto !important;
  }

  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22 {
    opacity: 0.55 !important;
    transform: scale(0.72) !important;
    transform-origin: center !important;
  }

  .macbook-air .navbar {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 96px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
  }

  .macbook-air .navbar.scrolled {
    background-color: rgba(9, 20, 29, 0.58) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
  }

  .macbook-air .frame-24 {
    position: relative !important;
    width: calc(100% - 64px) !important;
    max-width: 928px !important;
    height: 72px !important;
    margin: 12px auto 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(28px, 5vw, 72px) !important;
    background: transparent !important;
  }

  .macbook-air .group-46 {
    position: relative !important;
    width: 150px !important;
    height: 64px !important;
    flex: 0 0 150px !important;
    margin: 0 !important;
    display: block !important;
    order: 0 !important;
  }

  .macbook-air .TDIGIVATHON-3 {
    position: absolute !important;
    top: -1px !important;
    left: 25px !important;
    width: 142px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .macbook-air .logo-nyatu-outih {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 43px !important;
    height: 64px !important;
    object-fit: cover !important;
  }

  .macbook-air .navbar-2 {
    position: relative !important;
    display: flex !important;
    width: auto !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(22px, 3.2vw, 36px) !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 0 !important;
  }

  .macbook-air .navbar-2 a,
  .macbook-air .text-wrapper-65,
  .macbook-air .text-wrapper-73 {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: "EB Garamond-SemiBold", Helvetica, serif !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 20px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }

  .macbook-air .group-47 {
    position: relative !important;
    display: block !important;
    width: 176px !important;
    height: 39px !important;
    flex: 0 0 176px !important;
    margin: 0 !important;
    order: 0 !important;
  }

  .macbook-air .rectangle-2 {
    position: absolute !important;
    top: 3px !important;
    left: 4px !important;
    width: 164px !important;
    height: 33px !important;
    border-radius: 50px !important;
    border: 0.5px solid #c7d0d5 !important;
    background-color: rgba(44, 62, 80, 0.2) !important;
    background-image: none !important;
  }

  .macbook-air .text-wrapper-75 {
    position: absolute !important;
    top: 9px !important;
    left: 32px !important;
    width: auto !important;
    height: 20px !important;
    margin: 0 !important;
    font-family: "EB Garamond-SemiBold", Helvetica, serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    white-space: nowrap !important;
  }

  .macbook-air .frame,
  .macbook-air .div-wrapper,
  .macbook-air .frame-4,
  .macbook-air .frame-3,
  .macbook-air .frame-2,
  .macbook-air .frame-21,
  .macbook-air .frame-8,
  .macbook-air .frame-22,
  .macbook-air .frame-9,
  .macbook-air .frame-10,
  .macbook-air .kontak,
  .macbook-air .frame-18 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    z-index: 1 !important;
  }

  .macbook-air .frame {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(22px, 3vw, 34px) !important;
    padding: 30px 44px 10px !important;
    min-height: 560px !important;
  }

  .macbook-air .loohog-2 {
    position: relative !important;
    display: block !important;
    width: clamp(220px, 28vw, 286px) !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
    z-index: 1 !important;
  }

  .macbook-air .group {
    position: relative !important;
    width: clamp(430px, 58vw, 560px) !important;
    height: 252px !important;
    margin: 0 !important;
    flex: 0 1 auto !important;
    z-index: 1 !important;
  }

  .macbook-air .TDIGIVATHON {
    position: absolute !important;
    top: -14px !important;
    left: -16px !important;
    width: calc(100% + 32px) !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
  }

  .macbook-air .text-wrapper {
    position: absolute !important;
    top: 176px !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: clamp(21px, 2.7vw, 27px) !important;
    line-height: 1.27 !important;
    letter-spacing: 2.4px !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  .macbook-air .frame-parent {
    position: absolute !important;
    left: 63% !important;
    right: auto !important;
    bottom: 48px !important;
    top: 60% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2 !important;
  }

  .macbook-air .guidebook-wrapper,
  .macbook-air .register-here-wrapper {
    position: relative !important;
    height: 47px !important;
    margin: 0 !important;
    border-radius: 50px !important;
    border: 0.5px solid #ffffff !important;
    background: #10232c !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .macbook-air .guidebook-wrapper {
    width: 199px !important;
    flex: 0 0 199px !important;
  }

  .macbook-air .register-here-wrapper {
    width: 222px !important;
    flex: 0 0 222px !important;
  }

  .macbook-air .guidebook,
  .macbook-air .register-here {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 47px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: 22px !important;
    line-height: 47px !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    text-shadow:
      1px 0 0 #ffffff,
      0 1px 0 #ffffff,
      -1px 0 0 #ffffff,
      0 -1px 0 #ffffff !important;
  }

  .macbook-air .div-wrapper {
    display: flex !important;
    justify-content: center !important;
    padding: 48px 64px 42px !important;
  }

  .macbook-air .group-15 {
    width: min(100%, 860px) !important;
    height: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .macbook-air .frame-5 {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .macbook-air .text-wrapper-24,
  .macbook-air .text-wrapper-25,
  .macbook-air .text-wrapper-16,
  .macbook-air .text-wrapper-17,
  .macbook-air .text-wrapper-13,
  .macbook-air .text-wrapper-14,
  .macbook-air .text-wrapper-29,
  .macbook-air .text-wrapper-46,
  .macbook-air .text-wrapper-47,
  .macbook-air .text-wrapper-56,
  .macbook-air .text-wrapper-64 {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    text-align: center !important;
    text-shadow: 0 0 10px #ffffff !important;
    -webkit-text-stroke: 1px #ffffff !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-weight: 400 !important;
    font-size: clamp(44px, 5.4vw, 56px) !important;
    line-height: 0.95 !important;
    letter-spacing: 1px !important;
  }

  .macbook-air .text-wrapper-25,
  .macbook-air .text-wrapper-17,
  .macbook-air .text-wrapper-14,
  .macbook-air .text-wrapper-47 {
    font-family: "Gill Sans MT-Italic", Helvetica, sans-serif !important;
    font-style: italic !important;
  }

  .macbook-air .frame-6,
  .macbook-air .frame-7 {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
  }

  .macbook-air .group-16,
  .macbook-air .group-17 {
    position: relative !important;
    width: 190px !important;
    height: 42px !important;
    margin: 0 !important;
    flex: 0 0 190px !important;
  }

  .macbook-air .rectangle {
    position: absolute !important;
    inset: 0 !important;
    width: 190px !important;
    height: 42px !important;
    border-radius: 50px !important;
  }

  .macbook-air .text-wrapper-26 {
    position: absolute !important;
    inset: 7px 14px auto !important;
    width: auto !important;
    height: 28px !important;
    font-size: 29px !important;
    line-height: 32px !important;
  }

  .macbook-air .text-wrapper-27,
  .macbook-air .text-wrapper-28 {
    position: relative !important;
    width: auto !important;
    max-width: 650px !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-size: 19px !important;
    line-height: 1.36 !important;
    letter-spacing: 0.5px !important;
    text-align: justify !important;
    color: #ffffff !important;
  }

  .macbook-air .text-wrapper-28 {
    max-width: 570px !important;
  }

  .macbook-air .frame-4 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 48px !important;
    row-gap: 48px !important;
    padding: 62px 72px 58px !important;
  }

  .macbook-air .group-11 {
    position: relative !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    top: 0 !important;
    left: 0 !important;
  }

  .macbook-air .group-12,
  .macbook-air .group-13,
  .macbook-air .group-14 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 430px !important;
    height: 190px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .macbook-air .group-14 {
    grid-column: 1 / -1 !important;
    max-width: 540px !important;
    height: 274px !important;
  }

  .macbook-air .text-wrapper-18,
  .macbook-air .text-wrapper-20,
  .macbook-air .text-wrapper-22,
  .macbook-air .text-wrapper-2,
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-6,
  .macbook-air .text-wrapper-8,
  .macbook-air .text-wrapper-10,
  .macbook-air .text-wrapper-12,
  .macbook-air .text-wrapper-49,
  .macbook-air .text-wrapper-51,
  .macbook-air .text-wrapper-53,
  .macbook-air .text-wrapper-55 {
    color: #ffffff !important;
    text-align: center !important;
    -webkit-text-stroke: 1px #ffffff !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: 32px !important;
    line-height: 1.05 !important;
    letter-spacing: 1px !important;
    font-weight: 400 !important;
  }

  .macbook-air .text-wrapper-18,
  .macbook-air .text-wrapper-20,
  .macbook-air .text-wrapper-22 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .macbook-air .image-7 {
    position: absolute !important;
    top: 56px !important;
    left: 0 !important;
    width: 56px !important;
    height: auto !important;
  }

  .macbook-air .image-8 {
    position: absolute !important;
    top: 55px !important;
    right: 0 !important;
    left: auto !important;
    width: 108px !important;
    height: auto !important;
  }

  .macbook-air .image-9 {
    position: absolute !important;
    top: 54px !important;
    left: 50% !important;
    width: 170px !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }

  .macbook-air .text-wrapper-19,
  .macbook-air .text-wrapper-21,
  .macbook-air .text-wrapper-23 {
    position: absolute !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    color: #ffffff !important;
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-size: 19px !important;
    line-height: 1.28 !important;
    letter-spacing: 0.5px !important;
  }

  .macbook-air .text-wrapper-19 {
    top: 56px !important;
    left: 72px !important;
    width: calc(100% - 72px) !important;
    text-align: justify !important;
  }

  .macbook-air .text-wrapper-21 {
    top: 56px !important;
    left: 0 !important;
    width: calc(100% - 126px) !important;
    text-align: justify !important;
  }

  .macbook-air .text-wrapper-23 {
    top: 168px !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .macbook-air .frame-3 {
    padding: 46px 72px 34px !important;
    text-align: center !important;
  }

  .macbook-air .group-10,
  .macbook-air .group-30 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .macbook-air .text-wrapper-15 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(100%, 840px) !important;
    height: auto !important;
    margin: 30px auto 0 !important;
    display: block !important;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif !important;
    font-size: 21px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    color: #ffffff !important;
    -webkit-text-stroke: 1px #357492 !important;
  }

  .macbook-air .frame-2 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px 28px !important;
    padding: 40px 54px 48px !important;
    align-items: start !important;
  }

  .macbook-air .group-2,
  .macbook-air .group-wrapper,
  .macbook-air .group-6 {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    display: contents !important;
  }

  .macbook-air .group-3,
  .macbook-air .group-4,
  .macbook-air .group-5,
  .macbook-air .group-7,
  .macbook-air .group-8,
  .macbook-air .group-9,
  .macbook-air .group-33,
  .macbook-air .group-34,
  .macbook-air .group-36,
  .macbook-air .group-37 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 270px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  .macbook-air .image,
  .macbook-air .image-2,
  .macbook-air .image-3,
  .macbook-air .image-4,
  .macbook-air .image-5,
  .macbook-air .image-6,
  .macbook-air .image-10,
  .macbook-air .image-11,
  .macbook-air .image-12,
  .macbook-air .image-13 {
    position: static !important;
    width: auto !important;
    height: 132px !important;
    max-width: 170px !important;
    margin: 0 auto 18px !important;
    object-fit: contain !important;
  }

  .macbook-air .text-wrapper-2,
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-6,
  .macbook-air .text-wrapper-8,
  .macbook-air .text-wrapper-10,
  .macbook-air .text-wrapper-12,
  .macbook-air .text-wrapper-49,
  .macbook-air .text-wrapper-51,
  .macbook-air .text-wrapper-53,
  .macbook-air .text-wrapper-55 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 12px !important;
    display: block !important;
    white-space: normal !important;
  }

  .macbook-air .p,
  .macbook-air .text-wrapper-3,
  .macbook-air .text-wrapper-5,
  .macbook-air .text-wrapper-7,
  .macbook-air .text-wrapper-9,
  .macbook-air .text-wrapper-11,
  .macbook-air .text-wrapper-48,
  .macbook-air .text-wrapper-50,
  .macbook-air .text-wrapper-52,
  .macbook-air .text-wrapper-54 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    color: #ffffff !important;
    font-family: "Poppins-Regular", Helvetica, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.34 !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
  }

  .macbook-air .frame-21 {
    padding: 48px 36px 42px !important;
    text-align: center !important;
  }

  .macbook-air .text-wrapper-66,
  .macbook-air .text-wrapper-67,
  .macbook-air .text-wrapper-68 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .macbook-air .text-wrapper-66,
  .macbook-air .text-wrapper-68 {
    font-size: clamp(38px, 4.8vw, 48px) !important;
    line-height: 1.08 !important;
  }

  .macbook-air .text-wrapper-67 {
    margin-top: 28px !important;
    font-size: clamp(64px, 9vw, 92px) !important;
    line-height: 0.95 !important;
  }

  .macbook-air .frame-8 {
    padding: 60px 72px 56px !important;
  }

  .macbook-air .text-wrapper-29 {
    width: 100% !important;
    margin-bottom: 44px !important;
  }

  .macbook-air .group-18 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 760px) !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 0 0 44px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 44px !important;
  }

  .macbook-air .group-18::before {
    content: "" !important;
    position: absolute !important;
    top: 4px !important;
    bottom: 4px !important;
    left: 18px !important;
    width: 2px !important;
    background: rgba(255, 255, 255, 0.48) !important;
    border-radius: 999px !important;
  }

  .macbook-air .group-19,
  .macbook-air .group-20,
  .macbook-air .kotak-timeline,
  .macbook-air .group-22,
  .macbook-air .group-23,
  .macbook-air .group-24,
  .macbook-air .group-25,
  .macbook-air .group-26,
  .macbook-air .group-27,
  .macbook-air .group-28 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .macbook-air .group-19::before,
  .macbook-air .group-20::before,
  .macbook-air .kotak-timeline::before,
  .macbook-air .group-22::before,
  .macbook-air .group-23::before,
  .macbook-air .group-24::before,
  .macbook-air .group-25::before,
  .macbook-air .group-26::before,
  .macbook-air .group-27::before,
  .macbook-air .group-28::before {
    content: "" !important;
    position: absolute !important;
    top: 9px !important;
    left: -34px !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.72) !important;
  }

  .macbook-air .text-wrapper-30,
  .macbook-air .text-wrapper-32,
  .macbook-air .online-talk-show,
  .macbook-air .text-wrapper-35,
  .macbook-air .text-wrapper-37,
  .macbook-air .text-wrapper-38,
  .macbook-air .text-wrapper-40,
  .macbook-air .text-wrapper-41,
  .macbook-air .text-wrapper-43,
  .macbook-air .text-wrapper-45 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 6px !important;
    display: block !important;
    color: #ffffff !important;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .macbook-air .text-wrapper-31,
  .macbook-air .text-wrapper-33,
  .macbook-air .text-wrapper-34,
  .macbook-air .text-wrapper-36,
  .macbook-air .element-agustus,
  .macbook-air .text-wrapper-39,
  .macbook-air .element-juli,
  .macbook-air .text-wrapper-42,
  .macbook-air .text-wrapper-44,
  .macbook-air .element-agustus-2 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    color: #d5d5d5 !important;
    font-family: "Poppins-Medium", Helvetica, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .macbook-air .group-29 {
    display: none !important;
  }

  .macbook-air .frame-22 {
    padding: 52px 72px 54px !important;
  }

  .macbook-air .frame-23 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 650px) !important;
    height: 116px !important;
    margin: 38px auto 0 !important;
    padding: 30px 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
  }

  .macbook-air .group-43 {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 42px !important;
  }

  .macbook-air .group-44,
  .macbook-air .group-45 {
    position: relative !important;
    width: 245px !important;
    height: 58px !important;
    margin: 0 !important;
  }

  .macbook-air .text-wrapper-69,
  .macbook-air .text-wrapper-70,
  .macbook-air .text-wrapper-71,
  .macbook-air .text-wrapper-72 {
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .macbook-air .text-wrapper-69,
  .macbook-air .text-wrapper-71 {
    top: 0 !important;
    font-size: 19px !important;
    line-height: 1.1 !important;
  }

  .macbook-air .text-wrapper-70,
  .macbook-air .text-wrapper-72 {
    top: 30px !important;
    font-size: 28px !important;
    line-height: 1 !important;
  }

  .macbook-air .frame-9 {
    padding: 58px 72px 54px !important;
  }

  .macbook-air .group-31,
  .macbook-air .group-32,
  .macbook-air .group-35 {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    display: contents !important;
  }

  .macbook-air .frame-9 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px 58px !important;
  }

  .macbook-air .group-30 {
    grid-column: 1 / -1 !important;
    margin-bottom: 4px !important;
  }

  .macbook-air .ellipse-23 {
    display: none !important;
  }

  .macbook-air .frame-10 {
    padding: 58px 72px 64px !important;
  }

  .macbook-air .text-wrapper-56 {
    width: 100% !important;
    margin-bottom: 42px !important;
    font-size: clamp(40px, 4.8vw, 52px) !important;
    line-height: 1.05 !important;
  }

  .macbook-air .group-38 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 790px) !important;
    height: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .macbook-air .faq-question,
  .macbook-air .frame-11,
  .macbook-air .frame-12,
  .macbook-air .frame-13,
  .macbook-air .frame-14,
  .macbook-air .frame-15 {
    position: relative !important;
    width: 100% !important;
    min-height: 58px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 18px 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    border-radius: 10px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 1px 0 0 rgba(255, 255, 255, 0.32),
      inset 0 -1px 1px rgba(0, 0, 0, 0.13),
      inset -1px 0 1px rgba(0, 0, 0, 0.11) !important;
    border: none !important;
  }

  .macbook-air .text-wrapper-57,
  .macbook-air .text-wrapper-58,
  .macbook-air .text-wrapper-59,
  .macbook-air .text-wrapper-60,
  .macbook-air .text-wrapper-61 {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    flex: 1 1 auto !important;
    color: #ffffff !important;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .macbook-air .iconamoon-arrow {
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
  }

  .macbook-air .faq-answer {
    width: 100% !important;
    margin: -8px 0 0 !important;
  }

  .macbook-air .faq-content {
    padding: 18px 22px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  .macbook-air .kontak {
    padding: 52px 72px 60px !important;
  }

  .macbook-air .text-wrapper-64 {
    width: 100% !important;
    margin-bottom: 36px !important;
  }

  .macbook-air .group-39 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 728px) !important;
    height: auto !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }

  .macbook-air .frame-16,
  .macbook-air .frame-17 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 78px !important;
    margin: 0 !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
  }

  .macbook-air .group-40,
  .macbook-air .group-42 {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .macbook-air .skill-icons,
  .macbook-air .logos-whatsapp-icon {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    margin: 0 !important;
  }

  .macbook-air .vector-2,
  .macbook-air .vector-4 {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .macbook-air .text-wrapper-62,
  .macbook-air .text-wrapper-63 {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif !important;
    font-size: 21px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .macbook-air .frame-18 {
    min-height: 262px !important;
    padding: 44px 54px 34px !important;
    background-color: #10232c !important;
    display: grid !important;
    grid-template-columns: 280px 1fr 210px !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 20px 24px !important;
    text-align: left !important;
  }

  .macbook-air .logo-DIGIVATHON {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 130px !important;
    height: auto !important;
    z-index: 0 !important;
    opacity: 0.9 !important;
  }

  .macbook-air .logo-DIGIVATHON-2 {
    position: relative !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 66px !important;
    height: auto !important;
    z-index: 1 !important;
  }

  .macbook-air .TDIGIVATHON-wrapper {
    position: relative !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 180px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    top: -10px !important;
    left: -23px !important;
    z-index: 1 !important;
  }

  .macbook-air .frame-19 {
    position: relative !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    inset: auto !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    transform: none !important;
  }

  .macbook-air .footer-social-icons {
    position: relative !important;
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
    inset: auto !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    transform: none !important;
  }

  .macbook-air .social-icon-link {
    width: 42px !important;
    height: 42px !important;
  }

  .macbook-air .social-icon {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .macbook-air .frame-24 {
    width: calc(100% - 36px) !important;
    gap: 18px !important;
  }

  .macbook-air .group-46 {
    width: 122px !important;
    flex-basis: 122px !important;
  }

  .macbook-air .bisnis-digital-UPI{
    left: 80px !important;
  }

  .macbook-air .TDIGIVATHON-3 {
    width: 116px !important;
    left: 21px !important;
  }

  .macbook-air .logo-nyatu-outih {
    width: 35px !important;
    height: 52px !important;
  }

  .macbook-air .navbar-2 {
    gap: 16px !important;
  }

  .macbook-air .navbar-2 a,
  .macbook-air .text-wrapper-73 {
    font-size: 16px !important;
  }

  .macbook-air .group-47 {
    width: 138px !important;
    flex-basis: 138px !important;
  }

  .macbook-air .rectangle-2 {
    width: 132px !important;
  }

  .macbook-air .text-wrapper-75 {
    left: 23px !important;
    font-size: 16px !important;
  }

  .macbook-air .frame {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .macbook-air .loohog-2 {
    width: 214px !important;
  }

  .macbook-air .group {
    width: 430px !important;
  }

  .macbook-air .div-wrapper,
  .macbook-air .frame-4,
  .macbook-air .frame-3,
  .macbook-air .frame-2,
  .macbook-air .frame-8,
  .macbook-air .frame-22,
  .macbook-air .frame-9,
  .macbook-air .frame-10,
  .macbook-air .kontak {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }

  .macbook-air .frame-2 {
    gap: 36px 22px !important;
  }

  .macbook-air .text-wrapper-2,
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-6,
  .macbook-air .text-wrapper-8,
  .macbook-air .text-wrapper-10,
  .macbook-air .text-wrapper-12,
  .macbook-air .text-wrapper-49,
  .macbook-air .text-wrapper-51,
  .macbook-air .text-wrapper-53,
  .macbook-air .text-wrapper-55 {
    font-size: 28px !important;
  }

  .macbook-air .p,
  .macbook-air .text-wrapper-3,
  .macbook-air .text-wrapper-5,
  .macbook-air .text-wrapper-7,
  .macbook-air .text-wrapper-9,
  .macbook-air .text-wrapper-11,
  .macbook-air .text-wrapper-48,
  .macbook-air .text-wrapper-50,
  .macbook-air .text-wrapper-52,
  .macbook-air .text-wrapper-54 {
    font-size: 15.5px !important;
  }

  .macbook-air .group-18 {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }

  .macbook-air .frame-18 {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .macbook-air .logo-DIGIVATHON-2,
  .macbook-air .TDIGIVATHON-wrapper,
  .macbook-air .frame-19,
  .macbook-air .footer-social-icons {
    grid-column: 1 !important;
    grid-row: auto !important;
    text-align: center !important;
    justify-content: center !important;
  }

}

/* =================================================================
   FINAL TABLET FIGMA LOCK (769px - 1024px)
   Keep this after earlier responsive rules so only tablet is affected.
   ================================================================= */

@media (min-width: 769px) and (max-width: 1024px) {
  .macbook-air {
    min-height: 0 !important;
    background: linear-gradient(
      180deg,
      rgba(9, 20, 29, 1) 0%,
      rgba(37, 70, 86, 1) 12%,
      rgba(35, 85, 101, 1) 24%,
      rgba(35, 91, 97, 1) 55%,
      rgba(46, 99, 112, 1) 78%,
      rgba(33, 95, 116, 1) 100%
    ) !important;
  }

  .macbook-air main {
    padding-top: 88px !important;
  }

  .macbook-air .navbar {
    height: 88px !important;
  }

  .macbook-air .frame-24 {
    width: min(calc(100% - 56px), 928px) !important;
    height: 64px !important;
    margin-top: 12px !important;
    justify-content: space-between !important;
    gap: clamp(20px, 3.2vw, 44px) !important;
  }

  .macbook-air .group-46 {
    width: 170px !important;
    height: 64px !important;
    flex-basis: 170px !important;
  }

  .macbook-air .TDIGIVATHON-3 {
    top: 2px !important;
    left: 28px !important;
    width: 138px !important;
  }

  .macbook-air .logo-nyatu-outih {
    width: 42px !important;
    height: 62px !important;
  }

  .macbook-air .navbar-2 {
    gap: clamp(20px, 2.9vw, 34px) !important;
  }

  .macbook-air .navbar-2 a,
  .macbook-air .text-wrapper-65,
  .macbook-air .text-wrapper-73 {
    font-size: clamp(17px, 1.85vw, 19px) !important;
    line-height: 22px !important;
  }

  .macbook-air .group-47 {
    width: 174px !important;
    height: 39px !important;
    flex-basis: 174px !important;
  }

  .macbook-air .rectangle-2 {
    width: 164px !important;
    height: 33px !important;
  }

  .macbook-air .text-wrapper-75 {
    top: 9px !important;
    left: 30px !important;
    font-size: 18px !important;
  }

  .macbook-air .frame {
    width: min(100%, 1024px) !important;
    min-height: 548px !important;
    padding: 22px 48px 112px !important;
    gap: clamp(22px, 3.5vw, 38px) !important;
  }

  .macbook-air .loohog-2 {
    width: clamp(226px, 27vw, 284px) !important;
  }

  .macbook-air .group {
    width: clamp(424px, 55vw, 548px) !important;
    height: 246px !important;
  }

  .macbook-air .TDIGIVATHON {
    top: -10px !important;
  }

  .macbook-air .text-wrapper {
    top: 174px !important;
    font-size: clamp(22px, 2.6vw, 27px) !important;
    line-height: 1.22 !important;
  }

  .macbook-air .frame-parent {
    bottom: 46px !important;
    gap: 34px !important;
  }

  .macbook-air .guidebook-wrapper {
    width: 199px !important;
    flex-basis: 199px !important;
  }

  .macbook-air .register-here-wrapper {
    width: 222px !important;
    flex-basis: 222px !important;
  }

  .macbook-air .guidebook,
  .macbook-air .register-here {
    font-size: 22px !important;
    letter-spacing: 0.8px !important;
  }

  .macbook-air .div-wrapper {
    padding: 44px 64px 42px !important;
  }

  .macbook-air .group-15 {
    max-width: 860px !important;
    gap: 30px !important;
  }

  .macbook-air .text-wrapper-27,
  .macbook-air .text-wrapper-28,
  .macbook-air .text-wrapper-19,
  .macbook-air .text-wrapper-21,
  .macbook-air .text-wrapper-23 {
    font-size: clamp(17px, 1.9vw, 19px) !important;
    line-height: 1.36 !important;
  }

  .macbook-air .frame-4 {
    padding: 60px 72px 58px !important;
    column-gap: 46px !important;
    row-gap: 46px !important;
  }

  .macbook-air .group-12,
  .macbook-air .group-13 {
    max-width: 420px !important;
  }

  .macbook-air .group-14 {
    max-width: 536px !important;
  }

  .macbook-air .text-wrapper-18,
  .macbook-air .text-wrapper-20,
  .macbook-air .text-wrapper-22,
  .macbook-air .text-wrapper-2,
  .macbook-air .text-wrapper-4,
  .macbook-air .text-wrapper-6,
  .macbook-air .text-wrapper-8,
  .macbook-air .text-wrapper-10,
  .macbook-air .text-wrapper-12,
  .macbook-air .text-wrapper-49,
  .macbook-air .text-wrapper-51,
  .macbook-air .text-wrapper-53,
  .macbook-air .text-wrapper-55 {
    font-size: clamp(29px, 3.2vw, 32px) !important;
    line-height: 1.08 !important;
  }

  .macbook-air .frame-3,
  .macbook-air .frame-21,
  .macbook-air .frame-22,
  .macbook-air .frame-8,
  .macbook-air .frame-9,
  .macbook-air .frame-10,
  .macbook-air .kontak {
    padding-left: clamp(54px, 7vw, 72px) !important;
    padding-right: clamp(54px, 7vw, 72px) !important;
  }

  .macbook-air .frame-2,
  .macbook-air .frame-9 {
    grid-auto-rows: auto !important;
  }

  .macbook-air .group-3,
  .macbook-air .group-4,
  .macbook-air .group-5,
  .macbook-air .group-7,
  .macbook-air .group-8,
  .macbook-air .group-9,
  .macbook-air .group-33,
  .macbook-air .group-34,
  .macbook-air .group-36,
  .macbook-air .group-37 {
    min-height: 268px !important;
  }

  .macbook-air .image,
  .macbook-air .image-2,
  .macbook-air .image-3,
  .macbook-air .image-4,
  .macbook-air .image-5,
  .macbook-air .image-6,
  .macbook-air .image-10,
  .macbook-air .image-11,
  .macbook-air .image-12,
  .macbook-air .image-13 {
    height: 130px !important;
    max-width: 168px !important;
  }

  .macbook-air .frame-23 {
    width: min(100%, 650px) !important;
    height: 116px !important;
  }

  .macbook-air .group-38 {
    width: min(100%, 790px) !important;
  }

  .macbook-air .faq-question,
  .macbook-air .frame-11,
  .macbook-air .frame-12,
  .macbook-air .frame-13,
  .macbook-air .frame-14,
  .macbook-air .frame-15 {
    min-height: 58px !important;
    padding-left: 24px !important;
    padding-right: 18px !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .macbook-air main {
    padding-top: 78px !important;
  }

  .macbook-air .navbar {
    height: 78px !important;
  }

  .macbook-air .frame-24 {
    width: min(calc(100% - 36px), 852px) !important;
    height: 58px !important;
    gap: 15px !important;
  }

  .macbook-air .group-46 {
    width: 122px !important;
    height: 52px !important;
    flex-basis: 122px !important;
  }

  .macbook-air .TDIGIVATHON-3 {
    top: 2px !important;
    left: 22px !important;
    width: 112px !important;
  }

  .macbook-air .logo-nyatu-outih {
    width: 34px !important;
    height: 50px !important;
  }

  .macbook-air .navbar-2 {
    gap: 15px !important;
  }

  .macbook-air .navbar-2 a,
  .macbook-air .text-wrapper-65,
  .macbook-air .text-wrapper-73 {
    font-size: 16px !important;
    line-height: 19px !important;
  }

  .macbook-air .group-47 {
    width: 136px !important;
    flex-basis: 136px !important;
  }

  .macbook-air .rectangle-2 {
    width: 130px !important;
    height: 31px !important;
  }

  .macbook-air .text-wrapper-75 {
    left: 22px !important;
    font-size: 16px !important;
  }

  .macbook-air .frame {
    min-height: 520px !important;
    padding: 20px 30px 104px !important;
    gap: 18px !important;
  }

  .macbook-air .loohog-2 {
    width: clamp(196px, 25vw, 216px) !important;
  }

  .macbook-air .group {
    width: clamp(388px, 52vw, 430px) !important;
    height: 224px !important;
  }

  .macbook-air .text-wrapper {
    top: 158px !important;
    font-size: clamp(19px, 2.45vw, 22px) !important;
  }

  .macbook-air .frame-parent {
    bottom: 42px !important;
    gap: 24px !important;
  }

  .macbook-air .guidebook-wrapper {
    width: 178px !important;
    flex-basis: 178px !important;
  }

  .macbook-air .register-here-wrapper {
    width: 198px !important;
    flex-basis: 198px !important;
  }

  .macbook-air .guidebook,
  .macbook-air .register-here {
    font-size: 20px !important;
  }

  .macbook-air .frame-4 {
    column-gap: 32px !important;
    row-gap: 42px !important;
  }

  .macbook-air .frame-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* =================================================================
   UNIFIED TABLET TIMELINE + FOOTER (769px - 1024px)
   Final tablet lock so this range uses one consistent layout.
   ================================================================= */

@media (min-width: 769px) and (max-width: 1024px) {
  .macbook-air .frame-8 {
    padding: 54px clamp(36px, 7vw, 72px) 58px !important;
    min-height: 900px !important;
  }

  .macbook-air .text-wrapper-29 {
    width: 100% !important;
    margin: 0 0 34px !important;
  }

  .macbook-air .group-18 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 432px) !important;
    height: 782px !important;
    max-width: 432px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
  }

  .macbook-air .group-18::before,
  .macbook-air .group-19::before,
  .macbook-air .group-20::before,
  .macbook-air .kotak-timeline::before,
  .macbook-air .group-22::before,
  .macbook-air .group-23::before,
  .macbook-air .group-24::before,
  .macbook-air .group-25::before,
  .macbook-air .group-26::before,
  .macbook-air .group-27::before,
  .macbook-air .group-28::before {
    content: none !important;
    display: none !important;
  }

  .macbook-air .group-29 {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: -4px !important;
    width: 49px !important;
    height: 782px !important;
    max-width: none !important;
    object-fit: contain !important;
    z-index: 1 !important;
  }

  .macbook-air .group-19,
  .macbook-air .group-24,
  .macbook-air .kotak-timeline,
  .macbook-air .group-26,
  .macbook-air .group-20,
  .macbook-air .group-25,
  .macbook-air .group-22,
  .macbook-air .group-27,
  .macbook-air .group-23,
  .macbook-air .group-28 {
    position: absolute !important;
    left: 58px !important;
    width: calc(100% - 58px) !important;
    height: 48px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 2 !important;
  }

  .macbook-air .group-19 {
    top: 0 !important;
  }

  .macbook-air .group-24 {
    top: 82px !important;
  }

  .macbook-air .kotak-timeline {
    top: 163px !important;
  }

  .macbook-air .group-26 {
    top: 245px !important;
  }

  .macbook-air .group-20 {
    top: 326px !important;
  }

  .macbook-air .group-25 {
    top: 408px !important;
  }

  .macbook-air .group-22 {
    top: 489px !important;
  }

  .macbook-air .group-27 {
    top: 571px !important;
  }

  .macbook-air .group-23 {
    top: 652px !important;
  }

  .macbook-air .group-28 {
    top: 734px !important;
  }

  .macbook-air .text-wrapper-30,
  .macbook-air .text-wrapper-32,
  .macbook-air .online-talk-show,
  .macbook-air .text-wrapper-35,
  .macbook-air .text-wrapper-37,
  .macbook-air .text-wrapper-38,
  .macbook-air .text-wrapper-40,
  .macbook-air .text-wrapper-41,
  .macbook-air .text-wrapper-43,
  .macbook-air .text-wrapper-45 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 24px !important;
    margin: 0 0 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    color: #ffffff !important;
    -webkit-text-stroke: 1px #ffffff !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: clamp(21px, 2.45vw, 24px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: 1px !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .macbook-air .text-wrapper-31,
  .macbook-air .text-wrapper-33,
  .macbook-air .text-wrapper-34,
  .macbook-air .text-wrapper-36,
  .macbook-air .element-agustus,
  .macbook-air .text-wrapper-39,
  .macbook-air .element-juli,
  .macbook-air .text-wrapper-42,
  .macbook-air .text-wrapper-44,
  .macbook-air .element-agustus-2 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 18px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    color: #d5d5d5 !important;
    font-family: "Poppins-Medium", Helvetica, sans-serif !important;
    font-size: clamp(14px, 1.65vw, 16px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .macbook-air .frame-18 {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    height: 156px !important;
    margin: 0 !important;
    padding: 18px 24px 24px !important;
    display: grid !important;
    grid-template-columns: minmax(190px, 250px) 1fr minmax(194px, 240px) !important;
    grid-template-rows: 1fr auto !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    align-items: center !important;
    gap: 8px 18px !important;
    overflow: hidden !important;
    text-align: left !important;
    background-color: #10232c !important;
    border-top: 2px solid rgba(37, 112, 133, 0.8) !important;
    border-radius: 0 0 10px 10px !important;
  }

  .macbook-air .logo-DIGIVATHON {
    position: absolute !important;
    top: -6px !important;
    left: -4px !important;
    width: 92px !important;
    height: auto !important;
    opacity: 0.42 !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .macbook-air .logo-DIGIVATHON-2 {
    position: relative !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: start !important;
    width: 60px !important;
    height: auto !important;
    left: 4px !important;
    top: -2px !important;
    z-index: 1 !important;
  }

  .macbook-air .TDIGIVATHON-wrapper {
    position: relative !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: start !important;
    width: 136px !important;
    height: 48px !important;
    margin: 24px 0 0 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    z-index: 1 !important;
  }

  .macbook-air .TDIGIVATHON-2 {
    width: 220px !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  .macbook-air .bisnis-digital-UPI {
    position: absolute;
    top: calc(50% + 5px);
    left: 100px;
    width: 230px;
    height: 48px;
    font-family: "Poppins-Regular", Helvetica;
    font-weight: 400;
    color: #d6d6d6;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
  }

  .macbook-air .frame-19 {
    position: relative !important;
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: end !important;
    justify-self: center !important;
    inset: auto !important;
    width: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(14px, 2.1vw, 22px) !important;
    flex-wrap: nowrap !important;
    transform: none !important;
    z-index: 1 !important;
  }

  .macbook-air .frame-19 .text-wrapper-65 {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-family: "Poppins-SemiBold", Helvetica, sans-serif !important;
    font-size: clamp(11px, 1.45vw, 13px) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .macbook-air .footer-social-icons {
    position: relative !important;
    grid-column: 3 !important;
    grid-row: 1 / -1 !important;
    align-self: center !important;
    justify-self: end !important;
    inset: auto !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(8px, 1.55vw, 14px) !important;
    flex-wrap: nowrap !important;
    transform: none !important;
    z-index: 1 !important;
  }

  .macbook-air .social-icon-link {
    width: clamp(28px, 3.25vw, 32px) !important;
    height: clamp(28px, 3.25vw, 32px) !important;
    flex: 0 0 clamp(28px, 3.25vw, 32px) !important;
  }

  .macbook-air .social-icon {
    width: clamp(15px, 1.8vw, 18px) !important;
    height: clamp(15px, 1.8vw, 18px) !important;
  }

  @media (min-width: 769px) and (max-width: 850px) {
    .macbook-air .frame-18 {
      grid-template-columns: 186px 1fr 178px !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
      gap: 8px 12px !important;
    }

    .macbook-air .logo-DIGIVATHON-2 {
      width: 56px !important;
    }

    .macbook-air .TDIGIVATHON-wrapper {
      width: 124px !important;
      margin-left: 48px !important;
    }

    .macbook-air .frame-19 {
      gap: 12px !important;
    }

    .macbook-air .frame-19 .text-wrapper-65 {
      font-size: 10.5px !important;
    }

    .macbook-air .footer-social-icons {
      gap: 8px !important;
    }

    .macbook-air .social-icon-link {
      width: 27px !important;
      height: 27px !important;
      flex-basis: 27px !important;
    }

    .macbook-air .social-icon {
      width: 15px !important;
      height: 15px !important;
    }
  }

  .macbook-air .ellipse,
  .macbook-air .div,
  .macbook-air .ellipse-2,
  .macbook-air .ellipse-3,
  .macbook-air .ellipse-4,
  .macbook-air .ellipse-5,
  .macbook-air .ellipse-6,
  .macbook-air .ellipse-7,
  .macbook-air .ellipse-8,
  .macbook-air .ellipse-9,
  .macbook-air .ellipse-10,
  .macbook-air .ellipse-11,
  .macbook-air .ellipse-12,
  .macbook-air .ellipse-13,
  .macbook-air .ellipse-14,
  .macbook-air .ellipse-15,
  .macbook-air .ellipse-16,
  .macbook-air .ellipse-17,
  .macbook-air .ellipse-18,
  .macbook-air .ellipse-19,
  .macbook-air .ellipse-20,
  .macbook-air .ellipse-21,
  .macbook-air .ellipse-22,
  .macbook-air .ellipse-23 {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* =================================================================
   DESKTOP SCALE LOCK (1025px - 1440px)
   Keep the 1280px composition, then scale it to the available width.
   ================================================================= */

@media (min-width: 1025px) and (max-width: 1440px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    background: #09141d;
  }

  .macbook-air {
    width: 1280px !important;
    min-width: 1280px !important;
    max-width: none !important;
    min-height: calc(6960px + var(--faq-desktop-offset, 0px)) !important;
    margin: 0 !important;
    transform-origin: top left;
    zoom: var(--desktop-scale, 1);
  }
}

@supports not (zoom: 1) {
  @media (min-width: 1025px) and (max-width: 1440px) {
    .macbook-air {
      transform: scale(var(--desktop-scale, 1));
    }
  }
}

/* =================================================================
   MOBILE TIMELINE MATCH (<= 768px)
   Use the same visual timeline style as tablet/desktop.
   ================================================================= */

@media (max-width: 768px) {
  .macbook-air .frame-8 {
    padding: 42px 18px 46px !important;
    min-height: 820px !important;
    gap: 28px !important;
    overflow: visible !important;
  }

  .macbook-air .text-wrapper-29 {
    width: 100% !important;
    margin: 0 !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 10px #ffffff !important;
    -webkit-text-stroke: 1px #ffffff !important;
  }

  .macbook-air .group-18 {
    position: relative !important;
    inset: auto !important;
    width: min(100%, 342px) !important;
    height: 704px !important;
    min-height: 704px !important;
    max-width: 342px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

  .macbook-air .group-18::before,
  .macbook-air .group-19::before,
  .macbook-air .group-20::before,
  .macbook-air .kotak-timeline::before,
  .macbook-air .group-22::before,
  .macbook-air .group-23::before,
  .macbook-air .group-24::before,
  .macbook-air .group-25::before,
  .macbook-air .group-26::before,
  .macbook-air .group-27::before,
  .macbook-air .group-28::before {
    content: none !important;
    display: none !important;
  }

  .macbook-air .group-29 {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 44px !important;
    height: 704px !important;
    max-width: none !important;
    object-fit: fill !important;
    z-index: 1 !important;
  }

  .macbook-air .group-19,
  .macbook-air .group-24,
  .macbook-air .kotak-timeline,
  .macbook-air .group-26,
  .macbook-air .group-20,
  .macbook-air .group-25,
  .macbook-air .group-22,
  .macbook-air .group-27,
  .macbook-air .group-23,
  .macbook-air .group-28 {
    position: absolute !important;
    left: 52px !important;
    width: calc(100% - 52px) !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 44px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    z-index: 2 !important;
  }

  .macbook-air .group-19 {
    top: 0 !important;
  }

  .macbook-air .group-24 {
    top: 74px !important;
  }

  .macbook-air .kotak-timeline {
    top: 148px !important;
  }

  .macbook-air .group-26 {
    top: 222px !important;
  }

  .macbook-air .group-20 {
    top: 296px !important;
  }

  .macbook-air .group-25 {
    top: 370px !important;
  }

  .macbook-air .group-22 {
    top: 444px !important;
  }

  .macbook-air .group-27 {
    top: 518px !important;
  }

  .macbook-air .group-23 {
    top: 592px !important;
  }

  .macbook-air .group-28 {
    top: 666px !important;
  }

  .macbook-air .text-wrapper-30,
  .macbook-air .text-wrapper-32,
  .macbook-air .online-talk-show,
  .macbook-air .text-wrapper-35,
  .macbook-air .text-wrapper-37,
  .macbook-air .text-wrapper-38,
  .macbook-air .text-wrapper-40,
  .macbook-air .text-wrapper-41,
  .macbook-air .text-wrapper-43,
  .macbook-air .text-wrapper-45 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 20px !important;
    margin: 0 0 3px !important;
    padding: 0 !important;
    display: block !important;
    color: #ffffff !important;
    -webkit-text-stroke: 0.75px #ffffff !important;
    font-family: "Gill Sans MT-Regular", Helvetica, sans-serif !important;
    font-size: clamp(16px, 4.9vw, 19px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.7px !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }

  .macbook-air .text-wrapper-31,
  .macbook-air .text-wrapper-33,
  .macbook-air .text-wrapper-34,
  .macbook-air .text-wrapper-36,
  .macbook-air .element-agustus,
  .macbook-air .text-wrapper-39,
  .macbook-air .element-juli,
  .macbook-air .text-wrapper-42,
  .macbook-air .text-wrapper-44,
  .macbook-air .element-agustus-2 {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    color: #d5d5d5 !important;
    font-family: "Poppins-Medium", Helvetica, sans-serif !important;
    font-size: clamp(11px, 3.45vw, 13px) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.3px !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
  }
}
