  /* background-color: #D2B68A; */
  /* background-color: #222D52; */
  /* background-color: #FDFFFF; */
  /* background-color: #EEE5D9; */
  /* background-color: #E8E4E0; */

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
  }

  body {
      background-color: #121212;
  }

  .menu {
      display: flex;
      justify-content: space-around;
      align-items: center;
      background: #333;
      border-radius: 5px;
      position: relative;
      margin: 30px;
      box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
  }

  .menu img {
      width: 70px;
  }

  .navbar {
      list-style: none;
      display: none;
      flex-direction: column;
      background: #444;
      width: 100%;
      position: absolute;
      left: 0;
      top: 75px;
      text-align: center;
      padding: 10px 0;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;
  }

  .navbar li {
      margin: 8px;
      padding: 0;
      border-radius: 5px;
      box-shadow: inset 0 2px 4px rgba(120, 111, 111, 0.2);
      list-style: none;
      display: block;
  }

  .navbar a {
      display: block;
      text-decoration: none;
      color: #d3c3ab;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 5px;

  }

  .navbar li:active,
  .navbar li:last-child {
      background-color: #535353;
  }

  .menu-icon {
      display: flex;
      flex-direction: column;
      cursor: pointer;
  }

  .menu-icon span {
      background: white;
      height: 2px;
      width: 25px;
      margin: 4px 0;
  }

  .show {
      display: flex;
  }

  .push-down {
      margin-top: 241px;
  }

  .main-page {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      height: 75vh;
      margin: 0 30px;
  }

  .main-text {
      width: 40%;
      padding: 30px;
      border-radius: 20px;
  }

  .main-text h1 {
      color: #b2b2b2;
      font-size: 2rem;
      border-radius: 12px;
      margin-bottom: 50px;
  }

  .main-text h1::after {
      content: " →";
      color: #ff6600;
      font-weight: bold;
  }

  .main-text p {
      font-size: 14px;
      font-weight: 700;
      margin: 25px 0;
      color: #7c7c7c;
  }

  .main-text .btn {
      width: 30px;
      padding: 12px 24px;
      border-radius: 2px;
      background: #424242;
      color: white;
      text-decoration: none;
      font-size: 14px;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, .1) inset,
          0 0 0 1px rgba(0, 0, 0, .7),
          0 -1px 0 0 rgba(0, 0, 0, .7) inset,
          0 1px 2px 1px rgba(0, 0, 0, .6);
      cursor: pointer;
      transition: 50ms ease-out;
      font-weight: 600;
  }

  .main-text .btn:hover,
  .button:focus,
  .button:focus-visible {
      background: #353535;
      box-shadow: 0 1px 0 0 rgba(255, 255, 255, .05) inset,
          0 0 0 1px rgba(0, 0, 0, .7),
          0 -1px 0 0 rgba(0, 0, 0, .7) inset,
          0 1px 2px 1px rgba(0, 0, 0, .6);
      border: none;
      outline: none;
  }


  .flowchats {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      position: relative;
      padding: 20px;
  }

  .chart-circle {
      width: 105px;
      height: 105px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow:
          inset 5px 5px 10px #bebebe,
          inset -5px -5px 10px #6d6d6d;
      position: relative;
      font-size: 14px;
  }

  .chart-circle p {
      font-weight: 600;
      margin: 0;
      background-color: #555;
      color: transparent;
      text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.5);
      -webkit-background-clip: text;
      -moz-background-clip: text;
      background-clip: text;
      transition: 0.13s ease-in-out;
  }

  .flowchats>.chart-circle::after {
      content: "";
      position: absolute;
      width: 2px;
      height: 30px;
      background-color: #888888;
      top: 100%;
      left: 50%;
  }

  .flow-serv {
      display: flex;
      justify-content: center;
      gap: 40px;
      width: 100%;
      max-width: 400px;
      position: relative;
      flex-wrap: wrap;
  }

  .flow-serv::before {
      content: "";
      position: absolute;
      width: 74%;
      height: 2px;
      background-color: #888888;
      top: -10px;
      left: 50.3%;
      transform: translateX(-50%);
  }

  .flow-serv .chart-circle::before {
      content: "";
      position: absolute;
      width: 2px;
      height: 10px;
      background-color: #888888;
      top: -10px;
      left: 50%;
  }


  .sr-title {
      color: #ffffff;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 30px;
  }

  .service-section {
      background-color: #333;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 30px;
      margin: 0 20px;
      border-radius: 0 0 5px 5px;
  }

  .service-section .service-card:nth-child(3) {
      grid-column: span 2;
  }

  .service-card {
      border-radius: 10px;
      padding: 25px;
      color: #b2b2b2;
      background-color: #121212;
      border-left: 4px solid #c80000;
  }

  .service-card h3 {
      margin-bottom: 15px;
      color: #7c7c7c;
      text-align: center;
  }

  .service-card p {
      font-family: 'Roboto', 'Segoe UI', sans-serif;
      font-size: 15px;
      line-height: 1.5;
  }

  .service-card ul {
      list-style: none;
      margin: 10px 0 10px 20px;
  }

  .service-card span,
  .dialog-content li {
      font-family: 'Roboto', 'Segoe UI', sans-serif;
      color: #d3c3ab;
      font-family: 12px;
  }

  .service-card li span samp {
      color: #757575;
  }



  table {
      width: 50%;
      border-collapse: collapse;
      margin: 20px auto;
  }

  th,
  td {
      border: 1px solid #333;
      padding: 10px;
      text-align: center;
      font-family: 'Roboto', 'Segoe UI', sans-serif;
  }




  .blog-slider {
      position: relative;
      margin: 50px 20px 20px 20px;
      padding: 0 40px;
      border-radius: 5px;
      background-color: #333;
  }

  .slider-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 60px;
  }

  .slider-container::-webkit-scrollbar {
      display: none;
  }

  .topic-card {
      min-width: 300px;
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }

  .topic-card:hover {
      border: 1px solid #848484;
  }

  .topic-card img {
      width: 100%;
      height: 200px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      margin-bottom: 15px;
  }

  .topic-card h3,
  .dialog-content h3,
  .contact-area h3 {
      color: #d3c3ab;
      margin-bottom: 5px;
      font-family: 'Roboto', 'Segoe UI', sans-serif;
  }

  .topic-card p,
  .dialog-content p,
  .contact-area p,
  .contact address {
      font-family: 'Roboto', 'Segoe UI', sans-serif;
      color: #b2b2b2;
  }

  .read-more-btn {
      color: #fff;
      cursor: pointer;
      border-bottom: 1px solid #7c7c7c;
  }

  .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.1);
      border: none;
      color: white;
      padding: 5px 13px;
      cursor: pointer;
      font-size: 1.5rem;
      border-radius: 50%;
      z-index: 10;
  }

  .slider-btn:hover {
      background-color: rgba(255, 255, 255, 0.2);
  }

  .btn-left {
      left: 2px;
  }

  .btn-right {
      right: 2px;
  }



  .dialog-hidden {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: transparent;
  }

  .dialog-content {
      background-color: #1a1a1a;
      margin: 5%;
      padding: 20px;
      box-shadow: 0 4px 8px #8485844d;
      border-radius: 10px;
      position: relative;
  }

  .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      cursor: pointer;
      font-size: 30px;
      color: red;
  }

  .contact-area {
      /* display: flex;
      justify-content: space-between; */
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* Two equal-width columns */
      gap: 10px;
      /* Optional space between items */
      margin: 50px 20px 20px 20px;
      border-radius: 5px;
      background-color: #333;
  }

  .contact,
  .about {
      margin: 20px;
      background-color: #1a1a1a;
      border-left: 4px solid #c80000;
      border-radius: 10px;
      padding: 30px;
  }



  .contact-heading {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
  }

  .contact-icon {
      transition: transform 0.3s ease;
      color: #2563eb;
  }

  .contact-icon:hover {
      transform: scale(1.1);
      color: #1d4ed8;
  }



  .footer {
      background: #000;
      padding: 30px 0px;
      font-family: 'Play', sans-serif;
      text-align: center;
  }

  .footer .row {
      width: 100%;
      margin: 1% 0%;
      padding: 0.6% 0%;
      color: gray;
      font-size: 0.8em;
  }

  .footer .row a {
      text-decoration: none;
      color: gray;
      transition: 0.5s;
  }

  .footer .row a:hover {
      color: #fff;
  }

  .footer .row ul {
      width: 100%;
  }

  .footer .row ul li {
      display: inline-block;
      margin: 0px 30px;
  }

  .footer .row a i {
      font-size: 2em;
      margin: 0% 1%;
  }


  @media (max-width:850px) {
      .main-page {
          display: block;
          height: auto;
      }

      .main-text {
          width: 100%;
      }

  }

  @media (max-width: 520px) {
      .chart-circle {
          width: 90px;
          height: 90px;
          font-size: 13px;
      }

      .flow-serv {
          flex-direction: column;
          align-items: center;
          gap: 20px;
      }

      .flow-serv::before {
          display: none;
      }

      .flow-serv .chart-circle::before {
          top: -15px;
      }
  }

  @media (max-width: 900px) {
      .service-section {
          display: block;
      }

      .service-card {
          margin-bottom: 40px;
      }
      .contact-area {
        display: block;
        padding: 10px;
    }
  }



  @media (min-width: 768px) {
      .navbar {
          display: flex;
          position: static;
          flex-direction: row;
          background: none;
          width: auto;
      }

      .menu-icon {
          display: none;
      }

      .navbar a {
          padding: 10px 25px;
      }
  }

  @media (max-width: 768px) {
      .menu {
          margin: 8px;
          justify-content: space-between;
          padding: 0 30px;
      }
  }

  @media (max-width:700px) {

 
  }

  @media (max-width:720px) {
      .footer {
          text-align: left;
          padding: 5%;
      }

      .footer .row ul li {
          display: block;
          margin: 10px 0px;
          text-align: left;
      }

      .footer .row a i {
          margin: 0% 3%;
      }
      .topic-card {
        width: 350px;
      }
  }