body {
    font-family: 'Poppins', sans-serif;
}

.main-content {
    display: flex;
    justify-content: center; /* Center the main content */
}

.categories {
    display: none; /* Hide the categories section */
}

.content {
    flex: 1;
    max-width: 1200px; /* Adjust max-width if necessary */
}

.profile-container {
    display: flex;
    flex-wrap: wrap; /* Allow profiles to wrap to the next line */
    justify-content: space-around; /* Space profiles evenly */
}

.profile {
    text-align: center;
    margin: 0 10px 20px; /* Adjust margins as needed */
    width: calc(25% - 20px); /* 4 profiles in a row, minus margins */
}

.profile img {
    width: 100%; /* Make images fill the profile container */
    height: auto;
    border-radius: 50%;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 12px;
}

.profile-qualification {
    font-size: 14px;
    color: #666;
}

.more-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.more-link:hover {
    color: #0056b3;
}




/* General Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 100px 20px;
}

.navbar-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-nav li {
    position: relative;
}

.navbar-nav a {
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
    display: block;
}

.navbar-nav a:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Dropdown Menu Styles */
.dropdown ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 10px 0;
    list-style: none;
    z-index: 99;
}

.dropdown ul li {
    min-width: 200px;
}

.dropdown ul a {
    padding: 10px 20px;
}

.dropdown ul a:hover {
    background-color: #f8f9fa;
    color: #47b2e4;
}

.dropdown-active ul {
    display: block;
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav li {
        width: 100%;
    }

    .dropdown ul {
        position: static;
        box-shadow: none;
    }
}

/* Desktop Navbar Styles */
@media (min-width: 769px) {
    .navbar-nav {
        flex-direction: row;
    }

    .dropdown:hover ul {
        display: block;
    }

    .dropdown ul {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .dropdown ul a {
        white-space: nowrap;
    }
}

.content-item {
    margin-bottom: 30px;
  }
  
  .profile {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .profile img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .profile-name {
    font-size: 18px;
    font-weight: bold;
  }
  
  .profile-qualification,
  .profile-domain,
  .profile-experience {
    font-size: 14px;
    margin-top: 5px;
  }
  
  .more-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .more-link:hover {
    background-color: #0056b3;
  }
  