@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

body {
    font-family: "Quicksand", Arial, sans-serif;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.main-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Section Styles */
.left-section {
    width: 40%;
    padding: 40px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    background: #f8f9fa;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.left-section::-webkit-scrollbar {
    display: none;
}

/* Right Section Styles */
.right-section {
    width: 60%;
    padding: 4px 20px;
    margin-left: 40%;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

  .intro-section {
    margin-bottom: 40px;
  }
  
  .intro-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }
  
  .intro-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #666;
  }
  
  .cv-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background-color: #2c98f0;
    border-color: #2c98f0;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #2280d0;
    border-color: #2280d0;
  }
  
  .about-section {
    margin-top: 40px;
  }
  
  .about-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .profile-image img {
    max-width: 200px;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .skill-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  
  .skill-item h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #333;
  }
  
  .certifications h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cert-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
  
.cert-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.cert-item h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}
  
  .cert-item p {
    color: #666;
    font-size: 14px;
  }
  .cert-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.credential-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-top: auto;
    white-space: nowrap;
}

.credential-btn i {
    font-size: 14px;
    color: #2c98f0;
}

.credential-btn:hover {
    background: white;
    border-color: #2c98f0;
    color: #2c98f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 152, 240, 0.15);
}
@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credential-btn {
        width: 100%;
        justify-content: center;
    }
}
  
  /* Custom Scrollbar Styles */
  .right-section::-webkit-scrollbar {
    width: 8px;
  }
  
  .right-section::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .right-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }
  
  .right-section::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    body {
        overflow-y: auto;
    }
  
    .main-container {
        flex-direction: column;
        height: auto;
    }
  
    .left-section {
        position: static;
        max-width: 100%;
        height: auto;
    }
  
    .right-section {
        margin-left: 0;
        height: auto;
    }
  
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  
    .cert-grid {
        grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
  
    .cv-buttons {
        flex-direction: column;
    }
  
    .cv-buttons .btn {
        width: 100%;
        text-align: center;
    }
  
    .left-section,
    .right-section {
        padding: 20px;
    }
  }
  
  .content-section {
    margin-bottom: 60px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  }
  
  .content-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
  }
  
  /* Experience Timeline */
  .experience-timeline {
    position: relative;
    padding-left: 20px;
  }
  
  .experience-item {
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c98f0;
  }
  
  .experience-item h3 {
    color: #2c98f0;
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .experience-item h4 {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .experience-item .date {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .experience-item ul {
    padding-left: 20px;
  }
  
  .experience-item ul li {
    margin-bottom: 8px;
    color: #666;
  }
  
  /* Projects Grid */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .project-card .card-content {
    padding: 20px;
  }
  
  /* Portfolio Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover img {
    transform: scale(1.05);
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #2c98f0;
    color: white;
  }


  /* Navigation Styles */
  .sidebar-nav {
    margin: 40px 0;
    position: sticky;
    top: 20px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-bottom: 5px;
    position: relative;
}

.nav-link:hover {
    color: #2c98f0;
    background: rgba(44, 152, 240, 0.05);
    border-left-color: #2c98f0;
    padding-left: 20px;
}

.nav-link.active {
    color: #2c98f0;
    background: rgba(44, 152, 240, 0.1);
    border-left-color: #2c98f0;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .sidebar-nav {
        margin: 20px 0;
        position: relative;
        top: 0;
    }
}
/* About Section Styles */
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* Rest of your existing CSS remains the same */

/* Update the intro section spacing */
.intro-section {
    margin-bottom: 60px;
}

.intro-section h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.intro-section h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #666;
}

/* Content Section Updates */
.content-section {
    margin-bottom: 80px;
}

.content-section:first-child {
    margin-top: 20px;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
    }

    .left-section {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .right-section {
        width: 100%;
        margin-left: 0;
        padding: 20px;
    }

    .about-content {
        flex-direction: column;
    }

    .profile-image img {
        width: 150px;
        height: 150px;
    }

    .sidebar-nav {
        margin: 30px 0;
    }
}

/* Project Section Styles */
.project-category {
    margin-bottom: 60px;
}

.project-category h3 {
    font-size: 20px;
    color: #2c98f0;
    margin-bottom: 30px;
    font-weight: 500;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}


.project-content h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-content .tech-stack {
    margin-bottom: 15px;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tech-tag {
    background: #f0f7ff;
    color: #2c98f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-card {
        grid-template-columns: 1fr;
    }

    .project-image {
        width: 100%;
        height: 200px;
    }
}

/* Project see more button */
.project-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #2c98f0;
    border-radius: 6px;
    color: #2c98f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.project-see-more:hover {
    background: #2c98f0;
    color: white;
    transform: translateX(5px);
}

.project-see-more i {
    transition: transform 0.3s ease;
}

.project-see-more:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-see-more {
        width: 100%;
        justify-content: center;
    }
}

/* Education Section Styles */
.education-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}
.education-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.education-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
}

.education-logo img {
    max-width: 100%;
    height: auto;
}

.education-meta {
    flex-grow: 1;
}

