:root {
    --primary-color:	#DC143C;
    --secondary-color: #fac837;
  }
  
  body {
    margin: 0;
    padding: 0;
  }
  
  
    
    /* Main container */
.content-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 45px;
  gap: 20px; 
}

.text-content {
  max-width: 80%;
  font-family: Familjen Grotesk, sans-serif;
}

/* Image container */
.image-container {
  position: relative;
}

/* Flag container */
.flag-container {
  position: absolute;
  top: 100px;
  left: -15px;
  z-index: 1;
}

/* Background image */
.bg-image {
  width: 250px;
  height: 250px;
}

/* Headings */
h1 {
  font-size: 32px;
  font-weight: bold;
  margin-top: -40px;
}

/* Paragraphs */
p {
  margin-left: 0;
}

/* Responsive design */
@media screen and (max-width: 1024px) {
  .content-container {
    flex-direction: column; 
    align-items: center; 
    margin: 20px; 
    
  }

  .text-content {
    max-width: 100%; 
    text-align: center; 
  }

  h1 {
    font-size: 28px; 
  }

  p {
    font-size: 16px; 
  }

  .bg-image {
    width: 100%; /* Ensure the image is responsive */
    height: auto;
   
  }

  .flag-container {
    top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .content-container {
    flex-direction: column-reverse; 
    align-items: center; 
    gap: 20px;
  }

  .image-container {
    width: 90%;
  }

  .bg-image {
    width: 97%; 
    max-height: 270px; 
    height: auto;
    object-fit: cover; 
  }

  .text-content {
    max-width: 100%; 
    text-align: center; 
  }

  h1 {
    font-size: 24px; 
  }

  p {
    font-size: 14px;
  }

  .flag-container {
    top: 70px;
    left: -10px;
  }
}

@media screen and (max-width: 480px) {
  .content-container {
    margin: 10px; 
    flex-direction: column-reverse; 
  }
  h1 {
    font-size: 20px; 
    margin-top: -20px; 
  }

  p {
    font-size: 12px; 
  }

  .bg-image {
    width: 97%;
    max-height: 220px; 
    height: auto;
    object-fit: cover; 
  }

  .flag-container {
    top: 60px;
    left: 0px;
  }
  
}
    
  .start {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin: 0 45px; 
    padding: 70px;
    background: #e9d1d6;
    color: rgba(0, 0, 0, 0.943);
  }
  
  .text-content {
    display: flex;
    flex-direction: column; 
    text-align: center; 
  }
  
  .sub {
    margin: 0;
    font-size: 32px;
  }
  
  .risk {
    margin: 10px 0 0 0; 
  }
  
  button {
    padding: 10px 20px;
    background-color: var(--primary-color); 
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .start {
      flex-direction: row; 
      justify-content: space-between; 
      margin-left: 35px;
      margin-right: 35px;
    }
    
    .text-content {
      text-align: left; 
      margin-top: 10px;
    }
  
    .sub {
      font-size: 24px; 
    }
  
    button {
      font-size: 18px;
    
    }
     
  .risk {
    margin: 10px 0 0 0; 
  }
  }

  
  
  @media (max-width: 767px) {
    .start {
      padding: 30px;
      margin: 20px; 
     
    }
  
    .text-content {
   
      margin-top: 5px;
    }
  
    .sub {
      font-size: 24px; 
    }
  
    button {
      padding: 8px 16px; 
      font-size: 14px; 
      margin-top: 14px;
    }
  }
  
          .featured h1, .featured p {
        display: inline-block; 
        margin-top: -45px; 
      }
      
.link {
    margin-left: 45px;
    
  }  


  @media (max-width: 568px) {
    .sub {
      font-size: 22px;
    }
  }
  @media (max-width: 767px) {
    .link {
      margin-left: 20px;
      
    }
  }

 
  #company-list {
    width: 95%;
    background: #e6d1d5;
    padding: 30px;
    margin: 50px 45px;
  }
  
  .featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: rgba(0, 0, 0, 0.943);
    text-align: center;
    
  }

  .company-desc{
    width: 20rem;
    text-overflow: ellipsis;
  }
  
  /* Company card styling */
  .company-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border: 1px solid #ccc;
    background: white;
    border-radius: 8px;
    padding: 14px;
    flex-wrap: wrap; 
    width: 100%;
  }
  
  
  .company-card:hover {
    box-shadow: 0 2px 4px rgba(12, 4, 6, 0.1);
  }
  .company-logo {
    width: 100px;
    height: 100px;
  }

  .inquire-btn {
    color: black;
  }
  
  .inquire-btn:hover {
    color: #0d6efd; 
    cursor: pointer;
  }

  .company-actions a.visit-btn {
    padding: 5px;
    display: inline-block;
  }
  
  .company-actions a.visit-btn svg {
    fill: #5369d7; /* Icon color */
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
  }
  
  .company-actions a.visit-btn:hover svg {
    fill: #4357c5; /* Change color on hover */
  }
  
  
  
  .company-info {
    
    margin-left: 10px;
    display: flex;
    width: 40%;
    gap: 20px;
  }
  
  .company-actions {
    display: flex;
    gap: 10px;
  }
  
  .profile-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    margin-right: 20px;
    margin-top: -10px;
  }

  .profile-btn:hover {
    background-color: black; 
    cursor: pointer;
    color: white;
  }
  
  /* Responsive design - Media Queries */
  @media screen and (max-width: 768px) {
    .company-card {
      flex-direction: column; 
      text-align: center; 
    }
  
    .company-info {
      margin-right: 70px; 
      margin-top: 15px; 
  
     
     
    
    }
  
    .company-desc {
      width: 100%; 
      text-overflow: ellipsis; 
    }
  
    .company-actions {
      justify-content: center; 
      margin-top: 10px; 
    }
  }
  
  @media screen and (max-width: 480px) {
    #company-list {
      margin: 20px;
      padding: 0; 
    }
  
    .company-card {
      padding: 15px; 
    }
  
    .profile-btn {
      padding: 8px 15px; 
      margin-right: 15px; 
    }
  
    .company-desc {
      width: 100%; 
      text-overflow: ellipsis; 
    }
    .company-info {
      margin-right: 70px; 
      margin-top: 15px; 
    }
  }

 

  
  .header-bg {
    background: url("../images/ff4d48d.webp");
    background-size: contain;
    background-repeat: no-repeat;
    height: 550px;
  }
  
  .btnn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0;
    padding: 12px 40px;
    border: none;
    outline: none;
  }
  

  @media screen and (max-width: 568px) {
    /* .head-desc span {
      color: var(--primary-color);
      font-size: 1.25rem;
    } */

.head-desc {
  font-size: 1.25rem;
}
  }
