/* Professional Enhancement Styles */

/* Contact Section Improvements */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-item {
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-item h3 {
    color: #ea4335;
    font-size: 1.3em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5em;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-item p {
    margin: 0;
    font-size: 1.05em;
}

/* Skills Section Enhancement */
.skills-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ea4335;
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-category h4 {
    color: #333;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95em;
    position: relative;
    padding-left: 20px;
}

.skill-category li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #ea4335;
    font-weight: bold;
}

/* Project Enhancements */
.project-info p {
    line-height: 1.6;
    color: #333;
}

.project-info a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ea4335;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.project-info a:hover {
    background: #d63925;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.3);
}

/* Education Block Enhancements */
.education-block {
    border-left: 4px solid #4285f4;
    padding-left: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.education-block h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.education-block h4 {
    color: #4285f4;
    font-weight: 600;
    margin: 10px 0;
}

.education-block ul li {
    padding: 6px 0;
    color: #555;
    line-height: 1.6;
}

/* Experience Timeline Enhancement */
#experience-timeline > div {
    border-left: 3px solid #ea4335;
    padding: 20px 0 20px 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

#experience-timeline > div:before {
    content: "";
    position: absolute;
    left: -12px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #ea4335;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#experience-timeline > div:hover:before {
    background: #ea4335;
    transform: scale(1.3);
}

#experience-timeline h3 {
    color: #333;
    font-weight: 700;
    margin: 0 0 5px 0;
}

#experience-timeline h4 {
    color: #ea4335;
    font-weight: 600;
    margin: 5px 0 15px 0;
}

#experience-timeline p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* About Section Enhancement */
#about .col-md-8 p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Header and Navigation Enhancement */
header ul li a {
    transition: all 0.3s ease;
    font-weight: 500;
}

header ul li a:hover {
    color: #ea4335;
}

/* General Improvements */
h2.heading {
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

h2.heading:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ea4335;
    border-radius: 2px;
}

/* Responsive Contact Form */
.iframe-form {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.responsive-iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Enhancement */
footer a {
    transition: all 0.3s ease;
    color: #666;
}

footer a:hover {
    color: #ea4335;
    transform: scale(1.2);
}

footer .social ul li {
    margin: 0 10px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .skills-section {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .skill-category h4 {
        font-size: 1.1em;
    }
}
