* {
    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);
    color: rgba(70, 84, 120, 1);
    overflow-x: hidden;
  }
  #bg-video {
    background-attachment: fixed;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1; /* Send behind content */
   
  }
  img {
    max-width: 100%;
  }
  
  button {
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  #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: sticky;
    top: 10px;
    /* display: flex;
    justify-content: center; */
    /* margin-left: 780px; */
    margin: 30px auto 0 auto;
    margin-top: 30px;
    position: sticky;
    z-index: 1;
    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;
  }
  
  /* CTA Button Styles */
  
  .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;
  }
  
  /* Dropdown Menu Styles */
  /* .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1;
  }
  
  .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  } */
  
  .menu-left {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
  }
  
  .menu-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .menu-link {
    color: #7c8db5;
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .menu-link:hover {
    color: #5a67d8;
  }
  
  .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    margin-top: 1rem;
  }
  
  .social-icon {
    color: #7c8db5;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #5a67d8;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .dropdown-menu {
        flex-direction: column;
    }
    
    .menu-left, .menu-right {
        width: 100%;
    }
    
    .menu-right {
        margin-top: 1.5rem;
    }
  }
  
  @media (max-width: 600px) {
    .navbar {
        width: 95%;
        padding: 0.6rem 1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.4rem;
    }
  }

  /* contact form */

  .contact-frm .container {
    width: 40%;
    /* 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: 60px;
    box-sizing: border-box;
    margin-top: 50px;
    
  }

  @media (max-width : 1440px){
    .contact-frm .container{
      width: 60%;
    }
  }
  @media (max-width : 1024px){
    .contact-frm .container{
      width: 80%;
    }
  }
  @media (max-width : 425px){
    .contact-frm .container{
      width: 100%;
    }
  }
  @media (max-width : 375px){
    .contact-frm .container{
      width: 100%;
    }
  }

  .contact-frm h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    background: linear-gradient(96deg, #0dcfff 11.18%, #545c9e 45%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
  }
  .contact-frm p.description {
    text-align: center;
    color: #333;
    font-size: 14px;
    margin-bottom: 30px;
  }
  .contact-frm input, select, textarea {
    width: 100%;
    max-width: 100%;
    padding: 22px 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-frm textarea {
    height: 200px;
    background-color: #ffffff;
    /* resize: none; */
  }

  .contact-frm button {
    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-frm button:hover {
    background: linear-gradient(to right, #7a6ee5, #8d96f0);
  }

  .contact-frm .title {
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  
  /* .lets-talk-section */
  
  .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: 20px;
  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: 159px;
  margin-right: 37px;
  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;
  }
}

/* --- Begin blog.css --- */
* {
  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);
  color: rgba(70, 84, 120, 1);
  overflow-x: hidden;
}
#bg-video {
  background-attachment: fixed;
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1; /* Send behind content */
}
img {
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
#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, #custom-cursor img { display: none; }
}
/* ... (rest of blog.css content here, up to .video-overlay) ... */

/* --- End blog.css --- */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Main container styles */
.desktop-light-mode {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
}

.screen {
  width: 100%;
}

/* Header section */
.div-framer-4-ehy-h {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.div-framer-d-i-ss-w {
  width: 100%;
}

.image {
  width: 100%;
  height: auto;
  max-width: 100%;
object-fit: cover;
}

/* Journal section */
.section-journal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Journal header */
.div-framer-w-7-cow-6 {
  text-align: center;
  margin-bottom: 3rem;
}

.empowering-decisions-with-intelligent-insights {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.span-framer-text {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.innovation-journal {
  font-weight: 600;
}

.div-framer-u-0-ec-59 {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.journal {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1em;
}

/* Article cards */
.link-framer-1-v-6-n-3-bd,
.link-framer-1-v-6-n-3-bd2,
.link-framer-1-v-6-n-3-bd3,
.link-framer-1-v-6-n-3-bd4,
.link-framer-1-v-6-n-3-bd5 {
display: flex;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.link-framer-1-v-6-n-3-bd:hover,
.link-framer-1-v-6-n-3-bd2:hover,
.link-framer-1-v-6-n-3-bd3:hover,
.link-framer-1-v-6-n-3-bd4:hover,
.link-framer-1-v-6-n-3-bd5:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Article content */
.div-framer-1-l-3-y-88,
.div-framer-1-l-3-y-882,
.div-framer-1-l-3-y-883,
.div-framer-1-l-3-y-884,
.div-framer-1-l-3-y-885 {
  flex: 1;
}

.h-6-framer-text,
.h-6-framer-text2,
.div-framer-14-kqpg-9 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.div-framer-zj-9-q-3-y,
.div-framer-zj-9-q-3-y2,
.div-framer-zj-9-q-3-y3,
.div-framer-zj-9-q-3-y4,
.div-framer-zj-9-q-3-y5 {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Reading time section */
.div-framer-1-qcmtys {
display: flex;
align-items: center;
  gap: 1rem;
}

.div-framer-1-wplpd-3,
.div-framer-1-wplpd-32,
.div-framer-1-wplpd-33,
.div-framer-1-wplpd-34 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._4-min,
._3-mins,
._3-min,
._4-mins {
  font-size: 0.875rem;
  color: #666;
}

.reading-time {
  font-size: 0.875rem;
  color: #666;
}

/* Article images */
.div-framer-1-hggbur {
  width: 200px;
  height: 150px;
overflow: hidden;
  border-radius: 4px;
}

.image2 {
  width: 100%;
  height: 100%;
object-fit: cover;
}

 

/* Responsive design */
@media (max-width: 768px) {
  .desktop-light-mode {
      padding: 1rem;
}

  .link-framer-1-v-6-n-3-bd,
  .link-framer-1-v-6-n-3-bd2,
  .link-framer-1-v-6-n-3-bd3,
  .link-framer-1-v-6-n-3-bd4,
  .link-framer-1-v-6-n-3-bd5 {
flex-direction: column;
  }

  .div-framer-1-hggbur {
      width: 100%;
      height: 200px;
  }

  .empowering-decisions-with-intelligent-insights {
      font-size: 2rem;
  }
}

/* Hide the desktop mode indicator */
.desktop-light-mode-1440-x-900,
.https-rescale-framer-ai-journal {
  display: none;
}

/* --- Video Background --- */
.video-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
overflow: hidden;
  pointer-events: none; /* So the video doesn't block clicks */
}
.background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.65; /* Adjust for readability */
  pointer-events: none;
}

/* --- Main Content Layer --- */
.journal-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  /* Optional: add a little shadow to text for readability */
}

/* --- Centered Header --- */
.journal-header {
display: flex;
flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
position: relative;
  z-index: 2;
  /* Very subtle, almost fully transparent */
  border-radius: 16px;
  padding: 24px 0;
  
}

.journal-label .label-text {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 600;
  margin-bottom: 10px;
}
.journal-label .label-underline {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 auto 18px auto;
  border-radius: 1px;
}

.journal-title h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(96deg, #0dcfff 11.18%, #545c9e 45%);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.5;
}
.journal-title h1 + h1 {
  margin-top: 3px;
}

.journal-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 18px;
font-weight: 400;
}

/* --- Article List --- */
.content-container {
display: flex;
  justify-content: center;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 40px 16px;
position: relative;
  z-index: 2;
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .content-wrapper {
      max-width: 100%;
  }
 
}
@media (max-width: 600px) {
  .journal-title h1 {
      font-size: 2rem;
  }
 
}
