.hero-section {
    background: #1A1A1B;
    height: calc(100vh - 200px);
    width: 100%;
}

.devider {
    transform: rotate(180deg);
    background: #1A1A1B;
}

/* Base styles for the container */
.custom-container {
    width: 100%;
    padding: 15px;
    margin: 0 auto;
  }
  
  /* Responsive behavior */
  @media (min-width: 576px) { /* Small devices (phones) */
    .custom-container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) { /* Medium devices (tablets) */
    .custom-container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) { /* Large devices (desktops) */
    .custom-container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) { /* Extra large devices (large desktops) */
    .custom-container {
      max-width: 1140px;
    }
  }
  
  @media (min-width: 1400px) { /* Extra extra large devices */
    .custom-container {
      max-width: 1320px;
    }
  }
  
.top-menu-bar-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-menu-bar {
    padding: 10px 0;
}

.site-cta {
    color: #fff;
    font-weight: 800;
    padding: 10px 40px;
    border-radius: 8px;
}

.site-logo img {
    width: 150px;
}

.top-navs {
    display: flex;
    gap: 30px;
}

.site-cta.outlined {
    border: 1px solid #e63212;
}

.site-cta.filled {
    background-color:  #e63212;
}

.hero-section-mokup-box {
    border: 0.1px solid #e2e8f0;
    border-radius: 4px;
}

.hero-section-mokup-box-top {
    /* border-bottom: 1px solid #e2e8f0; */
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #e2e8f0;
}

.hero-section-mokup-box-top .dots {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #fff;
    border-radius: 50px;
}

.dots.red {
    background-color: #fd544d;
}

.dots.yellow {
    background-color: #ffb52a;
}

.dots.green {
    background-color: #28c038;
}

.hero-section-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section-content {
    flex: 0 0 35%;
}

.hero-section-mokup {
    flex: 0 0 50%;
}

.hero-section-mokup-screen img {
    width: 100%;
}

.hero-section-content-text {
    color: #fff;
    font-size: 3em;
    margin-bottom: 50px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
}

.single-feature {
    flex: 0 0 45%;
    text-align: center;
    color: #fff;
}

.feature-image img {
    width: 90px;
}

.feature-text p {
    color: #737378;
}

.devider-02 {
    transform: rotate(180deg);
}

.site-workflow {
    background: #1a1a1b;
    margin-top: -10px;
    padding-top: 10px;
}

.site-workflow h2,.site-workflow p {
    margin: 0;
}

.site-workflow img {
    display: block;
    margin-top: 40px;
}

.site-workflow h2 {
    margin-bottom: 20px;
}

.footer-main {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-text {
    font-size: 12px;
}

.copyright {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo {
    flex: 0 0 40%;
}

.footer-contact-us {
    flex: 0 0 250px;
}

.footer-logo-image img {
    width: 150px;
}

a.link {
    color: #fff;
}

.footer-docs {
    display: flex;
    gap: 50px;
}

.tab-content {
    color: #fff;
    text-align: left;
}

.tab-content * {
    color: #fff;
    text-align: left;
}

.about-us-content-card {
    background: #1A1A1B;
    color: #fff;
}

.about-us-content-card-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-us-content-text {
    flex: 0 0 60%;
    padding: 20px;
}

.about-us-content-image {
    flex: 0 0 30%;
}

.about-us-content-image img{
    width: 100%;
    height: 100%;
}

.about-us-content-card .heading {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-us-container {
    display: flex; /* Enable flexbox layout */
  }
  
  .contact-info {
    flex: 1; /* Allow contact info to take up available space */
    margin-right: 20px; /* Add some space between contact info and form */
  }
  
  .contact-form {
    flex: 1; /* Allow contact form to take up available space */
  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }