* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
  }

  html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
  }

  body {
    font-family: 'Manrope', -apple-system, Roboto, Helvetica, sans-serif;
    background: url(images/video.mp4);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* cursor: none; */
      }
  #bg-video {
    background-attachment: fixed;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1; /* Send behind content */
   
  }

/* cursor */

#custom-cursor {
    position: fixed;
    top: 20px;
    pointer-events: none;
    width: 30px;
    height: 30px;
    z-index: 9999;
    will-change: transform;
  }
  #custom-cursor img {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite; /* Continuous rotation */
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @media (max-width: 500px) {
    #custom-cursor {
      display: none;
    }
    #custom-cursor img {
      display: none;
    }
  }

  /* Navbar Styles */
.navbar {
    /* display: flex;
    justify-content: space-between; */
    align-items: center;
    padding: 0.1rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    
    /* background-color: #FAFCFF; */
    border-radius: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 380px;
    height: 80px;
    position: relative;
    top: 10px;
    /* display: flex;
    justify-content: center; */
    /* margin-left: 780px; */
    margin: 30px auto 0 auto;
    margin-top: 30px;
    position: sticky;
    z-index: 999;
    flex-wrap: wrap;
}


/* ========= Large screens (Desktops >= 1200px) ========= */
@media (min-width: 1200px) {
  .navbar {
    max-width: 380px;
    padding: 0.1rem 1rem;
  }
}

/* ========= Medium screens (Laptops 992px – 1199px) ========= */
@media (max-width: 1199px) {
  .navbar {
    max-width: 340px;
    height: 75px;
    padding: 0.1rem 0.8rem;
  }
}

/* ========= Tablets (768px – 991px) ========= */
@media (max-width: 991px) {
  .navbar {
    width: 95%;
    max-width: 350px;
    height: 70px;
    flex-direction: row;
    padding: 0.2rem 0.6rem;
  }
}

/* ========= Mobile Landscape (576px – 767px) ========= */
@media (max-width: 767px) {
  .navbar {
    width: 95%;
    max-width: 350px;
    height: 65px;
    padding: 0.2rem 0.5rem;
    flex-direction: row;
    justify-content: space-around;
  }
}

/* ========= Mobile Portrait (<= 575px) ========= */
@media (max-width: 575px) {
  .navbar {
    width: 95%;
    max-width: 350px;
    height: 65px;
    padding: 0.5rem;
  }
}



.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4dc9ff 0%, #6c8cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;
}

/* Center Menu Styles */
.center-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.menu-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #6c7eb9;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.menu-dots:hover .dot {
    background-color: #5a67d8;
}

