/* ===== PORTFOLIO PAGE SPECIFIC STYLES ===== */
        /* Portfolio Hero Section with Stats */
        .portfolio-hero {
            padding: 100px 0;
            background: linear-gradient(135deg, #2667FF 0%, #FF4754 100%);
            position: relative;
            overflow: hidden;
            color: white;
        }

        .portfolio-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='1440' height='720' viewBox='0 0 1440 720' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%232667FF' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%23FF4754' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0h1440v720H0z'/%3E%3Cpath fill='%23FFF' fill-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3Cpath fill='none' stroke='%23FFF' stroke-width='2' stroke-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3C/svg%3E");
            background-size: cover;
            opacity: 0.7;
        }

        .portfolio-hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .portfolio-hero-content .lead {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        /* Stats in Hero Section */
        .hero-stats-container {
            margin-top: 50px;
        }

        .stat-card {
            padding: 30px 20px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-icon {
            font-size: 2rem;
            color: white;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
            color: white;
        }
		

        /* Portfolio Filter Section */
        .portfolio-filter-section {
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .section-description {
            color: #6c757d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Portfolio Filter Buttons */
        .btn-filter {
            background: white;
            color: var(--dark-color);
            border: 1px solid #e9ecef;
            padding: 8px 20px;
            margin: 0 5px 10px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-filter:hover, .btn-filter.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Portfolio Grid Section */
        .portfolio-grid-section {
            padding: 60px 0;
        }

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

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .portfolio-image {
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(38, 103, 255, 0.8);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay-content {
            text-align: center;
            padding: 20px;
            color: white;
        }

        .portfolio-overlay-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .portfolio-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .portfolio-category {
            display: inline-block;
            background: rgba(38, 103, 255, 0.1);
            color: var(--primary-color);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .portfolio-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .portfolio-content p {
            color: #6c757d;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .portfolio-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: auto;
        }

        .stat-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--dark-color);
        }

        .stat-item i {
            color: var(--primary-color);
            margin-right: 5px;
            font-size: 1rem;
        }

        /* Client Testimonials */
        .portfolio-testimonials {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .testimonial-card {
            height: 100%;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .testimonial-quote i {
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.2;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1rem;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }

        .author-position {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 5px;
        }

        .author-rating {
            color: #FFC107;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .portfolio-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #0B1460, #2667FF);
            position: relative;
            overflow: hidden;
            color: white;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-text {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        /* Modal Redesign */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }

        .modal-header {
            border-bottom: none;
            padding: 20px 25px 0;
        }

        .modal-title {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        .modal-body {
            padding: 0 25px 25px;
            overflow-y: auto;
            max-height: 80vh;
        }

        .case-study-image {
            margin-bottom: 25px;
        }

        .case-study-image img {
            width: 100%;
            border-radius: 10px;
            max-height: 400px;
            object-fit: cover;
        }

        .case-study-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .case-study-content p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.6;
        }

        .case-study-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .case-study-content ul li {
            margin-bottom: 8px;
            color: #555;
            line-height: 1.6;
        }

        .case-study-stats {
            margin: 30px 0;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
        }

        .case-study-stats h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 15px;
        }

        .stat-item .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-item .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
        }
		
		
		/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .portfolio-hero-content h1 {
                font-size: 3rem;
            }
            
            .portfolio-content h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 991.98px) {
            .portfolio-hero {
                padding: 80px 0;
            }
            
            .portfolio-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .portfolio-content h3 {
                font-size: 1.2rem;
            }
            
            .case-study-image img {
                max-height: 300px;
            }
        }

        @media (max-width: 767.98px) {
            .portfolio-hero-content h1 {
                font-size: 2rem;
            }
            
            .portfolio-hero-content .lead {
                font-size: 1.1rem;
            }
            
            .portfolio-image img {
                height: 200px;
            }
            
            .portfolio-content {
                padding: 20px;
            }
            
            .portfolio-stats {
                gap: 10px;
            }
            
            .stat-item {
                font-size: 0.8rem;
            }
            
            .stat-item i {
                font-size: 0.9rem;
            }
            
            .modal-body {
                padding: 15px;
            }
            
            .case-study-content h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .portfolio-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .portfolio-hero-content .lead {
                font-size: 1rem;
            }
            
            .btn-filter {
                padding: 6px 15px;
                font-size: 0.85rem;
                margin: 0 3px 8px;
            }
            
            .portfolio-image img {
                height: 180px;
            }
            
            .portfolio-content h3 {
                font-size: 1.1rem;
            }
            
            .portfolio-content p {
                font-size: 0.9rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .stat-icon {
                font-size: 1.5rem;
            }
            
            .case-study-stats .row > div {
                margin-bottom: 15px;
            }
        }
		
		@media (min-width: 991.98px) and (max-width: 1600px) {
            .portfolio-hero-content .d-flex {
            flex-wrap: nowrap !important;
            gap: 15px !important;
    }
    
        .portfolio-hero-content .btn {
            white-space: nowrap;
            padding: 0.5rem 1rem;
            font-size: 1rem;
    }
}
