.contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 2px solid #ffffff; /* White border */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3), /* Shining shadow */
                0 0 10px rgba(255, 255, 255, 0.5); /* Outer glow */
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(0, 0, 0, 0.1); /* Slight background for contrast */
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.4),
                0 0 15px rgba(255, 255, 255, 0.6); /* Enhanced hover effect */
}

.contact-item i {
    margin-right: 0.5rem;
    color: #ffbd59; /* Orange icons */
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.services {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0066cc;
    font-size: 2rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-left: 5px solid #0066cc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item span {
    font-size: 2rem; /* Bigger icons */
    margin-right: 1rem;
    color: #0066cc;
}

.portfolio {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.portfolio h2 {
    margin-bottom: 1rem;
    color: #0066cc;
    font-size: 2rem;
}

.portfolio-content {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-content p {
    margin-bottom: 1rem;
}

.portfolio-content button {
    padding: 0.5rem 1rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.portfolio-content button:hover {
    background: #ff9900;
}

.portfolio button {
    padding: 0.5rem 1rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.portfolio button:hover {
    background: #ff9900;
}

footer {
    background: #0066cc;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

footer p {
    font-size: 0.9rem;
}