.navbar .cta-button  { 
  background: linear-gradient(102deg, #5967b5 0%, #908eed 88.69%);
  color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    position: relative;
    /* bottom: 15px; */
    right: 10px;
    width: 110px;
    height: 40px;
}

.navbar .cta-button:hover {
  opacity: 0.9;
}

.navbar .cta-button:focus {
  outline: 2px solid #7584d6;
  outline-offset: 2px;
}



  
  /* Spacing Utilities */
  .space-24 {
    margin-top: 24px;
  }
  
  .space-16 {
    margin-top: 16px;
  }
  
  .space-3 {
    margin-top: 3px;
  }
  
  .space-65 {
    margin-top: 65px;
  }
  
  .space-36 {
    margin-top: 36px;
  }
  
  .space-56 {
    margin-top: 56px;
  }
  
  .space-128 {
    margin-top: 128px;
  }
  
  .space-47 {
    margin-top: 47px;
  }
  
  .space-32 {
    margin-top: 32px;
  }
  
  .space-40 {
    margin-top: 40px;
  }
  
  /* Page Container */
  .page-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
  }

  /* about us section */
  
  .about-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 1;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-container p {
    line-height: 2;
    padding: 0 20px;
    color: #000;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-container .profile-image {
    text-align: justify;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .about-container .profile-image h1{    
    font-family: Manrope, sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -2.24px;
    background: linear-gradient(96deg, #0dcfff 11.18%, #545c9e 45%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
  }
  
  .about-container .profile-image img {
    width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 8px;
    margin: 0 auto;
  }
  
  .projects-container {
    display: flex;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 550px;
    margin: 24px auto;
    border-radius: 20px;
  }
  
  .projects-container .project {
    height: 160px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 32px;
  }
  
  .projects-container .project-name {
    font-size: 16px;
  }
  
  .projects-container .project-number {
    font-size: 72px;
    font-weight: bold;
  }
  
  .our-team-heading {
    text-align: justify;
    text-transform: uppercase;
    font-size: 48px;
    padding-top: 64px;
    color: #000;
  }
  
  .our-team {
    display: flex;
    padding: 30px;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .our-team img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .our-team .team-member {
    margin: 0 4px;
    position: relative;
    text-align: justify;
    flex: 1;
    max-width: 300px;
  }
  
  .our-team .designation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    color: #000;
    text-align: justify;
    white-space: nowrap;
  }
  
  .about-container .our-mission {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-container .our-mission .quote-icon {
    position: absolute;
    opacity: 0.2;
    height: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-container .our-mission p {
    margin: 0 auto;
    font-size: 20px;
    font-style: italic;
    color: #000;
    text-align: justify;
    max-width: 80%;
  }
  
  .description p {
    margin-bottom: 8px;
  }
  
  .tick-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 40px;
    max-width: 800px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .tick-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #000;
    line-height: 2;
    text-align: justify;
  }
  
  .tick-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-size: 22px;
    line-height: 1.7;
  }
  
  @media (max-width: 700px) {
    body {
      padding: 10px;
    }
  
    .about-container {
      padding: 10px;
    }
  
    .our-team {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .our-team .team-member {
      max-width: 100%;
    }
  
    .our-team img {
      height: 250px;
      width: 300px;
      object-fit: cover;
      margin: 0 auto;
    }
  
    .our-team .designation {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      margin-top: 10px;
    }
  }
  
  h1, h2, h3, .profile-image, .our-team-heading {
    text-align: justify;
  }
  
  .description p,
  .description li {
    text-align: justify;
  }
  
  .about-container {
    align-items: center;
  }

  /* faq section */

.faq-main{
    padding-bottom: 100px;
  }
  
  @media (max-width: 991px) {
    .faq-main {
      margin-top: 100px;
    }
  }
  
  /* .faq-main h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
  } */
  .faq-title {
    font-family: Manrope, sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -2.24px;
    background: linear-gradient(96deg, #0dcfff 11.18%, #545c9e 45%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
  }
  
  @media (max-width: 991px) {
    .faq-title {
      font-size: 48px;
      line-height: 52.8px;
    }
  }
  
  @media (max-width: 640px) {
    .faq-title {
      font-size: 36px;
      line-height: 39.6px;
    }
  }
  
  /* .faq-main h1 span {
    color: #29b6f6;
  } */
  
  
  .faq-main .subtitle {
    color: #545c9e;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: 4.2px;
    text-transform: uppercase;
  }
  
  .faq-main .faq-container {
    width: 100%;
    max-width: 700px;
    background: #FCFDFD;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .faq-main .faq-item {
    border-bottom: 1px solid #dbeafe;
  }
  
  .faq-main .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  /* .faq-main .faq-question:hover {
    background-color: #eef3ff;
  } */
  
  .faq-main .faq-question span {
    font-size: 20px;
    font-weight: bold;
    color: #7c3aed;
  }
  
  .faq-main .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    position: relative;
    bottom: 20px;
    /* background: #f9faff; */
  }
  
  .faq-main .faq-answer.open {
    padding: 20px 5px;
  }
  
  .faq-main .faq-answer p {
    margin: 0;
    color: #444;
    font-size: 15px;
  }
  
  .faq-main .get-assistance {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    text-align: center;
  }
  
  .faq-main .get-assistance p {
    margin-top: 10px;
    margin-right: 20px;
    color: #555;
  }
  
  /* .faq-main .get-assistance button {
    background: #7c3aed;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    transition: background 0.3s;
  } */
  
  /* .faq-main .get-assistance button:hover {
    background: #6b21a8;
  } */
  
  .faq-main .get-assistance button {
    padding: 14px 20px;
    background: linear-gradient(102deg, #5967b5 0%, #908eed 88.69%);
    color: #fff;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: -0.32px;
    font-family: "Manrope", sans-serif;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-shadow:
      0px 0.518px 0.311px -0.75px rgba(136, 138, 227, 0.47),
      0px 1.569px 0.942px -1.5px rgba(136, 138, 227, 0.46),
      0px 4.149px 2.489px -2.25px rgba(136, 138, 227, 0.43),
      0px 13px 7.8px -3px rgba(136, 138, 227, 0.32);
    width:150px;
    min-height: 48px;
  }
  
  .faq-main .get-assistance button:hover {
    opacity: 0.9;
  }
  
  .faq-main .get-assistance button:focus {
    outline: 2px solid #7584d6;
    outline-offset: 2px;
  }
    
    
    /* contact-form */
    
    .lets-talk-section {
      width: 100%;
      min-height: 50vh;
      background: linear-gradient(180deg, #a5a4fa 0%, #7584d6 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      font-family: "Manrope", sans-serif;
    }
    
    
    .lets-talk-section .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* max-width: 1200px; */
      width: 100%;
      position: relative;
    }
    
    .lets-talk-section .header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 32px;
    }
    
    .lets-talk-section .title {
      font-size: 80px;
      color: #fff;
      font-weight: 500;
      line-height: 100%;
      letter-spacing: -4px;
      text-align: center;
      margin: 0;
    }
    
    .lets-talk-section .description {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 20px;
      color: #fff;
      line-height: 140%;
      letter-spacing: -0.4px;
      text-align: center;
      margin: 0;
    }
    
    .lets-talk-section button {
      border-radius: 24px;
      background-color: #ffffff;
      /* background: linear-gradient(to bottom, rgba(117, 132, 214, 1), rgba(117, 132, 214, 0.9)); */
      box-shadow: 0px 1px 0px -1px rgba(136, 138, 227, 0.475);
      align-self: center;
      margin-top: 35px;
      width: 200px;
      max-width: 100%;
      padding: 18px 31px;
      overflow: hidden;
      font-size: 16px;
      color: rgb(0, 0, 0);
      letter-spacing: -0.32px;
      line-height: 1.3;
      border: none;
    }
    
    .lets-talk-section button:hover {
      /* transform: translateY(-4px); */
      box-shadow:
        0px 0.557px 0.334px -0.75px rgba(136, 138, 227, 0.35),
        0px 1.69px 1.014px -1.5px rgba(136, 138, 227, 0.35),
        0px 4.468px 2.681px -2.25px rgba(136, 138, 227, 0.33),
        0px 14px 8.4px -3px rgba(136, 138, 227, 0.25),
        0px 0px 0px -1.875px rgba(255, 255, 255, 0.23) inset,
        0px 0px 0px -3.75px rgba(255, 255, 255, 0.09) inset,
        0px 0px 2px 0px rgba(30, 33, 115, 0.3) inset;
        background: linear-gradient(to bottom, rgba(117, 132, 214, 1), rgba(117, 132, 214, 0.9));
        color: #ffffff;
        border: 0.5px solid #ffffff;
    }
    
    .lets-talk-section button:focus-visible {
      outline: 2px solid white;
      outline-offset: 2px;
    }
    
    .contact-form .container {
      width: 100%;
      max-width: 500px;
      /* background: rgba(255, 255, 255, 0.4); */
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
      border-radius: 20px;
      padding: 40px;
      box-sizing: border-box;
    }
    
    .contact-form h2 {
      text-align: center;
      font-size: 28px;
      font-weight: 600;
      color: #fff;
      /* color: #3d3b7a; */
      margin-bottom: 10px;
    }
    
    .contact-form h2 span {
      color: #fff;
      /* color: #008fff; */
    }
    
    .contact-form p.description {
      text-align: center;
      color: #333;
      font-size: 14px;
      margin-bottom: 30px;
    }
    
    .contact-form input, select, textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .contact-form textarea {
      height: 100px;
      /* resize: none; */
    }
    
    .contact-form button {
      margin-top: 20px;
      width: 100%;
      padding: 14px;
      background: linear-gradient(to right, #8a7ff5, #9ea6ff);
      border: none;
      border-radius: 25px;
      color: white;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: background 0.3s ease;
    }
    
    .contact-form button:hover {
      background: linear-gradient(to right, #7a6ee5, #8d96f0);
    }
    
    .contact-form .title {
      text-align: center;
      font-size: 12px;
      letter-spacing: 2px;
      color: #666;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
  
  
    /* Features Section */
  .features-section {
      background-color: rgba(249, 250, 251, 1);
      display: flex;
      width: 100%;
      padding: 22px 2px;
      align-items: stretch;
      gap: 40px 100px;
      font-family:
        Manrope,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
      font-size: 32px;
      color: rgba(117, 132, 214, 1);
      font-weight: 500;
      letter-spacing: -1.28px;
      line-height: 1.1;
    }
    
    @media (max-width: 991px) {
      .features-section {
        max-width: 100%;
      }
    }
    
    .features-container {
      display: flex;
      width: 100%;
      align-items: stretch;
      gap: 40px 100px;
    }
    
    .feature-heading {
      flex-grow: 1;
      flex-shrink: 1;
      width: 148px;
      margin: 0;
      font-size: 18px;
      font-weight: 500;
    }
    
    .features-list {
      display: flex;
      align-items: stretch;
      gap: 25px;
    }
    
    .feature-icon {
      aspect-ratio: 1;
      object-fit: contain;
      object-position: center;
      width: 35px;
      align-self: start;
      flex-shrink: 0;
    }
    
    /* Divider Image */
    .divider-image {
      aspect-ratio: 6.85;
      object-fit: contain;
      object-position: center;
      width: 100%;
    
    }
    
    
    
    /*  */
    .cta-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: 400px;
      width: 100%;
    }
    
    .cta-wrapper {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
    }
    
    .cta-button {
      background: linear-gradient(106deg, #f9fafb 0%, #fff 88.69%);
      border-radius: 24px;
      padding: 16px 20px;
      box-shadow:
        0px 0.557px 0.334px -0.75px rgba(136, 138, 227, 0.29),
        0px 1.69px 1.014px -1.5px rgba(136, 138, 227, 0.29),
        0px 4.468px 2.681px -2.25px rgba(136, 138, 227, 0.27),
        0px 14px 8.4px -3px rgba(136, 138, 227, 0.2),
        0px 0px 0px -1.875px rgba(255, 255, 255, 0.23) inset,
        0px 0px 0px -3.75px rgba(255, 255, 255, 0.09) inset,
        0px 0px 2px 0px rgba(30, 33, 115, 0.3) inset;
      color: #7584d6;
      font-family: "Manrope", sans-serif;
      font-size: 16px;
      line-height: 130%;
      letter-spacing: -0.32px;
      cursor: pointer;
      border: none;
      outline: none;
      transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    }
    
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow:
        0px 0.557px 0.334px -0.75px rgba(136, 138, 227, 0.35),
        0px 1.69px 1.014px -1.5px rgba(136, 138, 227, 0.35),
        0px 4.468px 2.681px -2.25px rgba(136, 138, 227, 0.33),
        0px 14px 8.4px -3px rgba(136, 138, 227, 0.25),
        0px 0px 0px -1.875px rgba(255, 255, 255, 0.23) inset,
        0px 0px 0px -3.75px rgba(255, 255, 255, 0.09) inset,
        0px 0px 2px 0px rgba(30, 33, 115, 0.3) inset;
    }
    
    .cta-button:focus-visible {
      outline: 2px solid white;
      outline-offset: 2px;
    }
    
    .availability-badge {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      border: 1px solid #e3e6fa;
      padding: 10px 16px;
    }
    
    .icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .availability-text {
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-size: 16px;
      line-height: 130%;
      letter-spacing: -0.32px;
    }
    
    .visual-elements {
      position: relative;
      margin-top: 60px;
      max-width: 600px;
      width: 100%;
      height: 200px;
    }
    
    .chat-bubbles {
      position: absolute;
      left: 50%;
      top: -120px;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
    }
    
    .chat-bubble {
      background-color: #fff;
      border-radius: 8px;
      box-shadow:
        0px -2.299px 0.766px 0px rgba(133, 146, 163, 0.2) inset,
        0px 5.364px 11.494px -2.299px rgba(100, 124, 153, 0.2),
        0px 1.533px 3.065px 0px rgba(100, 124, 153, 0.3),
        0px 2.299px 0px 0px rgba(255, 255, 255, 0.25) inset;
      padding: 16px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    
    .chat-bubble-left {
      width: 146px;
      height: 50px;
      transform: rotate(6deg);
    }
    
    .chat-bubble-center {
      width: 156px;
      height: 53px;
    }
    
    .chat-bubble-right {
      width: 146px;
      height: 50px;
      transform: rotate(-10deg);
    }
    
    .avatar {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      box-shadow: 0px 6px 10px 0px rgba(189, 200, 223, 0.4);
    }
    
    .chat-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .chat-line {
      width: 68px;
      height: 5px;
      background-color: #e5e8eb;
      border-radius: 76.63px;
    }
    
    .chat-line-short {
      width: 41px;
    }
    
    .chat-line-medium {
      width: 51px;
    }
    
    .decoration-left {
      position: absolute;
      left: -60px;
      top: -80px;
    }
    
    .arrow-decoration {
      width: 119px;
      height: 107px;
      transform: rotate(35deg);
    }
    
    .decoration-right {
      position: absolute;
      right: -40px;
      top: -100px;
    }
    
    .icon-decoration {
      transform: rotate(-90deg);
    }
    
    .icon-decoration-top {
      width: 25px;
      height: 25px;
    }
    
    .icon-decoration-bottom {
      width: 23px;
      height: 23px;
      margin-top: 4px;
    }
    
    @media (max-width: 991px) {
      .title {
        font-size: 60px;
      }
    
      .description {
        font-size: 18px;
      }
    
      .chat-bubbles {
        transform: translateX(-50%) scale(0.9);
      }
    
      .decoration-left {
        left: -40px;
      }
    
      .decoration-right {
        right: -30px;
      }
    }
    
    @media (max-width: 767px) {
      .availability-badge {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 16px;
      }
    
      .chat-bubbles {
        transform: translateX(-50%) scale(0.8);
        top: -100px;
      }
    }
    
    @media (max-width: 640px) {
      .title {
        font-size: 40px;
        letter-spacing: -2px;
      }
    
      .description {
        font-size: 16px;
      }
    
      .chat-bubbles {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        top: -80px;
      }
    
      .chat-bubble {
        transform: none !important;
      }
    
      .decoration-left,
      .decoration-right {
        display: none;
      }
    }
  
  
   /* Main Footer Section */
  .main-footer {
    background: linear-gradient(180deg, #a5a4fa 0%, #7584d6 100%);
    display: flex;
    flex-direction: wrap;
    width: 100%;
    padding: 160px 70px 60px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
  }
  
  
  .footer-content {
    display: flex;
    width: 100%;
    max-width: 1600px;
    align-items: start;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  @media (max-width : 1024px){
    .footer-content{
      gap: 10px;
    }
  }
  
  .footer-sections {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-sections-row {
    display: flex;
    align-items: stretch;
    gap: 40px 100px;
    font-family:
      Manrope,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    color: rgba(249, 250, 251, 1);
    font-weight: 400;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .footer-sections-row {
      max-width: 100%;
    }
  }
  
  .company-info {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 28px;
    flex: 1;
  }
  
  .company-logo {
    aspect-ratio: 3;
    object-fit: contain;
    object-position: center;
    width: 250px;
    position: relative;
    right: 50px;
  }
  
  .company-description {
    margin-top: -9px;
    margin-bottom: 0;
    position: relative;
    right: 28px;
  }
  
  @media (max-width: 991px) {
    .company-description {
      margin-right: 8px;
    }
  }
  
  .newsletter {
    align-self: start;
    display: flex;
    margin-top: 25px;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
  }
  @media (max-width : 1024px){
    .newsletter{
      position: relative;
      right: 40px;
    }
  }
  
  .newsletter-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.28px;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .newsletter-heading {
      margin-right: 7px;
    }
  }
  
  .newsletter-subheading {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.32px;
    align-self: start;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  .email-signup {
    display: flex;
    margin-top: 37px;
    align-items: stretch;
    gap: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    justify-content: space-between;
  }
  
  .email-label {
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .submit-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    flex-shrink: 0;
  }
  
  .social-links {
    align-self: end;
    display: flex;
    margin-top: -20px;
    margin-right: 130px;
    align-items: stretch;
    gap: 12px;
  }
  
  @media (max-width: 991px) {
    .social-links {
      margin-right: 10px;
      margin-top: 40px;
    }
  }
  
  .social-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 28px;
    flex-shrink: 0;
  }
  
  /* Footer Navigation */
  .footer-nav {
    margin-top: 10px;
  }
  
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-family:
      Manrope,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
    color: rgba(249, 250, 251, 1);
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 1.3;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-link {
    color: rgba(249, 250, 251, 1);
    text-decoration: none;
    display: block;
    margin-top: 22px;
  }
  
  .nav-list li:first-child .nav-link {
    margin-top: 0;
  }
  
  .copyright {
    font-size: 14px;
    letter-spacing: -0.14px;
    align-self: stretch;
    margin-top: 75px;
    margin-bottom: 0;
  }
  
  @media (max-width: 991px) {
    .copyright {
      margin-top: 40px;
    }
  }
  
  .secondary-nav {
    margin-top: 10px;
  }
  
  .nav-decoration {
    aspect-ratio: 0.37;
    object-fit: contain;
    object-position: center;
    width: 30px;
    align-self: end;
    margin-top: 42px;
  }
  
  @media (max-width: 991px) {
    .nav-decoration {
      margin-top: 40px;
    }
  }
  
  /* Attribution Section */
  .attribution {
    background-color: rgba(183, 192, 232, 0.54);
    display: flex;
    width: 100%;
    padding: 40px 70px;
    flex-direction: column;
    align-items: center;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    color: rgba(30, 43, 58, 1);
    /* justify-content: center; */
  }
  
  @media (max-width: 991px) {
    .attribution {
      max-width: 100%;
      padding: 40px 20px;
    }
  }
  
  .attribution-container {
    display: flex;
    width: 508px;
    max-width: 100%;
    align-items: center;
    gap: 40px 49px;
    flex-wrap: wrap;
  }
  
  /* .designer-logo {
    aspect-ratio: 4.65;
    object-fit: contain;
    object-position: center;
    width: 130px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
    max-width: 100%;
  } */
  
  .designer-credit {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-grow: 1;
    flex-shrink: 1;
    width: 106px;
    position: relative;
    text-align: center;  
  }
  
  /* whatsapp */
  
  .btnicon-whatsapp {
    width: 50px;
    height: 50px;
    border-radius: 120%;
    background-color: #ffffff; 
    right: 60px;
    position: fixed;
    bottom: 20px;
    margin-left: 31px;
    font-size: 31px;
    line-height: 50px;
    text-align: center;
    z-index: 999;
  }
  
  .fa-whatsapp{
    color:#5dda3d;
  }
  
  @media (max-width : 768px){
    .btnicon-whatsapp{
      right: 20px;
    }
  }
  
  .btnicon-linkedin {
    width: 50px;
    height: 50px;
    border-radius: 120%;
    background-color: #ffffff; 
    right: 60px;
    position: fixed;
    bottom: 80px;
    margin-left: 31px;
    font-size: 31px;
    line-height: 10px;
    text-align: center;
    z-index: 999;
  }
  
  .fa-linkedin{
    color:#6476ef;
    margin-top: 10px;
  }
  @media (max-width : 768px){
    .btnicon-linkedin{
      right: 20px;
    }
  }
  