body {
    font-family: sans-serif;
    background-color: rgba(211, 211, 211, 0.212);
    
}

/* Tag Start */
.so {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.Tag {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 90%; /* Default for mobile */
    max-width: 1200px; /* Ensure it doesn't exceed a reasonable width */
    background-color: black;
    font-size: 20px; /* Default font size for small screens */
    font-weight: 600;
    border: 3px solid goldenrod;
    border-radius: 20px;
    color: goldenrod;
    padding: 0 10px; /* Add padding for spacing */
    text-align: center;
    box-sizing: border-box; /* Include padding in the element size */
}

/* Responsive Adjustments */

/* Small devices (mobile, less than 576px) */
@media (max-width: 575.98px) {
    .Tag {
        font-size: 18px;
        width: 95%; /* Take up more space on smaller screens */
    }
}

/* Medium devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .Tag {
        font-size: 22px;
        width: 80%;
    }
}

/* Large devices (laptops, 768px and up) */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .Tag {
        font-size: 28px;
        width: 70%;
    }
}

/* Extra-large devices (desktops, 1024px and up) */
@media (min-width: 1024px) and (max-width: 1919.98px) {
    .Tag {
        font-size: 36px;
        width: 60%;
    }
}

/* Ultra-large devices (4K and beyond, 1920px and up) */
@media (min-width: 1920px) {
    .Tag {
        font-size: 40px;
        width: 50%;
    }
}
/* Tag End */

/* More Service First Card Start */

.gov-legal-doc-box {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gov-legal-doc-title {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.gov-legal-doc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;

}

.gov-legal-doc-card {
    background-color: #EEF0F3;
    /* border-radius: 10px; */
    width: 110px;
    height: 95px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    border: 2px solid white; /* White border around each individual card */
    border-radius: 10px; /* Rounded corners for smooth edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow on each card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
}

.gov-legal-doc-card:hover {
    background-color: #D3D3D3;
    /* Light gray background on hover */
    transform: scale(1.1);
    /* Zoom in the card on hover */
}

.gov-legal-doc-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
}

.gov-legal-doc-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* Tablet View: Scrollable */
@media (min-width: 768px) and (max-width: 900px) {
    .gov-legal-doc-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gov-legal-doc-container::-webkit-scrollbar {
        display: none;
    }

    .gov-legal-doc-card {
        flex: 0 0 auto;
    }
}
/* More Service First Card End */


/* More Service Second Card Start */

.insurance-section-box {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .insurance-section-title {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .insurance-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .insurance-service-card {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .insurance-service-card:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .insurance-service-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .insurance-service-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .insurance-card-wrapper {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .insurance-card-wrapper::-webkit-scrollbar {
      display: none;
    }

    .insurance-service-card {
      flex: 0 0 auto;
    }
  }

/* More Service Second Card End */


/* More Service Third Card Start */

.webdev-service-section {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .webdev-service-title {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .webdev-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .webdev-card-item {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .webdev-card-item:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .webdev-card-item img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .webdev-card-item p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .webdev-card-wrapper {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .webdev-card-wrapper::-webkit-scrollbar {
      display: none;
    }

    .webdev-card-item {
      flex: 0 0 auto;
    }
  }

/* More Service Third Card End */


/* More Service Four Card Start */


.digi-marketing-container {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .digi-marketing-heading {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .digi-card-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .digi-card {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .digi-card:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .digi-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .digi-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .digi-card-holder {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .digi-card-holder::-webkit-scrollbar {
      display: none;
    }

    .digi-card {
      flex: 0 0 auto;
    }
  }

/* More Service Four Card End */


/* More Service Fifth Card Start */

.banking-finance-wrapper {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .banking-finance-heading {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .banking-finance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .finance-service-card {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .finance-service-card:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .finance-service-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .finance-service-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .banking-finance-grid {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .banking-finance-grid::-webkit-scrollbar {
      display: none;
    }

    .finance-service-card {
      flex: 0 0 auto;
    }
  }

/* More Service Fifth Card End */


/* More Service Six Card Start */

.biz-comp-section {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .biz-comp-title {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .biz-comp-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .biz-comp-card {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .biz-comp-card:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .biz-comp-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .biz-comp-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .biz-comp-wrapper {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .biz-comp-wrapper::-webkit-scrollbar {
      display: none;
    }

    .biz-comp-card {
      flex: 0 0 auto;
    }
  }

/* More Service Six Card End */

/* More Service Seven Card Start */

.social-welfare-section {
    margin: 30px auto;
    padding: 20px;
    padding-bottom: 35px;
    max-width: 1200px;
    /* height: 190px; */
    border: 2px solid white;
    background-color: rgba(211, 211, 211, 0.233);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .social-welfare-title {
    font-size: 24px;
    margin-top: 0px;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .social-welfare-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
  }

  .social-welfare-card {
    background-color: #EEF0F3;
    width: 110px;
    height: 95px;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
  }

  .social-welfare-card:hover {
    background-color: #D3D3D3;
    transform: scale(1.1);
  }

  .social-welfare-card img {
    height: 50px;
    margin-top: 10px;
    object-fit: contain;
  }

  .social-welfare-card p {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

  @media (min-width: 768px) and (max-width: 900px) {
    .social-welfare-cards {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .social-welfare-cards::-webkit-scrollbar {
      display: none;
    }

    .social-welfare-card {
      flex: 0 0 auto;
    }
  }

  /* More Service Seven Card End */

  
