/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #0A165E;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
    border-radius: 2px;
}

/* Project Overview Styles */
.project-overview {
    padding: 10px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.overview-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.overview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2B4DFF;
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.overview-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0A165E;
}

.overview-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #4a5568;
}

.detail {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
}

/* Before & After Styles */
.before-after {
    padding-top: 70px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    background: #ffffff;
}

.comparison-section {
    margin-bottom: 80px;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #0A165E;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.comparison-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.comparison-header {
    padding: 20px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-badge {
    background: #c53030;
    color: #000000;
    height: 100%;
    line-height: normal;
}

.after-badge {
    
    background: #2f855a;
    color: #ffffff;
    height: 100%;
    line-height: normal;
}

.image-container {
    padding: 20px;
    text-align: center;
    background: #ffffff;
}

.profile-image {
    display: flex;
    margin-left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.linkedin-screenshot {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.linkedin-banner {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.comparison-details {
    padding: 30px;
}

.comparison-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0A165E;
}

.comparison-details ul {
    list-style: none;
}

.comparison-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    font-size: 1.40rem;
}

.comparison-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.before .comparison-details li::before {
    content: '•';
    color: #e53e3e;
}

/* Key Improvements Styles */
.key-improvements {
    padding: 10px 0;
    background: white;
}

.improvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.improvement-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.improvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2B4DFF;
    background: white;
}

.improvement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.improvement-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0A165E;
}

.improvement-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Results & Impact Styles */
.results-impact {
    padding-top: 70px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    background: #ffffff;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B4DFF;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0A165E;
}

.impact-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Styles */
.services {
    padding-top: 70px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    background: white;
}

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

.service-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2B4DFF;
    background: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0A165E;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Styles */
.cta {
    padding: 10px 0;
    background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #2B4DFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #ffffff;
}

