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

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


  /* sec1 starts here */

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

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





  /* sec2 starts here */

  .sec2.about-intro {
    background: var(--background2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }

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

  .about-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 820px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

  .about-heading {
    margin-bottom: 30px;
  }

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

  .about-heading h2 {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    line-height: 1.1;
    margin: 0 0 16px;
  }

  .about-heading p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text2);
    margin: 0;
    padding: 0;
    max-width: 90%;
  }

  .core{
    color: var(--cta);
    font-size: 20px;
    font-weight: bold;
    margin: -9px 0 0;
    padding: 0;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
    list-style: none;
    padding: 0;
  }

  .about-features li {
    font-size: 16px;
    font-weight: 600;
    color: var(--headings);
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
  }

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

  /* sec3 starts here */

  .sec3.why-us {
    background: var(--background3);
    padding: var(--general-padding);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .why-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
  }

  .why-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
  }

  .why-content {
    flex: 1 1 110%;
  }

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

  .section-label {
    display: inline-block;
    font-size: 15px;
    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;
    color: var(--accent);
  }

  .why-header h2 {
    font-size: var(--heading-font-size-desktop);
    color: var(--headings);
    line-height: 1.1;
    margin: 0;
  }

  .why-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--headings);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
  }

  .accordion-header:hover {
    color: var(--cta);
  }

  .accordion-icon {
    font-size: 22px;
    color: var(--cta);
    font-weight: bold;
    margin-left: 10px;
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .accordion-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text2);
    margin: 10px 0 0 24px;
    max-width: 90%;
  }

  .accordion-item.active .accordion-body {
    max-height: 200px;
    opacity: 1;
  }

  .why-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .why-image {
    width: 100%;
    max-width: 460px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 0
  }

  .why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }

  .why2 {
    margin-top: 180px;
  }


  /* sec4 starts here */

  .sec4 {
    background: var(--background3);
    padding: var(--general-padding);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .stats-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 0 50px;
  }

  .stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cta);
    color: var(--text1);
    border-radius: 40px;
    padding: 50px 80px;
    width: 100%;
    box-sizing: border-box;
  }

  .stat-box {
    flex: 1;
    text-align: center;
  }

  .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text1);
    margin: 0 0 8px 0;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text1);
    opacity: 0.9;
  }

  .stat-box:hover .stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: default;
  }

  /* sec6 starts here */

  .sec6 {
    background: var(--background2);
    display: block;
    padding: 60px 80px;
  }

  .sec6-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0 0px;
    gap: 60px;
  }

  .identity-header {
    display: flex;
    flex-direction: column;
  }

  .identity-header h2 {
    font-size: var(--heading-font-size-desktop);
    margin: 0;
    padding: 10px 0;
    font-weight: 700;
    color: var(--headings);
  }

  .identity-image {
    width: 40%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .identity-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1 1 55%;
    border-radius: 40px;
  }

  .vision {
    color: var(--text2);
    margin: 30px 0 0 0;
    flex: 1 1 50%;
  }
  
  .core2 {
    color: var(--cta);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }

  .vision-content {
    font-size: 17px;
    max-width: 90%;
    line-height: 1.6;
    padding: 10px 0;
    margin: 0;
  }


  /* sec5 starts here */

  .sec5 {
    background: var(--background2);
    padding: var(--general-padding);
    display: flex;
    justify-content: center;
  }

  .strategy-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 0;
  }

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

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

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

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

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

  .strategy-card {
    background: var(--background2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 45px 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

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

  .card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }

  .card-icon img {
    width: 100%;
    height: auto;
    display: block;
  }

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

  .strategy-card p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 5px;
  }

  .cta-team {
    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;
    grid-column: 1 / -1;
    justify-self: center;
    transition: background-color 0.3s ease;
  }

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

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

  .cta-team: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: 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;
  }

  /* main section starts here */


  /* sec1 starts here */

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

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


  /* sec2 starts here */
  .sec2.about-intro {
    background: var(--background2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 42px;
  }

  .about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }

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

  .about-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 820px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

  .about-heading {
    margin-bottom: 30px;
    background: transparent;
  }

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

  .about-heading h2 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    line-height: 1.1;
    margin: 0 0 16px;
  }

  .about-heading p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text2);
    margin: 0;
    padding: 0;
    max-width: 90%;
  }

  .core{
    color: var(--cta);
    font-size: 20px;
    font-weight: bold;
    margin: -9px 0 0;
    padding: 0;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(2, .4fr);
    gap: 12px;
    margin-top: 16px;
    list-style: none;
    padding: 0;
  }

  .about-features li {
    font-size: 16px;
    font-weight: 600;
    color: var(--headings);
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
  }

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


  /* sec3 starts here */

  .sec3.why-us {
    background: var(--background3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .why-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .why-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .why-content {
    flex: 1;
    z-index: 1;
  }

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

  .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;
    color: var(--accent);
  }

  .why-header h2 {
    font-size: var(--heading-font-size-tablet);
    color: var(--headings);
    line-height: 1.1;
    margin: 0;
  }

  .why-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--headings);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
  }

  .accordion-header:hover {
    color: var(--cta);
  }

  .accordion-icon {
    font-size: 22px;
    color: var(--cta);
    font-weight: bold;
    margin-left: 10px;
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .accordion-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text2);
    margin: 10px 0 0 24px;
    max-width: 90%;
  }

  .accordion-item.active .accordion-body {
    max-height: 200px;
    opacity: 1;
  }

  .why-images {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    margin-top: -110px;
    padding: 20px;
    z-index: 0;
  }

  .why-image {
    width: 100%;
    max-width: 460px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 0;
  }

  .why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }

  .why2 {
    margin-top: 380px;
  }


  /* sec4 starts here */

  .sec4 {
    background: var(--background3);
    padding: var(--general-padding);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .stats-container {
    width: 100%;
    max-width: 900px;
    padding: 30px 0 40px;
  }

  .stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cta);
    color: var(--text1);
    border-radius: 40px;
    padding: 50px 10px; 
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap; 
  }

  .stat-box {
    flex: 1 1 45%; 
    text-align: center;
    margin-bottom: 10px; 
  }

  .stat-number {
    font-size: 2rem; 
    font-weight: 700;
    color: var(--text1);
    margin: 0 0 8px 0;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text1);
    opacity: 0.9;
  }

  .bott {
    margin-bottom: 40px;
  }

  .stat-box:hover .stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: default;
  }
 

  /* sec6 starts here */

  .sec6 {
    background: var(--background2);
    display: block;
    padding: 40px 50px;
  }

  .sec6-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0 0px;
    gap: 60px;
  }

  .identity-header {
    display: flex;
    flex-direction: column;
  }

  .identity-header h2 {
    font-size: var(--heading-font-size-tablet);
    margin: 0;
    padding: 10px 0;
    font-weight: 700;
    color: var(--headings);
  }

  .identity-image {
    width: 55%;
    max-width:100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .identity-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1 1 55%;
    border-radius: 40px;
  }

  .vision {
    color: var(--text2);
    margin: 0;
    flex: 1 1 50%;
  }
  
  .core2 {
    color: var(--cta);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }

  .vision-content {
    font-size: 17px;
    max-width: 90%;
    line-height: 1.6;
    padding: 10px 0;
    margin: 0;
  }


  /* sec5 starts here */

  .sec5 {
    background: var(--background2);
    display: flex;
    justify-content: center;
  }

  .strategy-container {
    width: 100%;
    max-width: 900px; 
    padding: 40px 60px;
  }

  .strategy-header {
    text-align: center;
    margin-bottom: 10px;
    background: var(--background2);
  }

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

  .strategy-header h2 {
    font-size: var(--heading-font-size-tablet);
    font-weight: 700;
    color: var(--headings);
    line-height: 1.2;
    margin-bottom: 14px;
  }

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

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

  .strategy-card {
    background: var(--background2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

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

  .card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }

  .card-icon img {
    width: 100%;
    height: auto;
    display: block;
  }

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

  .strategy-card p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 5px;
  }

  .cta-team {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 400;
    padding: 12px 30px;
    font-size: 18px; 
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 140px;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 20px 0 0; 
  }

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

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

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

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

  /* sec1 starts here */

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

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

  /* sec2 starts here */

  .sec2.about-intro {
    background: var(--background2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    text-align: left;
  }

  .about-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 25px; 
  }

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

  .about-images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 390px;
    margin-left: -5px;
  }

  .about-image img {
    width: 100%;
    height: auto; 
    object-fit: cover;
    display: block;
  }

  .about-content {
    width: 100%;
    text-align: left;
  }

  .about-heading {
    margin-bottom: 20px; 
    background: transparent;
  }

  .section-label {
    display: inline-block;
    font-size: 16px;
    color: var(--cta);
    font-weight: 600;
    margin-bottom: 8px; 
  }

  .about-heading h2 {
    font-size: var(--heading-font-size-mobile); 
    color: var(--headings);
    line-height: 1.1;
    margin: 0 0 10px; 
  }

  .about-heading p {
    font-size: 16px; 
    line-height: 1.6;
    color: var(--text2);
    margin: 0;
    padding: 0;
    max-width: 90%; 
  }

  .core {
    color: var(--cta);
    font-size: 18px; 
    font-weight: bold;
    margin: -9px 0 0;
    padding: 0;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr; /* Stack features vertically on mobile */
    gap: 12px;
    margin-top: 16px;
    list-style: none;
    padding: 0;
  }

  .about-features li {
    font-size: 16px; /* Font size for mobile */
    font-weight: 600;
    color: var(--headings);
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
  }

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


  /* sec3 starts here */

  .sec3.why-us {
    background: var(--background3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    flex-direction: column;
    text-align: left;
  }

  .why-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0px;
    word-wrap: break-word;
  }

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

  .why-content {
    width: 100%;
    z-index: 1;
  }

  .why-header {
    margin-bottom: 20px;
  }

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

  .why-header h2 {
    font-size: var(--heading-font-size-mobile);
    color: var(--headings);
    line-height: 1.1;
    margin: 0 0 16px;
    word-wrap: break-word;
  }

  .why-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--headings);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    word-wrap: break-word;
  }

  .accordion-header:hover {
    color: var(--cta);
  }

  .accordion-icon {
    font-size: 22px;
    color: var(--cta);
    font-weight: bold;
    margin-left: 10px;
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .accordion-body p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text2);
    margin: 10px 0 0 24px;
    max-width: 90%;
    word-wrap: break-word;
  }

  .accordion-item.active .accordion-body {
    max-height: 200px;
    opacity: 1;
  }

  .why-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    z-index: 0;
    padding: 10px;
  }

  .why-image {
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }

  .why2 {
    display: none;
  }


  /* sec4 starts here */ 
  sec4 {
    background: var(--background3);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .stats-container {
    width:100%;
    max-width: 900px;
    padding: 40px 0x;
    text-align: center;
  }

  .stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cta);
    color: var(--text1);
    border-radius: 0;
    padding: 50px 10px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .stat-box {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text1);
    margin: 0 0 8px 0;
    line-height: 1.1;
  }

  .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text1);
    opacity: 0.9;
  }

  .bott {
    margin-bottom: 10px;
  }

  .stat-box:hover .stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: default;
  }

   /* sec6 starts here */

  .sec6 {
    background: var(--background2);
    display: block;
    padding: 40px 25px;
  }

  .sec6-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0 0px;
    gap: 60px;
  }

  .identity-header {
    display: flex;
    flex-direction: column;
  }

  .identity-header h2 {
    font-size: var(--heading-font-size-mobile);
    margin: 0;
    padding: 10px 0;
    font-weight: 700;
    color: var(--headings);
  }

  .identity-image {
    width: 70%;
    max-width:100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .identity-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1 1 55%;
    border-radius: 40px;
  }

  .vision {
    color: var(--text2);
    margin: 0;
    flex: 1 1 50%;
  }
  
  .core2 {
    color: var(--cta);
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }

  .vision-content {
    font-size: 17px;
    max-width: 100%;
    line-height: 1.6;
    padding: 10px 0;
    margin: 0;
  }

  .seperate {
    margin-top: 30px;
  }



  /* sec5 starts here */

  .sec5 {
    background: var(--background2);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 25px;
  }

  .strategy-container {
    width: 100%;
    max-width: 900px;
    padding: 40px 0px;
  }

  .strategy-header {
    text-align: center;
    margin-bottom: 20px;
    background: var(--background2);
  }

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

  .strategy-header h2 {
    font-size: var(--heading-font-size-tablet);
    font-weight: 700;
    color: var(--headings);
    line-height: 1.2;
    margin-bottom: 14px;
    margin-top: 5px;
  }

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

  .strategy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }

  .strategy-card {
    background: var(--background2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

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

  .card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }

  .card-icon img {
    width: 100%;
    height: auto;
    display: block;
  }

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

  .strategy-card p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 5px;
  }


  .cta-team {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta);
    color: var(--text1);
    font-weight: 400;
    padding: 12px 30px;
    font-size: 18px; 
    border-radius: var(--border);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 140px;
    max-width: 100%;
    justify-self: center;
    grid-column: 1 / -1;
    transition: background-color 0.3s ease;
    margin: 20px 0 0; 
  }

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

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

  .cta-team: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;
  }

}