/* .btnn-b{

  color: black;
 
  outline: none;
} */

  .nav-link {
    color: black !important;
  }
  
  .head-desc span {
    color: var(--primary-color);
  }
  
  .search-box {
    width: max-content;
    margin: 0 auto;
  }
  
  .search {
    border: none;
    outline: none;
    padding: 5px;
  }
  
  .search::placeholder {
    color: black;
  }
  
  .border-r {
    border-right: 1px solid rgb(177, 177, 177);
    height: 100%;
  }
  
  .clients-img > img {
    filter: grayscale(1);
  }
  
  .clients-img > img:hover {
    filter: grayscale(0);
  }
  
  .primary-color {
    color: var(--primary-color) !important;
  }
  
  .secondary-color {
    color: var(--secondary-color) !important;
  }
  
  .award-sec {
    width: 100%;
    /* height: 300px; */
    position: relative;
  }
  
  .award-sec img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0;
    object-position: 50% 0;
    width: 100%;
  }
  
  .award-img {
    background: linear-gradient(0deg, #000, #000);
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
  }
  
  .award-img > picture {
    font-size: 0;
    height: 100%;
    line-height: 1em;
    opacity: 0.5;
    overflow: hidden;
    width: 100%;
  }
  
  .awardtext h1 {
    font-size: 60px;
    line-height: 55px;
  }
  
  .awardtext h1 span {
    color: var(--secondary-color);
  }
  
  .award-content {
    padding: 80px 0;
  }
  
  .award-link {
    margin-top: 30px;
    background: rgba(255, 205, 79, 0.1);
    border: 1px solid #ffcd4f;
    display: inline-block;
    font-size: 24px;
    padding: 7px 20px 9px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
  }
  
  .submit-prjt-bg {
    background: linear-gradient(180deg, #d0dfff, #e3f0fe);
    padding: 100px 0;
  }
  
  .h-70 {
    height: 70px;
  }
  
  .find-y {
    background-color: #ffedf3;
    padding: 40px;
    margin-top: 50px;
    font-size: 18px;
   
    
  }
  
  
  .row {
  /* gap: 85px; */
  }
 
  
  
  .snc-list {
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .snc-list li {
    list-style-type: none;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 0;
    white-space: nowrap;
  }
  
  .snc-list li a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
  }
  
  .snc-list li:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color); 
   width: max-content;
  }
  
  
  .btnn-b {
    color: black;
    outline: none;
    cursor: pointer;
    margin-top: 60px;
  }
  
  
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }
  
    .col-3 {
      width: 100%;
      text-align: center; 
    }
  
    .find-y {
      padding: 50px;
    }
  }

  
  
  .newcommer-bg {
    background: var(--primary-color) url("../images/newcommer.webp");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 40px 20px;
    /* height: 600px; */
  }
  
  .view-profile-btn {
    border: 2px solid black;
    background: #fff;
    padding: 10px 20px;
  }
  
  .view-profile-btn:hover {
    background-color: #000;
    color: white;
  }
  
  .inquire-link {
    color: black;
  }
  
  .inquire-link:hover {
    color: #0d6efd;
  }
  
  .newcommer-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 30px 10px;
    gap: 20px;
  }
  
  .blog-bg {
    background-color: #fff4d7;
    margin: 30px 0;
    padding: 50px 30px;
    color: black;
  }
  
  .rma-btn {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    color: white;
  }
  
  .blog-image {
    width: 100%;
    height: 100%;
  }
  
  .wt-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 50px;
  }
  
  .wt-statistics {
    font-size: 80px;
    font-weight: bold;
  }
  
  .cps-bg {
    background: var(--primary-color);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover; 
    padding: 0 20px;
    margin: 40px 20px; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
  }
  
  .cps-content {
    width: 100%; 
    max-width: 600px; 
    color: white;
    text-align: center;
    margin-bottom: 20px; 
  }
  
  .vac-btn {
    background: none;
    border: 2px solid white;
    padding: 12px 40px;
    color: white;
    font-size: 16px; 
    cursor: pointer;
  }
  
  .vac-btn:hover {
    color: var(--primary-color);
    background: white;
  }
  
  .cps-image {
    width: 100%; 
    display: flex;
    justify-content: center;
  }
  
  .cps-image img {
    width: 100%; 
    max-width: 400px; 
    height: auto;
    border-radius: 8px; 
  }
  
  /* Media Queries for responsiveness */
  @media (min-width: 768px) {
    .cps-bg {
      flex-direction: row; 
      padding: 0 40px; 
      margin: 40px 80px; 
    }
  
    .cps-content {
      width: 60%; 
      text-align: left; 
    }
  
    .cps-image {
      width: 40%;
    }
  
    .cps-image img {
      max-width: 100%;
      height: auto; 
    }
  }
  
  @media (max-width: 480px) {
    .vac-btn {
      padding: 8px 20px; 
      font-size: 14px; 
    }
  
    .cps-bg {
      margin: 20px 10px; 
      padding: 0 20px; 
    }
  
    .cps-content h1 {
      font-size: 24px; 
      margin-top: 45px;
    }
  
    .cps-content p {
      font-size: 14px; 
    }
  
    .cps-image img {
      max-width: 100%; 
      height: auto;
    }
  }
  
  /* footer */

  .ft-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
}

