:root {
    --primary-color: #082b53;
    --secondary-color: #FEC107;
    --dark-color: #000000;
    --light-color: #f9fafb;
    --accent-color: #4CAF50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}


/* Logo Styles */

.navbar-brand .logo {
    height: 60%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo {
    height: 35px;
}

@media (max-width: 768px) {
    .navbar-brand .logo {
        height: 35px;
        max-width: 150px;
    }
    .navbar.scrolled .navbar-brand .logo {
        height: 30px;
    }
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url("../images/laptop.webp") no-repeat center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
}


/* Smaller hero section for non-index pages */

.hero-section-small {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url("../images/laptop.webp") no-repeat center;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    min-height: 40%;
}

.btn-primary {
    background-color: var(--primary-color);
    xam border-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    display: block;
    margin: 0 auto 50px auto;
    color: var(--dark-color);
    text-align: center;
    width: fit-content;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* Services Section Background and Layout */

.services-section {
    background-image: linear-gradient(135deg, rgba(8, 43, 83, 0.9), rgba(10, 77, 140, 0.8)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: auto;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 43, 83, 0.85), rgba(10, 77, 140, 0.75));
    z-index: 1;
}

.services-section .container {
    z-index: 2;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}


/* Enhanced Service Card Styling */

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(8, 43, 83, 0.2);
}

.service-header {
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid rgba(8, 43, 83, 0.1);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    background-color: #f8f9fa;
    padding-left: 0.5rem;
}


/* Featured Service Enhanced Styling */

.featured-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a4d8c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.featured-service .service-icon.featured-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(254, 193, 7, 0.3);
}

.featured-service .service-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-service .service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.featured-service .service-features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.featured-service .service-features .fas.fa-check {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 10px rgba(254, 193, 7, 0.5);
}

.featured-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(8, 43, 83, 0.4);
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .services-section {
        background-attachment: scroll;
    }
    .service-header {
        padding: 1.5rem 1rem 0.5rem;
    }
    .service-content {
        padding: 1rem;
    }
    .featured-service {
        padding: 1.5rem;
    }
    .featured-service .service-content h3 {
        font-size: 1.5rem;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    .featured-service .service-icon.featured-icon {
        font-size: 3rem;
    }
}


/* Featured Service Styles */

.featured-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a4d8c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.featured-service .service-icon.featured-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.featured-service .service-content h3 {
    color: white;
    font-size: 1.8rem;
}

.featured-service .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.featured-service .service-features li {
    color: rgba(255, 255, 255, 0.95);
}

.featured-service .service-features .fas.fa-check {
    color: var(--secondary-color) !important;
}

.featured-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(8, 43, 83, 0.3);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.tech-logo {
    height: 60px;
    margin: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.tech-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    text-decoration: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item::after {
        left: 18px;
    }
    .left::after,
    .right::after {
        left: 18px;
    }
    .right {
        left: 0%;
    }
}


/*whatsapp button*/

.whatsapp-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    margin-bottom: 3px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px 10px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: white;
}


/*about page*/


/*services page specific styles*/

.service-detail-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    padding: 30px;
    background-color: white;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    padding: 30px;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.featured:before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-header {
    background-color: white;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header:hover {
    background-color: #f8f9fa;
}

.faq-content {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.show {
    padding: 20px;
    max-height: 500px;
}


/*contact page specific styles*/

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    padding-left: 20px;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.contact-info {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.office-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.office-img {
    height: 200px;
    object-fit: cover;
}


/* About page specific styles */

.mission-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 30px;
    background-color: white;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.values-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.stats-item {
    text-align: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--dark-color);
}


/* Projects page specific styles */

.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background-color: #f8f9fa;
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.project-filters {
    margin-bottom: 50px;
}

.filter-btn {
    margin: 5px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.project-item {
    transition: all 0.3s ease;
}

.project-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}


/* Project modal styles */

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 30px;
}

.modal-body {
    padding: 30px;
}

.modal-body h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 8px;
    color: #666;
}

.badge {
    padding: 8px 12px;
    font-size: 0.85rem;
}


/* Clients Section Styles */

.clients-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.clients-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.clients-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .client-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .client-logo {
        width: 140px;
        height: 70px;
    }
}


/* Enhanced Active Navigation State */

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bolder !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
}

.navbar.scrolled .nav-link.active {
    color: var(--primary-color) !important;
}


/* Hover effect for non-active nav links */

.navbar-nav .nav-link:not(.active):hover {
    color: var(--primary-color) !important;
    background-color: rgba(29, 78, 216, 0.05) !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}


/* Mobile responsive active state */

@media (max-width: 991px) {
    .navbar-nav .nav-link.active {
        background-color: rgba(29, 78, 216, 0.2) !important;
        margin: 2px 0;
    }
    .navbar-nav .nav-link.active::after {
        display: none;
    }
}


/* Product Cards Styles */

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.product-card .card-body {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.product-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.product-card .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.product-card .btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Product section background */

.product-card .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 15px 15px 0 0;
}

.projectsh1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}