/* Footer Styles */
.footer {
    padding: 40px 0;
    background: #0A165E;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #2B4DFF;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
}


        /* New styles for additional sections */
        .about-summary-section, .skills-section, .experience-section, .testimonial-section, .recruiter-section {
            
            padding-top: 70px;
            padding-left: 0px;
            padding-right: 0px;
            padding-bottom: 0px;
        }
        
        .about-summary-section {
            background: #ffffff;
        }
        
        .skills-comparison, .about-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        
        .comparison-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .comparison-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
            justify-content: space-between;
        }
        
        .comparison-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0A165E;
        }
        
        .badge {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .badge.before {
            background: #fed7d7;
            color: #c53030;
        }
        
        .badge.after {
            background: #c6f6d5;
            color: #2f855a;
        }
        
        .comparison-content {
            min-height: 230px;
        }
        
        .comparison-content img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .comparison-list {
            list-style: none;
        }
        
        .comparison-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #4a5568;
        }
        
        .comparison-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4a5568;
            font-weight: bold;
        }
        
        .comparison-list li.positive::before {
            content: '✓';
            color: #48bb78;
        }
        
        .comparison-list li.negative::before {
            content: '✗';
            color: #e53e3e;
        }
        
        .experience-accordion {
            margin-top: 40px;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .accordion-header {
            padding: 20px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #0A165E;
            border-left: 4px solid #2B4DFF;
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #ffffff;
        }
        
        .accordion-content.active {
            padding: 20px;
            max-height: 1000px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 15px;    
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            font-size: 100px;
            position: absolute;
            top: 20px;
            left: 30px;
            color: #e2e8f0;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #0A165E;
        }
        
        .testimonial-role {
            color: #718096;
            font-size: 0.9rem;
        }
        
        .recruiter-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }
        
        @media (max-width: 768px) {
            .skills-comparison, .about-comparison {
                grid-template-columns: 1fr;
            }
        }


    .screenshot-container {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .screenshot-btn {
        background: linear-gradient(135deg, #0A165E 0%, #2B4DFF 100%);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Sora', sans-serif;
        font-size: 14px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }
    
    .screenshot-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(43, 77, 255, 0.4);
    }
    
    .screenshot-placeholder {
        min-height: 200px;
        border: 2px dashed #e2e8f0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        transition: all 0.3s ease;
    }
    
    .screenshot-placeholder.active {
        border-color: #2B4DFF;
        background: #ffffff;
    }
    
    .screenshot-img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    /* Modal styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.9);
    }
    
    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        animation-name: zoom;
        animation-duration: 0.3s;
    }
    
    @keyframes zoom {
        from {transform: scale(0.9)}
        to {transform: scale(1)}
    }
    
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }
    
    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
    }
    
    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
    }


      /* Add this CSS to ensure images display properly */
    .banner-area.area-profile-pic,
    .banner-area.area-second-picture-banner {
        overflow: visible;
        background: transparent;
        border: none;
    }
    
    .actual-profile-pic {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    /* Force the images to display on top of other elements */
    .banner-area {
        z-index: 5;
    }
    
    .banner-image {
        z-index: 1;
    }


        /* Add these styles to your existing CSS */
    .banner-area.area-profile-pic,
    .banner-area.area-second-picture-banner {
        border-radius: 50%;
        overflow: hidden;
        border: none;
        background: transparent;
    }
    
    .profile-pic-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 6px solid white;
        box-shadow: 0 px 10px rgba(0, 0, 0, 0.2);
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Adjust the area size if needed */
    .area-profile-pic {
        width: 23%;
        height: 80%;
        bottom: -25%;
        left: 5%;
    }
    
    .area-second-picture-banner {
        width: 19%;
        height: 68%;
        bottom: 25%;
        left: 32.5%;
    }
    
    /* Remove the dashed border when showing actual images */
    .banner-area.area-profile-pic,
    .banner-area.area-second-picture-banner {

        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        border: none;

    }
    .banner-area.area-profile-pic.active,
    .banner-area.area-second-picture-banner.active {
    opacity: 1 !important;
}


   /* LinkedIn Optimization Section Styles */
.linkedin-optimization {
    padding: 70px 0;
    background: #f8f9fa;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.portfolio-category {
    background-color: #eef7ff;
    color: #0a66c2;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-image:hover img {
    transform: scale(1.03);
}

.portfolio-description h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.portfolio-description p {
    margin-bottom: 15px;
    color: #555;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a66c2;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0a66c2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 3px 6px rgba(10, 102, 194, 0.2);
}

.btn:hover {
    background-color: #004182;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(10, 102, 194, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #0a66c2;
    color: #0a66c2;
}

.btn-outline:hover {
    background-color: #0a66c2;
    color: white;
}

/* PDF Viewer Section */
.pdf-viewer-section {
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.pdf-viewer-section.active {
    display: block;
}

.pdf-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.pdf-viewer-title {
    font-size: 22px;
    color: #0a66c2;
    font-weight: 600;
}

.close-pdf-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    padding: 5px;
}

.close-pdf-btn:hover {
    color: #333;
}

.pdf-container {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .portfolio-category {
        margin-top: 10px;
    }
    
    .pdf-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .pdf-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        padding: 15px;
    }
    
    .pdf-viewer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .close-pdf-btn {
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .pdf-container {
        height: 350px;
    }
}

        /* Portfolio Item Styles */
        .portfolio-item {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .portfolio-title {
            font-size: 28px;
            color: #0a66c2;
            margin-bottom: 10px;
        }

        .portfolio-category {
            background-color: #eef7ff;
            color: #0a66c2;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .portfolio-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .portfolio-image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .portfolio-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .portfolio-image:hover img {
            transform: scale(1.03);
        }

        .portfolio-description {
            padding: 10px 0;
        }

        .portfolio-description h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1d1d1d;
        }

        .portfolio-description p {
            margin-bottom: 15px;
            color: #555;
        }

        .features-list {
            list-style: none;
            margin: 20px 0;
        }

        .features-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }

        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0a66c2;
            font-weight: bold;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #0a66c2;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 3px 6px rgba(10, 102, 194, 0.2);
        }

        .btn:hover {
            background-color: #004182;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(10, 102, 194, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #0a66c2;
            color: #0a66c2;
        }

        .btn-outline:hover {
            background-color: #0a66c2;
            color: white;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        /* PDF Viewer Section */
        .pdf-viewer-section {
            margin-top: 30px;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .pdf-viewer-section.active {
            display: block;
        }

        .pdf-viewer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }

        .pdf-viewer-title {
            font-size: 22px;
            color: #0a66c2;
            font-weight: 600;
        }

        .close-pdf-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
            padding: 5px;
        }

        .close-pdf-btn:hover {
            color: #333;
        }

        .pdf-container {
            width: 100%;
            height: 600px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #eaeaea;
        }

        .pdf-viewer {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .portfolio-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .portfolio-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .portfolio-category {
                margin-top: 10px;
            }
            
            .pdf-container {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-item {
                padding: 20px;
            }
            
            .portfolio-title {
                font-size: 24px;
            }
            
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
            }
            
            .pdf-container {
                height: 400px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            .portfolio-item {
                padding: 15px;
            }
            
            .portfolio-title {
                font-size: 22px;
            }
            
            .pdf-viewer-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .close-pdf-btn {
                margin-top: 10px;
                align-self: flex-end;
            }
            
            .pdf-container {
                height: 350px;
            }
        }