.ft-ul-list {
    padding: 0;
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .ft-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) {
    .ft-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* @media (max-width: 480px) {
    .ft-grid {
        grid-template-columns: 1fr; 
    }
} */

  
  ul{
    padding: 0;
  }
  
  
  .bg-container {
  background-color: #e6d1d5;
  padding: 20px;
  color: black;
  margin-top: 40px;
}

.dropdown-container {
  position: absolute; 
  background-color: #fff4e0; 
  border: 1px solid #ffd700; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none; 
  z-index: 20; 
  margin-top: 355px;
  width: 95%;

}

.dropdown-item {
  padding: 10px 15px; 
  cursor: pointer; 
}

.dropdown-item:hover {
  background-color: rgba(0, 102, 255, 0.1); 
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fff4e0;
  padding: 15px 20px;
  border: 1px solid #ffd700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 40px 45px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.content {
  color: black;
  margin-left: 45px;
  margin-right: 45px;
  margin-top: 55px;
  width: 95%;
}

/* .head-desc {
  font-size: 1.5rem;
  
} */

.top-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: -60px;
}



.filter-btn {
  padding: 10px 25px;
  background-color: #0066ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-btn::before {
  content: '≡';
  margin-right: 10px;
  font-size: 16px;
}

/* Company Cards */
.company-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 45px;
  
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card img {
  max-width: 100px;
  border-radius: 100%;
  margin-bottom: 15px;
}

