.sec3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.sec-3-1 {
    text-align: center;
    margin-bottom: 40px;
}

.experience-container {
   display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; 
    width: 100%;
    max-width: 1100px; /* Reduced slightly to encourage the 2x2 grid look */
    margin: 0 auto;
}

.exp-box {
   border: 2px solid black;
    border-radius: 30px;
    padding: 30px;
    flex: 1 1 450px; /* Allows boxes to grow but stay around 450px */
    min-width: 300px; 
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-box:hover {
    transform: translateY(-5px);
    border-color: darkorange;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.exp-box h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: darkorange; /* This changes the heading color */
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 25px;
    text-align: left;
}

.skill-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    width: 25px;
    margin-top: 5px;
}

.skill-item h3 {
    font-size: 18px;
    margin: 0;
}

.skill-item p {
    font-size: 14px;
    color: grey;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: 1fr; /* Single column on very small phones */
        padding-left: 20px;
    }
    
    .exp-box {
        padding: 20px;
    }
}