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

::-moz-selection {
    color: #00abf0;
}

::selection {
    color: #00abf0;
}

.test::selection {
    color: #e8e8e8;
}

.test::-moz-selection {
    color: #e8e8e8;
}

body,
html {
    margin: 0;
    padding: 0;
    background: #131516;
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
}

.button-fill {
    background: rgba(0, 171, 240, 0.25);
}

button {
    background: transparent;
    border: 2px #00abf0 solid;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

button:hover {
    background: #00abf0;
    color: #fff;
}

p {
    font-size: 20px;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 28px;
    font-weight: 500;
    color: #00abf0;
    margin: 0;
    padding: 0;
}

.icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    color: #00abf0;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
}

.icon:hover {
    background: #00abf0;
    color: #fff;
}

.navbar_items p:hover {
    color: #00abf0;
    cursor: pointer;
}

.navbar_items .active-item {
    color: #00abf0;
}

@media only screen and (max-width: 450px) {
    .nav_hide {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .social_media {
        justify-content: center;
    }
}

.nav-title:hover {
    color: #00abf0;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
}

.card {
    transition: all 0.3s ease;
}

.time {
    font-size: 24px;
    font-weight: 600;
    color: #00abf0;
    margin-bottom: 0;
}

.company {
    font-size: 18px;
    font-weight: 500;
    color: rgb(163, 163, 163);
}

.timeline-box {
    margin-bottom: 20px;
}

.task {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
}



.certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.certificate {
    position: relative;
    /* Position relative for icon placement */
    width: 300px;
    background: #1E2125;
    /* Dark gray box */
    border: 1px solid #2A2D32;
    /* Subtle border */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.certificate:hover {
    transform: scale(1.05);
    background: #2D3138;
    /* Brighter hover effect */
}

.certificate img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-info {
    padding: 15px;
}

.certificate-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #EAEAEA;
    /* Light text for titles */
}

.certificate-issuer {
    font-size: 14px;
    color: #A8A8A8;
    /* Muted text for secondary info */
}

.certificate-date {
    font-size: 12px;
    color: #6D6D6D;
    /* Even more muted for tertiary info */
    margin-top: 10px;
}



/* Small icon button */
.certificate-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #4d4d4d;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(199, 198, 198);
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.certificate-button i {
    font-size: 14px;
    /* Icon size */
}