.services{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}



.services span {
  background-color: #f0f0f0;
  margin: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.actions {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
}

.view1 {
  padding: 11px 22px;
  border: 2px solid #000;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
}

/* Project Section */
.project {
  margin: 60px 45px;
  padding: 90px;
  background: #e0adb8;
  color: rgba(0, 0, 0, 0.943);
  text-align: center;
}

.img-class {
  max-width: 100%; 
  height: auto; 
}


/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
  .company-cards {
    grid-template-columns: repeat(2, 1fr); 
    margin: 20px 10px; 
  }
}

@media screen and (max-width: 768px) {
  .filter-bar {
    flex-direction: column; 
    align-items: flex-start;
  }

  .dropdown1:not(.sort-by) {
    display: none;
  }

  .filter-btn {
    width: 30%; 
    margin-top: 10px;
   align-items: center; 
  }

  .content {
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    margin-top: 45px;
  }

  .top-right {
    justify-content: center; 
    margin-top: 20px; 
  }

  .company-cards {
    grid-template-columns: 1fr; 
    margin: 10px 5px; /* Reduce margin for small screens */
  }

  .project {
    padding: 60px;
  }
}

@media screen and (max-width: 576px) {
  .filter-bar {
    padding: 5px; 
    margin: 5px; 
   flex-direction: row; 
   align-items: center;
  }

  .filter-btn {
    font-size: 12px; 
    margin: 0;
  }

  .content {
    margin-left: 5px;
    margin-right: 5px;
  }

  .company-cards {
    grid-template-columns: 1fr; 
    margin: 5px; /* Minimal margin for extra small screens */
  }

  .project {
    padding: 40px;
    margin: 20px 0;
    margin-left: 5px;
    margin-right: 5px;
  }

  .top-right {
    margin-top: 10px;
  }

  .content {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px; 
  }
  .actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    align-items: center;
  }

  .bg-filter{
    padding: 50px 20px !important;
  }
  
  .view1 {
   
   
    margin-right:24px ;
  }
}




.bg-filter {
  text-align: center;
  padding: 50px;
  background-color: #ffedf3;
  margin-top: 40px;
}

.company-cards-img {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid-item {
  position: relative; 
  overflow: hidden; 
  text-align: center;
}

.grid-item a {
  text-decoration: none;
  color: inherit; 
  display: block; 
  cursor: pointer; 
}


.grid-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}


.grid-item:hover img {
  transform: scale(1.05); 
  cursor: pointer; 
  
}

.city-name {
  font-size: 18px;
  color: #333;
  padding: 10px 0;
  text-align: center; 
}


.initial {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  font-size: 68px;
  font-weight: bold;
  color: white; 
 
  padding: 10px;
  border-radius: 5px; 
}

.btnn-c {
  color: black;
  outline: none;
  cursor: pointer;
  margin-top: 60px;
}

/* Ensure the grid is responsive */
@media (max-width: 768px) {
  .company-cards-img {
    grid-template-columns: repeat(3, 1fr); /* Always show 3 images on small screens */
    
  }
  .initial {
    position: absolute; 
    top: 30%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 32px;
 }
 .city-name {
  font-size: 12px;
 
}
}


.ict {
  margin-top: 80px;
  padding: 20px;
  margin-left: 65px;
  margin-right: 65px;
  background-color: #ffffff;
  width: 90%;
}

/* Adjust container margins for smaller screens */
@media (max-width: 1024px) {
  .ict {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 768px) {
  .ict {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Font size adjustments for different screen sizes */
.ict h2 {
  color: black;
  font-size: 28px;
}

@media (max-width: 1024px) {
  .ict h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .ict h2 {
    font-size: 20px;
  }
}

.ict p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Responsive font size for paragraph text */
@media (max-width: 1024px) {
  .ict p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ict p {
    font-size: 12px;
  }
}

/* Section styles */
.section {
  margin-bottom: 20px;
}

/* Responsive section heading font size */
.section h3 {
  font-size: 28px;
  color: rgba(0, 0, 0, 0.862);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .section h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .section h3 {
    font-size: 20px;
  }
}

/* Responsive section paragraph font size */
.section p {
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .section p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section p {
    font-size: 12px;
  }
}



