* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    transition: background-color 0.5s ease;
  }
  
  .container {
    display: flex;
    height: 100vh;
    position: relative;
  }
  
  .leftContainer {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .midContainer {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
  }
  
  #transring {
    width: 100%;
    height: 100%;
  }
  
  .pathContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .pathContent h4 {
    margin: 0;
    font-size: 1.2rem;
  }
  
  .pathContent h1 {
    margin: 0.5rem 0;
    font-size: 2.5rem;
  }
  

  
  .company-info {
    position: absolute;
    bottom: 100px;
    left: 50px;
    color: white;
  }
  
  .buttomLeftContainer {
    position: absolute;
    bottom: 50px;
    left: 50px;
  }
  
  .buttomLeftContainer a, .skip-button a {
    text-decoration: none;
    color: rgb(212, 212, 212);
  }
  
  .skip-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
  }
  
  .rightContainer {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    grid-template-rows: repeat(3, 2fr);
    gap: 1rem;
    padding: 2rem;
    z-index: 1;
    overflow: hidden;
    position: relative;
  }
  
  .rightContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
  }
  
  .chat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
 
  @media (max-width: 768px) {
    .rightContainer{
      order:1;
    }
    .leftContainer{
      order: 2;
    }
    .container{
      display: flex;
      flex-direction: column;
    }
    .chat-icon, .midContainer{
      display: none;
    }
    .company-info {
      position: absolute;
      bottom: 100px;
      left: 50px;
      text-align: left;
    }
    .buttomLeftContainer {
    position: absolute;
    bottom: 50px;
    left: 50px;
  }

  .skip-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
  }

 

  .desktop-dots {
    display: flex;
    flex-direction: row;
    /* position: absolute; */
    /* bottom: 10px; */
    /* left: 50%; */
    transform: translateX(-50%);
  }
  .carousel {
    position: relative; /* Ensure positioning context */
  }
  
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Space above the dots */
    position: absolute; /* Positioning dots relative to the carousel */
    bottom: 10px;      /* Distance from the bottom of the carousel */
    left: 50%;         /* Center horizontally */
    transform: translateX(-50%); /* Adjust for centering */
  }
  
  /* Individual dot */
  .dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  /* Active dot */
  .dot.active {
    background-color: #333;
  }
  
  }