:root {
  --background2: #fff;
  --background3: #ebe4f4;
  --accent: #ff9800;
  --headings: #333;
  --cta: #4a148c;
  --text1: #fff;
  --text2: #333;
  --general-padding: 20px 80px;
  --border: 5px 200px 200px 50px;
  --heading-font-size-desktop: 48px;
  --heading-font-size-tablet: 38px;
  --heading-font-size-mobile: 28px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather Sans",
    sans-serif;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  font-size: 15px;
  color: var(--cta);
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolygon points='0,10 10,10 10,0' fill='%23ff9800'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  color: var(--accent);
}

.joinus-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--background2);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
}



@media (min-width: 1024px) {
  /* header starts here */

  header {
    display: block;
    width: 100%;
    background: transparent;
  }

  .nav .nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: sticky;
    z-index: 999;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo img {
    height: 40px;
    width: auto;
  }

  .menu-items {
    justify-self: center;
    justify-content: center;
    gap: 36px;
    margin: 0;
    padding: 0;
  }

  .btn-cta {
    justify-self: end;
  }

  .site-header {
    /* position: ; */
    top: 0;
    z-index: 50;
    padding: 18px 0px;
  }

  .nav .nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background3);
    border-radius: 9999px;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 30px -20px var(--ring),
      0 2px 6px -2px var(--ring);
  }

  .nav-logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
  }

  .menu-items a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    padding: 8px 6px;
    border-radius: 8px;
    transition: transform .18s ease, color .18s ease, background-color .18s ease;
  }

  .menu-items a:hover {
    color: #4a148c;
    transform: translateY(-1px);
    background: rgba(0, 0, 0, .065);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
  }

  .btn-cta {
    background: var(--cta-bg);
    color: var(--cta-ink);
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5);
  }

  .btn-cta:hover {
    transform: translateY(-1px);
    color: var(--cta);
  }

  /* --Mobile styles-- */
  #menu-toggle {
    display: none;
  }

  .menu-icon {
    display: none;
    cursor: pointer;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: var(--ink);
  }

  .hide-mobile {
    display: inline-flex;
  }

  .hide-desktop {
    display: none;
  }

  @media (max-width: 900px) {
    .nav .nav-wrapper {
      grid-template-columns: auto auto;
    }

    .menu-icon {
      display: inline-flex;
      justify-self: end;
    }

    .hide-mobile {
      display: none !important;
    }

    .menu-items {
      position: relative;
      grid-column: 1 / -1;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
      margin-top: 6px;
      border-radius: 18px;
      background: var(--surface);
    }

    .menu-items li {
      border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .menu-items li:first-child {
      border-top: 0;
    }

    .menu-items a {
      padding: 14px 14px;
      border-radius: 0;
      font-weight: 600;
    }

    #menu-toggle:checked~.menu-items {
      max-height: 420px;
    }

    .hide-desktop {
      display: block;
      padding: 10px 14px;
    }
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, .5);
    outline-offset: 3px;
  }

  /* header ends here */
  /* main section starts here */

  /* sec1 starts here */
  .flipper-hero {
    background: var(--background3);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--general-padding);
  }

  .flipper-hero-wrap {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    align-items: center;
  }

  .flipper-hero-left h1 {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .flipper-hero-left p {
    color: var(--text2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-top: 5px;
    margin-bottom: 32px;
  }

  .flipper-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 700;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 140px;
    transition: background-color 0.3s ease;
    margin-top: 5px;
  }

  .flipper-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .flipper-cta svg {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .flipper-cta:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  /* RIGHT IMAGE STACK */
  .flipper-hero-right {
    position: relative;
    height: 520px;
    margin-top: 40px;
    padding: 50px;
  }

  .pill {
    position: absolute;
    width: 140px;
    height: 260px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .allprof {
    display: none;
    width: 100%;
    height: auto
  }

  .allprof img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pill-yellow {
    background: var(--accent);
    top: 0;
    left: 150px;
    height: 320px;
  }

  .pill-purple {
    background: var(--cta);
    top: 0px;
    right: 135px;
    height: 320px;
    margin-top: -40px;
  }

  .pill-green {
    background: #4ade80;
    top: 180px;
    left: 0;
    height: 380px;
  }

  .pill-orange {
    background: #b4148c;
    bottom: 0;
    left: 150px;
    top: 320px;
    height: 300px;
  }

  .pill-blue {
    background: #38bdf8;
    bottom: 0;
    right: 135px;
    height: 300px;
    top: 290px;
  }

  .pill-last {
    background: #07d723fc;
    bottom: 0;
    right: 0;
    left: 460px;
    height: 380px;
    top: 120px;
  }

  @media (max-width: 1024px) {
    .flipper-hero-wrap {
      grid-template-columns: 1fr;
    }

    .flipper-hero-right {
      margin-top: 60px;
      height: 460px;
    }

    .flipper-hero-left h1 {
      font-size: var(--heading-font-size-tablet);
    }
  }

  @media (max-width: 600px) {
    .flipper-hero {
      padding: 20px;
    }

    .flipper-hero-left h1 {
      font-size: var(--heading-font-size-mobile);
    }

    .pill {
      width: 110px;
      height: 210px;
    }
  }


  

  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 60px 80px 30px;
  }

  .footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .newsletter {
    text-align: center;
    margin-bottom: 60px;
  }

  .newsletter h3 {
    color: var(--text1);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
  }

  .newsletter form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--background2);
    padding: 6px 8px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 50px;
    color: var(--text2);
    width: 280px;
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
  }

  .links-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 25px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
  }

  .copyright {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  /* Header starts here */

  header {
    width: 100%;
    background: var(--background3);
    display: block;
    margin: 0;
    padding: 0;
  }

  .site-header {
    padding: 2px 20px;
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .nav .nav-wrapper {
    max-width: 100%;
    margin: 0;
    background: var(--background3);
    border-radius: 0;
    padding: 32px 0 30px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
  }

  .nav-logo img {
    height: 42px;
    width: 100%;
    display: block;
  }

  .menu-icon {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 0px;
    cursor: pointer;
    color: var(--cta);
  }

  .hide-mobile {
    display: none !important;
  }

  .menu-items {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 30px;
    border-radius: 18px;
    background: var(--background3);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 85%;
    max-width: 700px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    max-height: none;
    overflow-y: auto;
    z-index: 60;
  }

  #menu-toggle:checked ~ .menu-items {
    transform: translateX(0);
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  .menu-items li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 22px 0 0 -20px;
    list-style: none;
    padding: 12px 0;
  }

  .menu-items li:first-child {
    border-top: none;
  }

  .menu-items a {
    padding: 14px 0px;
    text-align: center;
    color: var(--headings);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }

  .menu-items a:hover {
    background: none;
    color: var(--cta);
  }

  #menu-toggle {
    display: none;
  }

  .icon-menu,
  .icon-close {
    width: 50px;
    height: 50px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .icon-close {
    display: none;
  }

  #menu-toggle:checked + label .icon-menu {
    display: none;
  }

  #menu-toggle:checked + label .icon-close {
    display: inline-block;
    margin-right: 0px
  }


  .btn-cta {
    padding: 9px 16px;
    font-size: 0.95rem;
  }

  .hide-desktop {
    display: block;
    padding: 10px 14px;
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 3px;
  }


  /* sec1 starts here */
  .flipper-hero {
    background: var(--background3);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--general-padding);
  }

  .flipper-hero-wrap {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    align-items: center;
    padding: 40px 0 0 0;
  }

  .flipper-hero-left h1 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .flipper-hero-left p {
    color: var(--text2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-top: 5px;
    margin-bottom: 22px;
  }

  .flipper-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 700;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 140px;
    transition: background-color 0.3s ease;
    margin-top: 5px;
  }

  .flipper-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .flipper-cta svg {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .flipper-cta:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  .allprof {
    display: none;
    width: 100%;
    height: auto
  }

  .allprof img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* RIGHT IMAGE STACK */
  .flipper-hero-right {
    position: relative;
    height: 520px;
    padding: 70px 0 50px;
  }

  .pill {
    position: absolute;
    width: 140px;
    height: 260px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pill-yellow {
    background: var(--accent);
    top: -120px;
    left: 200px;
    height: 340px;
  }

  .pill-purple {
    background: var(--cta);
    top: 0px;
    right: 200px;
    height: 340px;
    margin-top: -160px;
  }

  .pill-green {
    background: #4ade80;
    top: 60px;
    left: 45px;
    height: 420px;
  }

  .pill-orange {
    background: #b4148c;
    bottom: 0;
    left: 200px;
    top: 220px;
    height: 360px;
  }

  .pill-blue {
    background: #38bdf8;
    bottom: 0;
    right: 200px;
    height: 380px;
    top: 190px;
  }

  .pill-last {
    background: #07d723fc;
    bottom: 0;
    right: 0;
    left: 510px;
    height: 480px;
    top: -30px;
  }

  @media (max-width: 1024px) {
    .flipper-hero-wrap {
      grid-template-columns: 1fr;
    }

    .flipper-hero-right {
      margin-top: 60px;
      height: 460px;
    }

    .flipper-hero-left h1 {
      font-size: var(--heading-font-size-tablet);
    }
  }

  @media (max-width: 600px) {
    .flipper-hero {
      padding: 20px;
    }

    .flipper-hero-left h1 {
      font-size: var(--heading-font-size-mobile);
    }

    .pill {
      width: 110px;
      height: 210px;
    }
  }




  

  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 60px 80px 30px;
  }

  .footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  .newsletter {
    text-align: center;
    margin-bottom: 60px;
  }

  .newsletter h3 {
    color: var(--text1);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
  }

  .newsletter form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--background2);
    padding: 6px 8px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 50px;
    color: var(--text2);
    width: 280px;
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
  }

  .links-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 25px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
  }

  .social-icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1) invert(0) sepia(1) hue-rotate(320deg) saturate(8);
  }

  .copyright {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
  }
}


