 /* Team Details Section */
 .team-details {
    padding: 50px 0;
}

.team-details .container {
    max-width: 1200px;
    margin: auto;
}

.details-left,
.details-right {
    padding: 20px;
}

.details-left {
    border-right: 2px solid #333;
}

.details-right .profile-image img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    height: auto;
    width: 60%;
}

.details-left .profile-info {
    text-align: left;
}

.details-left .profile-info .name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffd700;
    /* Luxurious Gold Accent */
}

.details-left .profile-info .position {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c0c0c0;
    /* Subtle Silver Accent */
    margin-bottom: 15px;
}

.details-left .profile-info .profile-summary {
    font-size: 1rem;
    line-height: 1.8;
    color: #aaa;
}

/* Right Section Description */
.details-right .profile-description {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

/* Hover and Effects */
.details-left .name:hover {
    color: #ffa500;
    /* Highlight on hover */
}

.details-right .profile-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .details-left {
        border: none;
        text-align: center;
    }

    .details-right .profile-image img {
        margin: auto;
    }

    .details-left,
    .details-right {
        padding: 10px;
    }
}

.profile-description {
    background-color: #1e1e1e;
    color: #e8e8e8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(106, 166, 124, 0.5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
}

.profile-description h2 {
    font-size: 1.8rem;
    color: #f1c40f;
    margin-bottom: 10px;
    font-weight: bold;
}

.profile-description p {
    margin: 0;
    text-align: justify;
}

.profile-description .highlight {
    color: #ffcc00;
    font-weight: bold;
}

/* Achievments */

 /* General Section Styles */
 .info-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e1e1e, #292929);
    color: #e8e8e8;
    text-align: center;
}

.info-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.info-box {
    background-color: #262626;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.info-box:hover {
    transform: scale(1.05);
    background-color: #1e1e1e;
}

.info-box .icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-section .info-grid {
        grid-template-columns: 1fr;
    }
}