        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        .project-header {
            background-color: #343a40;
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .project-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: #f8f9fa;
            transform: skewY(-3deg);
        }

        .feature-icon {
            font-size: 1.5rem;
            color: #28a745;
            margin-right: 0.5rem;
        }

        .screenshot-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .screenshot {
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .screenshot:hover {
            transform: scale(1.05);
        }


        .tech-stack {
            background-color: #e9ecef;
            border-radius: 10px;
            padding: 1rem;
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #28a745;
        }

        .btn-custom {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            transition: background-color 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #218838;
        }
@media (max-width: 991px) {
    .col-lg-4 {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .btn-custom, .btn-outline-secondary {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}
.tech-stack .d-flex {
    flex-wrap: wrap;
}

.tech-stack .badge {
    margin-bottom: 0.5rem;
}
@media (max-width: 575px) {
    .accordion-button {
        padding: 0.75rem;
    }
    .accordion-body {
        padding: 0.75rem;
    }
}
.swal-popup {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swal-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.swal-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.swal-button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.swal-button {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.swal-button:first-child {
  background-color: #007bff;
  color: white;
}

.swal-button:last-child {
  background-color: #28a745;
  color: white;
}

.swal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swal-close-button {
  color: #999;
  transition: color 0.3s ease;
}

.swal-close-button:hover {
  color: #333;
}
.code-block {
    position: relative;
}

#imageModal .modal-content {
    background-color: transparent;
    border: none;
}

#imageModal .modal-body {
    position: relative;
}

#modalImage {
    max-height: 90vh;
    width: auto;
    margin: 0 auto;
    display: block;
}

#prevImage, #nextImage {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#prevImage:hover, #nextImage:hover {
    opacity: 1;
}

.screenshot {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

.btn-custom {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom i {
    margin-right: 10px;
    font-size: 1.2em;
}

.github-btn {
    background-color: #24292e;
    color: white;
}

.github-btn:hover {
    background-color: #2f363d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom i {
    margin-right: 10px;
    font-size: 1.2em;
}

.github-btn {
    background-color: #24292e;
    color: white;
}

.github-btn:hover {
    background-color: #2f363d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.playstore-badge {
    display: inline-block;
    overflow: hidden;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.playstore-badge img {
    max-width: 200px;
    height: auto;
}

.playstore-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.github-badge,
.playstore-badge {
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.github-badge img,
.playstore-badge img {
    max-width: 200px;
    height: auto;
}

.github-badge:hover,
.playstore-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    transition: all 0.3s ease;
}

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

.card-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}
.project-links-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.project-links-card .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.link-badge {
    display: inline-block;
    transition: all 0.3s ease;
    max-width: 200px;
    width: 100%;
}

.link-badge img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.link-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.github-badge img {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.playstore-badge img {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .project-links-card {
        margin-top: 2rem;
    }
}