@media (max-width: 767px) {

  :root {
    --general-padding: 20px 16px;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden ;
  }



  /* Navigation starts here */
  /* Navigation starts here */

  header {
    width: 100%;
    background: var(--background3);
    display: block;
    margin: 0;
    padding: 22px 0 0 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .nav .nav-wrapper {
    max-width: inherit;
    margin: 0;
    background: var(--background3);
    border-radius: 0;
    padding: 0px 10px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    box-sizing: border-box;
  }

  .nav-logo img {
    height: 25px;
    width: 100%;
    display: block;
  }

  .menu-icon {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    width: auto;
    height: auto;
    border-radius: 0px;
    cursor: pointer;
    color: var(--cta);
  }

  .hide-mobile {
    display: none !important;
  }

  .menu-items {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 10px;
    border-radius: 18px;
    background: var(--background3);
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    max-width: 320px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    max-height: none;
    overflow-y: auto;
    z-index: 60;
  }

  #menu-toggle:checked~.menu-items {
    transform: translateX(0);
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  .menu-items li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin: 22px 0 0 -20px;
    list-style: none;
    padding: 12px 0;
  }

  .menu-items li:first-child {
    border-top: none;
  }

  .menu-items a {
    padding: 14px 5px;
    text-align: center;
    color: var(--headings);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }

  .menu-items a:hover {
    background: none;
    color: var(--cta);
  }

  #menu-toggle {
    display: none;
  }

  .btn-cta {
    padding: 9px 16px;
    font-size: 0.95rem;
  }

  .hide-desktop {
    display: block;
    padding: 10px 14px;
  }

  a:focus-visible,
  .menu-icon:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.5);
    outline-offset: 3px;
  }

  .icon-menu,
  .icon-close {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .icon-close {
    display: none;
  }

  #menu-toggle:checked+label .icon-menu {
    display: none;
  }

  #menu-toggle:checked+label .icon-close {
    display: inline-block;
    margin-right: 0px
  }

  #menu-toggle:checked~.menu-items {
    position: fixed;
    inset: 0;
    height: 120vh;
    width: 100%;
    background: var(--background3);
    padding-top: 70px;
    overflow-y: auto;
    margin: 0;
    z-index: -1;
    transition: all 0.4s ease;
  }

  #menu-toggle:checked~.menu-items::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
  }

  #menu-toggle:checked~.menu-items,
  #menu-toggle:checked~.menu-items * {
    touch-action: none;
  }

  body:has(#menu-toggle:checked) {
    overflow: hidden;
  }

  /* header ends here */
  /* main section starts here */


  /* sec1 starts here */
  .flipper-hero {
    background: var(--background3);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: var(--general-padding);
  }

  .flipper-hero-wrap {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    width: 100%;
    align-items: center;
    padding: 120px 0 0 0;
  }

  .flipper-hero-left h1 {
    font-size: var(--heading-font-size-mobile);
    color: var(--headings);
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .flipper-hero-left p {
    color: var(--text2);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-top: 5px;
    margin-bottom: 22px;
  }

  .flipper-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 700;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 140px;
    transition: background-color 0.3s ease;
    margin-top: 5px;
    margin-bottom: 0px;
  }

  .flipper-cta:hover {
    transform: translateY(0px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .flipper-cta svg {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .flipper-cta:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

  /* RIGHT IMAGE STACK */
  .flipper-hero-right {
    position: relative;
    height: 390px;
    padding: 10px;
  }

  .pill {
    position: absolute;
    width: 170px;
    height: 260px;
    border-radius: 999px;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .allprof {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .allprof img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .pill-yellow {
    background: var(--accent);
    top: -80px;
    left: 200px;
    height: 240px;
  }

  .pill-purple {
    background: var(--cta);
    top: 0px;
    right: 200px;
    height: 340px;
    margin-top: -120px;
  }

  .pill-green {
    background: #4ade80;
    top: 100px;
    left: 45px;
    height: auto;
  }

  .pill-orange {
    background: #b4148c;
    bottom: 0;
    left: 200px;
    top: 140px;
    height: 360px;
  }

  .pill-blue {
    background: #38bdf8;
    bottom: 0;
    right: 200px;
    height: 380px;
    top: 320px;
  }

  .pill-last {
    background: #07d723fc;
    bottom: 0;
    right: 0;
    left: 510px;
    height: 480px;
    top: -30px;
    display: none;
  }











  /* Footer starts here */

  .footer {
    background: var(--cta);
    color: var(--text1);
    padding: 40px 18px 24px;
  }

  .footer-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  .newsletter {
    text-align: center;
    margin-bottom: 40px;
  }

  .newsletter h3 {
    color: var(--text1);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding: 0 6px;
    line-height: 1.5;
  }

  .newsletter form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: var(--background2);
    padding: 25px 15px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .newsletter input[type="email"] {
    border: none;
    outline: none;
    padding: 15px 14px;
    font-size: 14px;
    border-radius: 15px;
    color: var(--text2);
    width: 100%;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: var(--background3)
  }

  .newsletter button {
    background: var(--accent);
    color: var(--text1);
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
  }

  .newsletter button:hover {
    background: #ffab33;
  }

  .links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
    text-align: left;
  }

  .links-container h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--accent);
  }

  .links-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .links-container li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
  }

  .links-container a {
    color: var(--text1);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .links-container a:hover {
    opacity: 0.75;
  }

  .footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 24px 0 18px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .social-icons img:hover {
    transform: scale(1.05);
    filter: brightness(1) invert(0) sepia(1) hue-rotate(320deg) saturate(8);
  }

  .copyright {
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    padding: 0 10px;
  }

}
