
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --container: 1200px;
  --gutter: 15px;
}
html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: #306374;
  background: #ffffff;
}
p, table, td, th, h1, h2, h3, h4, h5, h6, ul, ol, li, span, a, button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
.site-wrapper {
  width: var(--container);
  max-width: var(--container);
  min-width: var(--container);
  margin: 0 auto;
}

.container {
    width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

    td {text-align: center;}
    table {
            border: solid black;
      border-collapse: collapse;
        }
        th, td {
            border: solid black; /* Border for table cells */
        }
  
  .contains {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 40px;
    margin: 0;
  }

  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 920px;
  }

  .review-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-height: 425px;
  }

  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
  }


  .HM { background-color: #f9d2dc; color: #000; }
  .JR { background-color: #f9f1b4; color: #000; }
  .DC { background-color: #fde0c5; color: #000; }

  .review-name {
    font-weight: bold;
    text-align: left;
  }

  .time-ago {
    font-size: 14px;
    color: gray;
    text-align: left;
  }

  .stars {
    color: #00b67a;
    float: left;
    text-align: left;
  }

  .review-content {
    font-size: 15px;
    color: #333;
    text-align: left;
  }

  .see-more {
    color: #007bff;
    font-size: 16px;
    cursor: pointer;
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
  }

  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2px;
    border: 1px solid #888;
    width: 80%;
    max-width: 307px;
    border-radius: 10px;
  font-family: Arial, sans-serif;
  }

  .modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .modal-close:hover,
  .modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }


    .start {
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
    }

    .slider-container {
      position: relative;
      width: 100%;
      box-sizing: border-box;
    overflow: hidden;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
  .slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
}

    .card {
     background: white;
  width: 100%;
  box-sizing: border-box;
    }

    .card-inner {
      background: #34a853;
      border-radius: 20px;
      color: white;
      padding: 2rem;
      text-align: center;
      position: relative;
    }

    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #34a853;
      border: none;
      color: white;
      font-size: 2rem;
      width: 40px;
      height: 40px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 2;
    }

    /* Left arrow placement */
    .nav.left {
      left: 0px; /* Move it outside of the slider */
    }

    /* Right arrow placement */
    .nav.right {
      right: 0px; /* Move it outside of the slider */
    }

    .dots {
      margin-top: 1rem;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
    }

    .dot.active {
      background-color: #34a853;
    }

    @media (min-width: 300px) {
      .card {
        flex: 0 0 100%;
        max-width: 100%;
      }
    
    @media (min-width: 600px) {
      .card {
        flex: 0 0 100%;
        max-width: 100%;
      }
      
       @media (min-width: 900px) {
      .card {
        flex: 0 0 100%;
        max-width: 100%;
      }
         
    }


/* Representative */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
}

.applycontainer {
            background-color: #f4f4f9;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
.applycontainer form {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
        }
.applycontainer label {
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
        }
        .applycontainer input[type="text"],
        .applycontainer input[type="email"],
        .applycontainer select {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }
        .applycontainer input[type="checkbox"] {
            margin-right: 10px;
        }
        .applycontainer button[type="submit"] {
            background-color: #007bff;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s;
        }
        .applycontainer button[type="submit"]:hover {
            background-color: #0056b3;
        }
       .applycontainer .form-group {
            margin-bottom: 20px;
        }
       .applycontainer .section-title {
            font-size: 18px;
            font-weight: bold;
            margin: 20px 0 10px;
            color: #333;
        }
       .applycontainer .time-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }
       .applycontainer .time-group select {
            width: auto;
            flex: 1;
        }
        @media (max-width: 600px) {
           .applycontainer form {
                padding: 20px;
            }
           .applycontainer .time-group {
                flex-direction: column;
                align-items: stretch;
            }
        }

  .admincontainer .country-box {
            color: #051c2c;
            background-color: #fff;
            margin-bottom: 1.25rem;
            display: flex;
            flex-direction: column;
            border-radius: 0.375rem;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
            border: 1px solid #ecebea;
            transition: all 0.2s ease-in-out;
      width: 1200px;
        }
    .admincontainer .country-header:hover {
    background-color: #eaf1ec; /* light blue background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer; /* optional, if it's clickable */
}

        .admincontainer .country-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem;
            font-size: 24px;
            font-weight: 500;
            cursor: pointer;
        }

        .admincontainer .rep-details {
            display: none;
            padding: 0 1.25rem 1rem 1.25rem;
            font-size: 12px;
            color: #333;
        }

        .admincontainer .rep-entry {
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
        }
    .admincontainer button  {
  background-color: white;
  border: none;
  cursor: pointer;
}
.admincontainer input {
    width: 50px;
  }
      
.indexcontainer .country-box {
            color: #051c2c;
            background-color: #fff;
            margin-bottom: 1.25rem;
            display: flex;
            flex-direction: column;
            border-radius: 0.375rem;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
            border: 1px solid #ecebea;
            transition: all 0.2s ease-in-out;
      width: 1200px;
        }
   .indexcontainer .country-header:hover {
    background-color: #eaf1ec; /* light blue background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer; /* optional, if it's clickable */
}

        .indexcontainer .country-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem;
            font-size: 24px;
            font-weight: 500;
            cursor: pointer;
        }

        .indexcontainer .rep-details {
            display: none;
            padding: 0 1.25rem 1rem 1.25rem;
            color: #333;
        }

        .indexcontainer .rep-entry {
        }
        
        table.trades {
    width: 100%;
    border-collapse: collapse;
  }
  table.trades th, table.trades td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
  }
  table.trades th {
    background: #f5f5f5;
  }
  .bold {
    font-weight: bold;
  }
  

