: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);
}


/* desktop view starts here */
@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 sections start here */

  /* sec2 starts here */

  .sec2.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url("/img/Our\ Services.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .sec2.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 40px;
    max-width: 1000px;
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .about-title {
    font-size: var(--heading-font-size-desktop);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }


  /* sec3 starts here */

  .sec3.services-intro {
    background: var(--background2);
    padding: 100px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .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);
  }

  .services-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 60px;
  }

  .services-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .services-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
  }

  .services-text h2 {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    max-width: 560px;
  }

  .services-description p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text2);
    max-width: 580px;
    margin: 0;
  }

  /* section 1 scroll starts here */

  .services-scroll-section {
    background: var(--background2);
    padding: 80px;
  }

  .services-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-main-toggle {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 32px;
  }

  .services-main-btn {
    background: transparent;
    border: 1px solid var(--cta);
    color: var(--cta);
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .services-main-btn.active {
    background: var(--cta);
    color: var(--text1);
  }

  .services-scroll-card {
    background: var(--background3);
    border-radius: 22px;
    padding: 48px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    min-height: 70vh;
  }

  .services-scroll-nav {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  .services-scroll-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .services-scroll-list.is-hidden {
    display: none;
  }

  .services-scroll-list li {
    font-size: 16px;
    font-weight: 500;
    color: var(--text2);
    opacity: 0.55;
    cursor: pointer;
    transition: all 0.25s ease;
    padding-left: 6px;
  }

  .services-scroll-list li.active {
    color: var(--cta);
    opacity: 1;
    transform: translateX(8px);
  }

  .services-scroll-content {
    height: 70vh;
    position: relative;
    overflow: hidden;
  }

  .services-scroll-inner {
    height: 100%;
    overflow-y: auto;
    padding-right: 18px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-scroll-inner.is-hidden {
    display: none;
  }

  .services-scroll-item {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .services-scroll-item h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--headings);
    margin: 0;
  }

  .services-scroll-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text2);
    max-width: 680px;
    margin: 0;
  }

  .serve-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--accent);
  }

  .services-scroll-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 12/5;
    object-fit: cover;
  }

  .pr-img {
    border-bottom: none;
  }

  .services-scroll-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
    padding: 4px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    cursor: pointer;
    margin-bottom: 60px;
    text-transform: capitalize;
  }

  .services-scroll-cta:hover {
    opacity: 0.8;
  }


  /*  Pop-up qoute starts here */

  .quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .quote-modal-overlay.is-open {
    display: flex;
  }

  .quote-modal-card {
    background: var(--background3);
    border-radius: 24px;
    width: min(1000px, 92%);
    max-height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .quote-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text2);
  }

  .quote-modal-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    height: 100%;
  }

  .quote-modal-visual {
    background: #fff;
    width: 100%;
    height: 100%;
  }

  .quote-modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  

  .quote-modal-form {
    padding: 40px;
    overflow-y: auto;
  }

  .quote-modal-title {
    font-size: 28px;
    margin: 0 0 10px;
    color: var(--headings);
  }

  .quote-modal-subtitle {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 24px;
  }

  .quote-modal-context {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text2);
  }

  .quote-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .quote-modal-fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .quote-modal-fields input,
  .quote-modal-fields textarea {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
  }

  .quote-modal-submit {
    margin-top: 12px;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 700;
    font-size: 18px;
    padding: 4px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    align-self: center;
    text-decoration: none;
    cursor: pointer;
    color: var(--text2);
  }


  /* sec4 starts here */
  .sec4.working-process {
    background: var(--background3);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .process-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-header h2 {
    font-size: var(--heading-font-size-desktop);
    font-weight: 700;
    color: var(--headings);
    margin: 8px 0 4px;
    line-height: 1.2;
  }

  .process-header p {
    font-size: 16px;
    color: var(--text2);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: stretch;
  }

  .process-card {
    background: var(--background3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }

  .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--cta);
  }

  .process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 12px;
  }

  .process-card p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .process-btn {
    position: absolute;
    bottom: 25px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cta);
    color: var(--text1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .process-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
  }

  .process-btn .arrow {
    font-size: 20px;
    font-weight: 600;
  }


  /* sec5 starts here */

  .sec5.brand-story {
    background: var(--background2);
    padding: 80px 0;
    display: flex;
    justify-content: center;
  }

  .sec5 .container {
    width: 100%;
    max-width: 1280px;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .cta-banner {
    background: var(--cta);
    color: var(--text1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    padding: 60px 80px;
    margin: 0 40px;
  }

  .cta-label {
    display: inline-block;
    color: var(--accent);
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 8px;
  }

  .cta-heading {
    font-size: var(--heading-font-size-desktop);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: var(--text1);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 400;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 200px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--accent);
    color: var(--cta);
  }

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

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

  .story-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 30px 0 0;
  }

  .story-images {
    flex: 1 1 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-image.large img {
    width: 100%;
    max-width: 450px;
    border-radius: 200px 200px 0 0;
    display: block;
  }

  .story-image.small {
    position: absolute;
    bottom: -50px;
    right: -80px;
  }

  .story-image.small img {
    width: 280px;
    border-radius: 150px 150px 0 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .story-content {
    flex: 1 1 50%;
    text-align: left;
  }

  .story-title {
    font-size: var(--heading-font-size-desktop);
    font-weight: 700;
    color: var(--headings);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .story-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
  }

  .story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }

  .story-list li {
    position: relative;
    font-size: 16px;
    color: var(--headings);
    font-weight: 600;
    padding-left: 28px;
    margin-bottom: 10px;
  }

  .story-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cta);
    font-size: 16px;
    font-weight: 700;
  }

  .story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 400;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 180px;
    transition: background-color 0.3s ease;
  }

  .story-btn:hover {
    background-color: var(--cta);
  }

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

  .story-btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }





  /* 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 (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: 28px 0px;
    text-align: center;
    color: var(--headings);
    text-decoration: none;
    font-size: 22px;
    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;
  }


  /* main section starts here */


  /* sec1 starts here */

  .sec2.about-hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url("/img/about\ hero.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
  }

  .sec2.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 20px; 
    max-width: 900px; 
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
  }

  .about-title {
    font-size: var(--heading-font-size-tablet);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px; 
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }


  /* sec3 starts here */

  .sec3.services-intro {
    background: var(--background2);
    padding: 60px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-label {
    display: inline-block;
    font-size: 16px;
    color: var(--cta);
    font-weight: 600;
    margin-bottom: 12px;
    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;
  }

  .services-container {
    max-width: 960px;
    padding: 0 50px;
  }

  .services-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .services-content {
    flex-direction: column;
    gap: 50px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
  }

  .services-text h2 {
    font-size: var(--heading-font-size-tablet);
    line-height: 1;
    max-width: 100%;
    margin: 0;
    padding: 10px 0;
  }

  .services-description p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 10px 0;
    max-width: 100%;
  }


  /* sec1 starts here */

  .services-scroll-section {
    background: var(--background2);
    padding: 38px;
  }

  .services-scroll-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  /*    MAIN SERVICE TOGGLE */

  .services-main-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
  }

  .services-main-btn {
    background: transparent;
    border: 1px solid var(--cta);
    color: var(--cta);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }

  .services-main-btn.active {
    background: var(--cta);
    color: var(--text1);
  }

  .services-scroll-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: block;
    min-height: auto;
  }

  .services-scroll-nav {
    display: none;
  }

  .services-scroll-list {
    display: none;
  }

  .services-scroll-content {
    height: auto;
    overflow: visible;
    position: relative;
  }

  .services-scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .services-scroll-inner.is-hidden {
    display: none;
  }


  .services-scroll-item {
    background: var(--background3);
    border-radius: 20px;
    padding: 32px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .services-scroll-item h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--headings);
    margin: 0;
  }

  .services-scroll-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text2);
    max-width: 100%;
    margin: 0;
  }

  .serve-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid var(--accent);
  }

  .services-scroll-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 5;
    object-fit: cover;
  }

  .pr-img {
    border-bottom: none;
  }

  .services-scroll-cta {
    display: inline-block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    cursor: pointer;
    margin-bottom: 12px;
    text-transform: capitalize;
  }

  .services-scroll-cta:hover {
    opacity: 0.8;
  }


  /* Quote Popup starts here */

  .quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .quote-modal-overlay.is-open {
    display: flex;
  }

  .quote-modal-card {
    background: var(--background3);
    border-radius: 22px;
    width: min(720px, 92%);
    max-height: 90vh;
    position: relative;
    overflow: hidden;
  }

  .quote-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text2);
    z-index: 2;
  }

  .quote-modal-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .quote-modal-visual {
    background: #000;
    height: 220px;
    width: 100%;
  }

  .quote-modal-form {
    padding: 32px;
    overflow-y: auto;
  }

  .quote-modal-title {
    font-size: 24px;
    margin: 0 0 8px;
    color: var(--headings);
  }

  .quote-modal-subtitle {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 20px;
  }

  .quote-modal-context {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text2);
  }


  .quote-modal-visual {
    background: #fff;
    width: 100%;
    height: 100%;
  }

  .quote-modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }


  .quote-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .quote-modal-fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .quote-modal-fields input,
  .quote-modal-fields textarea {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
  }

  .quote-modal-submit {
    margin-top: 18px;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    align-self: center;
    cursor: pointer;
    color: var(--text2);
    text-decoration: none;
  }


  /* sec4 starts here */

  .sec4.working-process {
    background: var(--background3);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .process-container {
    width: 100%;
    max-width: 960px;
    padding: 0 50px;
    text-align: center;
  }

  .process-header {
    margin-bottom: 30px;
  }

  .process-header h2 {
    font-size: var(--heading-font-size-tablet);
    font-weight: 700;
    color: var(--headings);
    margin: 6px 0;
    line-height: 1.25;
  }

  .process-header p {
    font-size: 15px;
    color: var(--text2);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-content: center;
    align-items: stretch;
  }

  .process-card {
    background: var(--background3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }

  .process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    border-color: var(--cta);
  }

  .process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 10px;
  }

  .process-card p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 36px;
  }

  .process-btn {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cta);
    color: var(--text1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .process-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
  }

  .process-btn .arrow {
    font-size: 18px;
    font-weight: 600;
  }


  /* sec5 starts here */
  .sec5.brand-story {
    background: var(--background2);
    padding: 80px 0;
    display: flex;
    justify-content: center;
  }

  .sec5 .container {
    width: 100%;
    max-width: 1280px;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .cta-banner {
    background: var(--cta);
    color: var(--text1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    padding: 40px;
    margin: 0;
    gap: 40px;
  }

  .cta-label {
    display: inline-block;
    color: var(--accent);
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 8px;
  }

  .cta-heading {
    font-size: var(--heading-font-size-tablet);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: var(--text1);
  }

  .cta-button {
    background: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .cta-button:hover {
    background: var(--accent);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 400;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 180px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--accent);
    color: var(--cta);
  }

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

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

  .story-flex {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 40px 0;
    padding: 30px 0 0;
  }

  .story-images {
    flex: 1 1 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-image.large img {
    width: 100%;
    max-width: 620px;
    border-radius: 200px 200px 0 0;
    display: block;
  }

  .story-image.small {
    position: absolute;
    bottom: -50px;
    right: -80px;
  }

  .story-image.small img {
    width: 280px;
    border-radius: 150px 150px 0 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .story-content {
    flex: auto;
    text-align: left;
    margin-left: -50px;
  }

  .story-title {
    font-size: var(--heading-font-size-tablet);
    font-weight: 700;
    color: var(--headings);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .story-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
  }

  .story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }

  .story-list li {
    position: relative;
    font-size: 16px;
    color: var(--headings);
    font-weight: 600;
    padding-left: 28px;
    margin-bottom: 10px;
  }

  .story-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cta);
    font-size: 16px;
    font-weight: 700;
  }

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

  .story-btn:hover {
    background-color: var(--cta);
  }

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

  .story-btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }









  /* 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 */

  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);
  }

  .material-symbols-outlined{
    font-size: 35px;
  }

  .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;
  }

  #menu-toggle:checked~.menu-items {
    max-height: 100%;
  }

  .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 */


  /* sec2 starts here */

  .sec2.about-hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url("/img/about\ hero.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .sec2.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .about-container {
    position: relative;
    z-index: 2;
    color: var(--text1);
    padding: 0 20px; 
    max-width: 100%;
    width: 100%;
  }

  .about-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    margin-top: 20px;
  }

  .about-title {
    font-size: var(--heading-font-size-mobile);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--text1);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text1);
  }

  .breadcrumb-link {
    color: var(--text1);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
  }

  .breadcrumb-link:hover {
    color: var(--accent);
  }

  .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .breadcrumb-current {
    color: var(--text1);
    opacity: 0.9;
  }


  /* sec3 starts here */

  .sec3.services-intro {
    background: var(--background2);
    padding: 40px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .section-label::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 9px;
    margin-right: 5px;
    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;
  }

  .services-container {
    max-width: 100%;
    padding: 0 25px;
  }

  .services-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .services-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
  }

  .services-text h2 {
    font-size: var(--heading-font-size-mobile);
    line-height: 1;
    margin: 0;
    padding: 0;
    max-width: 100%;
  }

  .services-description p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text2);
    margin: 0;
    padding: 0;
    max-width: 100%;
  }


  /* sec1 starts here */
    
  .services-scroll-section {
    background: var(--background2);
    padding: 32px 20px;
  }

  .services-scroll-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .services-main-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .services-main-btn {
    background: transparent;
    border: 1px solid var(--cta);
    color: var(--cta);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }

  .services-main-btn.active {
    background: var(--cta);
    color: var(--text1);
  }


  .services-scroll-card {
    background: transparent;
    padding: 0;
    display: block;
    min-height: auto;
  }

  .services-scroll-nav {
    display: none;
  }

  .services-scroll-list {
    display: none;
  }

  .services-scroll-content {
    height: auto;
    overflow: visible;
    position: relative;
  }

  .services-scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .services-scroll-inner.is-hidden {
    display: none;
  }


  .services-scroll-item {
    background: var(--background3);
    border-radius: 18px;
    padding: 24px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .services-scroll-item h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--headings);
    margin: 0;
  }

  .services-scroll-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text2);
    max-width: 100%;
    margin: 0;
  }

  .serve-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--accent);
  }

  .services-scroll-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 6;
    object-fit: cover;
  }

  .pr-img {
    border-bottom: none;
  }


  .services-scroll-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    cursor: pointer;
    margin-bottom: 6px;
    text-transform: capitalize;
  }

  .services-scroll-cta:hover {
    opacity: 0.8;
  }


  /* Quote Modal Section starts here */

  .quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .quote-modal-overlay.is-open {
    display: flex;
  }

  .quote-modal-card {
    background: var(--background3);
    border-radius: 18px;
    width: 94%;
    max-height: 94vh;
    position: relative;
    overflow: hidden;
  }

  .quote-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text2);
    z-index: 2;
  }


  .quote-modal-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .quote-modal-visual {
    background: #000;
    height: 180px;
    width: 100%;
  }

  .quote-modal-visual {
    background: #fff;
    width: 100%;
    height: 100%;
  }

  .quote-modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .quote-modal-form {
    padding: 24px 20px;
    overflow-y: auto;
  }

  .quote-modal-title {
    font-size: 22px;
    margin: 0 0 6px;
    color: var(--headings);
  }

  .quote-modal-subtitle {
    font-size: 14px;
    color: var(--text2);
    margin-bottom: 18px;
  }

  .quote-modal-context {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text2);
  }

  .quote-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }

  .quote-modal-fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .quote-modal-fields input,
  .quote-modal-fields textarea {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
  }


  .quote-modal-submit {
    margin-top: 16px;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--cta);
    width: max-content;
    align-self: center;
    cursor: pointer;
    color: var(--text2);
    text-decoration: none;
  }


  /* sec4 starts here */

  .sec4.working-process {
    background: var(--background3);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .process-container {
    width: 100%;
    max-width: 100%;
    padding: 0 25px;
    text-align: center;
  }

  .process-header {
    margin-bottom: 25px;
  }

  .process-header h2 {
    font-size: var(--heading-font-size-mobile);
    font-weight: 700;
    color: var(--headings);
    margin: 6px 0;
    line-height: 1.3;
  }

  .process-header p {
    font-size: 15px;
    color: var(--text2);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 5px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }

  .process-card {
    background: var(--background3);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }

  .process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border-color: var(--cta);
  }

  .process-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--headings);
    margin-bottom: 8px;
  }

  .process-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .process-btn {
    position: absolute;
    bottom: 18px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cta);
    color: var(--text1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .process-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
  }

  .process-btn .arrow {
    font-size: 17px;
    font-weight: 600;
  }




  /* sec5 Starts here */
  .sec5.brand-story {
    background: var(--background2);
    padding: 50px 0 30px;
    display: flex;
    justify-content: center;
  }

  .sec5 .container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .cta-banner {
    background: var(--cta);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: stretch;
    padding: 22px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cta-label {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
  }

  .cta-heading {
    font-size: var(--heading-font-size-mobile);
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
    color: var(--text1);
  }


  .cta-button {
    background: var(--accent);
    color: var(--text1);
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .cta-button:hover {
    background: var(--accent);
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text1);
    font-weight: 400;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 180px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }

  .cta-button:hover {
    background-color: var(--accent);
    color: var(--cta);
  }

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

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


  .story-flex {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
    padding: 10px 1px 0;
  }

  .story-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-image.large img {
    width: 100%;
    max-width: 100%;
    border-radius: 140px 140px 0 0;
    display: block;
  }

  .story-image.small {
    position: static;
    margin-top: 16px;
    align-self: center;
  }

  .story-image.small img {
    width: 70%;
    max-width: 260px;
    border-radius: 120px 120px 0 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .story-content {
    text-align: left;
    margin: 0;
    padding: 5px 10px;
  }

  .story-title {
    font-size: var(--heading-font-size-mobile);
    font-weight: 700;
    color: var(--headings);
    line-height: 1.25;
    margin: 0 0 12px;
  }

  .story-desc {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 100%;
  }

  .story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .story-list li {
    position: relative;
    font-size: 16px;
    color: var(--headings);
    font-weight: 600;
    padding-left: 26px;
    margin-bottom: 8px;
  }

  .story-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cta);
    font-size: 16px;
    font-weight: 700;
  }

  .story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 400;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 160px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }

  .story-btn:hover {
    background-color: var(--cta);
  }

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

  .story-btn:hover svg {
    transform: translateX(0);
    opacity: 1;
  }

















  /* 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;
  }
}