.education-meta h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.education-period {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.education-period i {
    color: #2c98f0;
    font-size: 14px;
}

.education-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.degree-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.degree, .gpa {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.degree i, .gpa i {
    color: #2c98f0;
}

.education-focus {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.focus-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
}

.focus-label {
    color: #666;
    min-width: 80px;
    font-weight: 500;
}

.focus-value {
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    .education-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .education-logo {
        margin: 0 auto;
    }
    
    .degree-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .education-card {
        padding: 20px;
    }
}

.education-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-image img {
    max-width: 100%;
    height: auto;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.education-content h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.education-period {
    color: #666;
    font-size: 14px;
}

.education-degree {
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.education-gpa {
    color: #2c98f0;
    font-size: 20px;
    font-weight: 600;
}

.education-details ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.education-details li {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.education-details li:before {
    content: "•";
    color: #2c98f0;
    position: absolute;
    left: 0;
}

/* Portfolio Platforms Section Styles */
.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.platform-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-image {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.platform-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-content h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.platform-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .education-card,
    .platform-card {
        grid-template-columns: 1fr;
    }

    .education-image,
    .platform-image {
        width: 100%;
        height: auto;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Learning Section Styles */
.learning-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.learning-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    padding: 20px 0;
    transition: transform 0.3s ease;
}

.learning-card:hover {
    transform: translateY(-5px);
}

.learning-image {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}

.learning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.learning-content {
    display: flex;
    flex-direction: column;
}

.learning-content h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.learning-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.completion-date {
    color: #2c98f0;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Update tech stack styles for learning cards */
.learning-card .tech-stack {
    margin-top: auto;
}

.learning-card .tech-tag {
    background: #f0f7ff;
    color: #2c98f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .learning-card {
        grid-template-columns: 1fr;
    }

    .learning-image {
        width: 100%;
        height: 200px;
    }
}

/* Experience Section Styles */
.experience-timeline {
    display: flex;
    flex-direction: column;
    /* gap: 48px; */
}

.experience-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.experience-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
}

.company-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.experience-meta {
    flex: 1;
}

/* Update responsive design */
@media (max-width: 768px) {
    .experience-header {
        gap: 15px;
    }
    
    .company-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

.experience-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.experience-role {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.experience-company {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin: 4px 0;
}

.experience-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    min-width: 140px;
    text-align: right;
    padding-top: 4px;
}

.experience-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.experience-description ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.experience-description li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.experience-description li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #2c98f0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-tag {
    background: #f0f7ff;
    color: #2c98f0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        gap: 8px;
    }

    .experience-date {
        text-align: left;
        padding-top: 0;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-link:hover {
    background: #2c98f0;
    color: white;
    transform: translateY(-3px);
}
.social-link.custom-icon {
    padding: 8px;
}
.social-link i {
    font-size: 18px;
}
.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.social-link.custom-icon:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.cv-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.cv-btn:hover {
    background: #2c98f0;
    color: white;
    border-color: #2c98f0;
    transform: translateY(-2px);
}

.cv-btn i {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cv-buttons {
        flex-direction: column;
    }
    
    .cv-btn {
        width: 100%;
        justify-content: center;
    }
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #2c98f0;
    border-radius: 6px;
    color: #2c98f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.see-more-btn:hover {
    background: #2c98f0;
    color: white;
    transform: translateX(5px);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(3px);
}

.platform-content .tech-stack {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .see-more-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Section Footer with See More Button */
.section-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.section-see-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #2c98f0;
    border-radius: 8px;
    color: #2c98f0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.section-see-more:hover {
    background: #2c98f0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(44, 152, 240, 0.2);
}

.section-see-more i {
    transition: transform 0.3s ease;
}

.section-see-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-see-more {
        width: 100%;
        justify-content: center;
    }
}

/* Achievements Section Styles */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.achievement-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.achievement-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.achievement-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.achievement-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.achievement-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.achievement-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.achievement-content ul li:before {
    content: "•";
    color: #2c98f0;
    position: absolute;
    left: 0;
}

.achievement-card.featured {
    border: 2px solid #2c98f0;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    color: #2c98f0;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: auto;
}

.achievement-badge i {
    color: #2c98f0;
}

.section-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #2c98f0;
    border-radius: 8px;
    color: #2c98f0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-expand-btn:hover {
    background: #2c98f0;
    color: white;
}

.section-expand-btn i {
    transition: transform 0.3s ease;
}

.section-expand-btn:hover i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .section-expand-btn {
        width: 100%;
        justify-content: center;
    }
    
    .achievement-card img {
        height: 180px;
    }
}


/* Skills Section Container */
#skills.content-section {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

#skills h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Skills Category Styling */
.skills-category {
    margin-bottom: 40px;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category h3 {
    color: #2c98f0;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Skills Logo Grid */
.skills-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

/* Individual Skill Logo Item */
.skill-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
}

.skill-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 152, 240, 0.15);
    border-color: #2c98f0;
}

.skill-logo-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.skill-logo-item:hover img {
    transform: scale(1.1);
}

.skill-logo-item span {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* Machine Learning & AI Section */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 5px;
}

.tech-tag {
    background: #f0f7ff;
    color: #2c98f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #2c98f0;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .skills-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .skills-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #skills.content-section {
        padding: 20px;
    }

    .skills-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }

    .skill-logo-item {
        padding: 15px 10px;
    }

    .skill-logo-item img {
        width: 40px;
        height: 40px;
    }

    .skill-logo-item span {
        font-size: 12px;
    }

    .tech-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .skills-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}