  /* Reset default padding and margin */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  /* Top navigation bar styling */
  .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: black;
      margin-top: 3vw;
      padding: 1rem 2rem;
  }

  /* Logo styling */
  .top .logo {
      font-size: 2vw;
      font-weight: bold;
      margin-left: 4vw;
  }

  .bottoms {
      margin-top: 3vw;
  }

  .first {
      font-size: 6vw;
      margin: 0 10vw;
  }

  .third {
      margin-top: 5vw;
      display: flex;
      flex-direction: row;
  }

  .r-logo {
      height: 45vw;
      width: 50vw;

  }
  .r-logo iframe {
    width: 100%;
    height: 100%;
    padding: 2vw;
  }

  .txt-3 {
      display: flex;
      flex-direction: column;
      align-self: center;

  }

  .txt-3 p {
      font-size: 2vw;
      max-width: 40vw;
  }

  .whatwedo {
      text-align: center;
      cursor: default;
      font-size: 2vw;
      max-width: 31vw;
      margin-top: 3vw;
      padding: 5vw 6vw;
      border: 1px solid black;
      border-radius: 1000px;
      position: relative;
      overflow: hidden;
  }

  .whatwedo:hover {
      transition: background-position 1s ease, color 1s ease;
      background-image: linear-gradient(to top, black 50%, transparent 50%);
      background-position: bottom;
      background-size: 100% 200%;
      color: white;
  }

  .forth {
      background-color: #161616;
      width: 100%;
      display: flex;
      height: fit-content;
      border-top-right-radius: 100px;
      border-top-left-radius: 100px;
  }

  .text-plot {
      padding: 8vw;
      color: white;
      font-size: 8vw;
  }

  .plots p {
      color: white;
  }

  .plots {
      margin: 0 15vw;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 3vw;
  }

  .plots div {
      text-align: center;
      padding: 10px;
      font-size: 2vw;
  }

  .plots img {
      height: 35vw;
      width: 25vw;
      border-radius: 50px;
  }

  .img {
      height: 35vw;
      position: relative;
      width: 25vw;
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      align-content: center;
      border: 1px solid white;
      color: white;
  }

  .splash {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      /* Semi-transparent overlay */
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
  }

  .video video {
      width: 80vw;
      border-radius: 20px;
  }

  .video {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 2vw;
      margin-bottom: 9vw;
      color: white;
      font-size: 2vw;
  }

  footer {
      background-color: black;
      color: #fff;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
  }

  .footer-content {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-evenly;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 20px;
      border-bottom: 1px solid #444;
  }

  .footer-section {
      flex: 1;
      min-width: 200px;
  }

  .brand-name {
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 0 10px;
  }

  .footer-section h3 {
      font-size: 1.2em;
      margin-bottom: 10px;
  }

  .footer-section p,
  .footer-section ul {
      margin: 0 0 10px;
  }

  .footer-section ul {
      list-style: none;
      padding: 0;
  }

  .footer-section ul li {
      margin: 5px 0;
  }

  .footer-section ul li a {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s;
  }

  .footer-section ul li a:hover {
      opacity: 1;
  }

  .contact p {
      margin: 5px 0;
      font-size: 0.9em;
  }

  .contact a {
      width: fit-content;
      color: white;
      text-decoration: none;
  }

  .social {
      margin-top: 20px;
      text-align: center;
  }

  .social p {
      font-size: 0.9em;
  }

  .social a {
      color: #fff;
      font-size: 1.5em;
      margin: 0 10px;
      transition: color 0.3s;
  }

  .facebook:hover {
      color: #0077ff;
  }

  .instagram:hover {
      color: rgb(246, 16, 85);
  }

  .rights {
      font-size: 0.8em;
      text-align: center;
      margin-top: 20px;
      opacity: 0.7;
  }

  .chat-button {
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      margin: 5px;
      border: none;
      border-radius: 50%;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-size: 16px;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
      position: fixed;
      bottom: 20px;
      /* Adjust the distance from the bottom */
      z-index: 1000;
      /* Ensures the buttons stay on top */
  }

  .chat-button i {
      font-size: 40px;
  }

  .whatsapp {
      background-color: #25D366;
      right: 10px;
      /* Positions it closer to the right corner */
  }

  .whatsapp:hover {
      background-color: #1eae57;
  }

  @media (min-width: 600px) {
      .footer-content {
          flex-direction: row;
      }
  }

  @media only screen and (max-width: 768px) {
      .forth {
          border-top-right-radius: 50px;
          border-top-left-radius: 50px;
      }

  }