header{
    background:#fff !important;
}

.menu-sec nav > ul > li :hover {
    background: #4db7fe;
    color: #fff !important;
    border-radius: 25px;
}

.btn-primary {
    color: #fff;
    background-color: #4db7fe !important;
    border-color: #4db7fe !important;
}

.main-logo {
    width: 150px;
    max-width: 100%;
    /*padding: 10px 0;*/
}

.menu-sec nav > ul > li > a ,.account-btns > li a{
    color:#000;
    font-weight :600;

    padding: 5px 10px;
}

.account-btns > li a:hover{
    background-color: #4db7fe;
    color: #fff;
    
    border-radius: 25px;
}
.my-profiles-sec{
    margin:0 10px;
}
.my-profiles-sec img {
    width: 35px !important;
    border: 2px solid #37108f7d !important;
    padding: 2px;
}



/*Placement Index page*/

.top-bottom{
    padding:30px 0;
}

.explore-main-div{
        display: flex!important;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
   .explore-main-div .profile-card {
        width: 170px;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
        margin-bottom: 15px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Card Hover Effect */
   .explore-main-div .profile-card:hover {
        background-color: #f0f8ff;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    }

    /* Card Header */
   .explore-main-div .profile-card-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Profile Icon */
   .explore-main-div .profile-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    .profile-icon i{
        color:rgb(102, 102, 102);
    }

    /* Profile Title */
   .explore-main-div .profile-title {
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    /* Card Body */
   .explore-main-div .profile-card-body {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 14px;
    }

    /* Contact Info */
   .explore-main-div .contact-info {
        display: flex;
        align-items: center;
        gap: 5px;
    }

   .explore-main-div .contact-info a {
        color: #4db7fe;
        text-decoration: none;
        font-weight: bold;
    }

   .explore-main-div .contact-info a:hover {
        text-decoration: underline;
    }

    /* Icon in Contact Info */
   .explore-main-div .contact-info i {
        font-size: 14px;
    }
   



/*placement / userdashboard.php*/

/* Container for the counters */

.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 20px; /* Space between the boxes */
    padding: 20px;
}

/* Each counter box */
.count-box {
    background-color: #f8f9fa; /* Light background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    flex: 1;
    min-width: 200px; /* Ensures they don't get too small on smaller screens */
    transition: transform 0.3s ease; /* Hover effect */
}

.count-box i {
    color: #007bff; /* Primary color for icons */
    margin-bottom: 10px;
}

.count-box h4 {
    font-size: 2rem;
    margin: 10px 0;
    color: #333;
}

.count-box p {
    font-size: 1rem;
    color: #6c757d; /* Muted text */
}

/* Hover effect */
.count-box:hover {
    transform: translateY(-10px); /* Lifts the box slightly */
}

/* Responsive Design */
@media (max-width: 768px) {
    .counter-container {
        justify-content: center;
    }
}
