/* Custom CSS for nuudapps Website */

:root {
    --primary-color: #2563eb;
    --secondary-color: #14b8a6;
    --accent-color: #f97316;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --dark-color: #333;
    --light-color: #f8fafc;
    --muted-color: #6b7280;
    --white: #ffffff;
    --best-bg: rgba(0, 0, 0, 0.8);
    --gradient-primary: linear-gradient(135deg, #2563eb 10%, rgba(0, 0, 0, 0.8) 50%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden !important;

}

/* Smooth scrolling */
html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Neuton", serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 800;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: #333;
    font-size: 16px;
    font-family: "Work Sans", sans-serif;

}

@media only screen and (min-width: 901px) and (max-width: 1920px) {
    body, p {
        font-size: 18px !important;
    }
}

/* Media query for desktop screens */
@media only screen and (min-width: 1921px) {
    body, p {
        font-size: 20px !important;
    }
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../about/header.gif') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Tech Icons Animation */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 11;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(34, 255, 0, 0.616);
    animation: float 6s ease-in-out infinite;
}

.tech-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.tech-icon:nth-child(3) {
    bottom: 40%;
    left: 15%;
    animation-delay: 2s;
}

.tech-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.tech-icon:nth-child(5) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.tech-icon:nth-child(6) {
    top: 80%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Service Cards */
.service-card {
    background: #f6ffbe43;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}


/* Vision Mission Cards */
.vision-mission-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vision-mission-card .icon {
    font-size: 2.5rem;
}

/* Progress Bars */
.progress {
    height: 10px;
    border-radius: 10px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Project Cards */
.project-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

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

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

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* Client Logos */
.companies {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        url('../about/nuudapps-2.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.partner-logo {
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Partners Slider */
.partners-slider {
    overflow: hidden;
    white-space: nowrap;
}

.partners-track {
    display: inline-flex;
    animation: slidePartners 20s linear infinite;
}

.partners-track .partner-logo {
    margin: 0 30px;
    flex-shrink: 0;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-78%);
    }
}

/* Pause animations on hover */
.partners-track:hover,
.products-track:hover,
.testimonials-track:hover {
    animation-play-state: paused;
}

/* Team Cards */
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--light-color);
    transition: var(--transition);
}

.team-card:hover .team-img img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background: var(--light-color);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Testimonials */
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.05;
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price {
    color: var(--primary-color);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    border: none;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

/* About Page Specific Styles */
.about-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('../about/nuudapps.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 99px !important;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero-img img {
    border-radius: var(--border-radius);
}

.mission-vision-card {
    background: #0335926b;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-item-about {
    background: #0335926b;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

/* Capability Cards */
.capability-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.capability-icon {
    transition: var(--transition);
}

.capability-card:hover .capability-icon {
    transform: scale(1.1);
}

/* Skill Circles */
.skill-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.circle-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) calc(var(--percentage, 95) * 3.6deg), #e5e7eb calc(var(--percentage, 95) * 3.6deg));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
}

.percentage {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--primary-color);
}

/* Achievement Counters */
.achievement-counter {
    transition: var(--transition);
}

.achievement-counter:hover {
    transform: scale(1.05);
}

.counter-icon {
    opacity: 0.8;
    transition: var(--transition);
}

.achievement-counter:hover .counter-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Team Detail Cards */
.team-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-img-detail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.skill-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.skill-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Why Choose Cards */
.why-choose-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    transition: var(--transition);
}

.why-choose-card:hover .why-icon {
    transform: scale(1.1);
}

/* Contact Features */
.contact-features .fas {
    color: rgba(255, 255, 255, 0.8);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .tech-icons {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }

    .floating-nav {
        bottom: 20px;
        right: 20px;
    }

    .floating-nav .btn {
        width: 50px;
        height: 50px;
    }

    .team-detail-card .row {
        text-align: center;
    }

    .team-detail-card .col-md-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .service-card,
    .pricing-card,
    .blog-card {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-info {
        padding: 1rem;
        margin-top: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--best-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
a:focus {
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .floating-nav,
    .hero-section,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .container {
        max-width: none !important;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Subscribe button */
.neon-input {
    border-radius: 25px;
    border: 1px solid #09f;
    box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
    transition: box-shadow 0.3s ease;
}

.neon-input:hover,
.neon-input:focus {
    box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 80px #09f;
}

.neon-button {
    position: relative;
    border-radius: 25px;
    background-color: transparent;
    border: 1px solid #09f;
    box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
    transition: box-shadow 0.3s ease;
    border-left: none !important;
    color: #09f;
    padding: 10px 20px;
    overflow: hidden;
    font-family: "Neuton";
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
}

.neon-button:hover,
.neon-button:focus {
    border-color: rgba(255, 208, 0, 0.978);
    color: rgb(255, 179, 0);
    background-color: #091E3E;
}

.neon-button:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    background-color: rgb(2, 27, 44);
    z-index: -1;
    animation: glow 1s ease infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.h1Text {
    padding-top: 5px;
    font-family: "Neuton";
    font-size: 24px;
    font-weight: bold;
    color: rgb(0, 213, 255);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
}

.d-inline-views small {
    font-size: 13px !important;
}

.d-inline-views .fa {
    font-size: 15px !important;
    color: rgb(34, 34, 50);
}

/* App Listing Page Styles */
.apps-header {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.app-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.app-card-header {
    position: relative;
    padding: 1.5rem 1.5rem 0;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
}

.app-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.app-name {
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
}

.app-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    min-height: 3rem;
}

.app-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-category {
    font-size: 0.8rem;
    color: var(--muted-color);
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 0.5rem;
}

.app-stats {
    text-align: center;
}

.app-card-footer {
    padding: 0 1.5rem 1.5rem;
}

/* Search and Filter Styles */
.search-box .input-group-text {
    background: var(--light-color);
    border: 1px solid #e5e7eb;
}

.search-box .form-control {
    border: 1px solid #e5e7eb;
    background: var(--light-color);
}

.search-box .form-control:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.filter-buttons .btn {
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* App Detail Page Styles */
.app-hero-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.app-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.app-hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-hero-meta .app-rating {
    margin-bottom: 0.5rem;
}

.app-hero-actions .download-stats {
    margin-top: 1rem;
}

.screenshot-item {
    transition: var(--transition);
}

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

.screenshot-item img {
    aspect-ratio: 9/16;
    object-fit: cover;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
}

.review-item {
    transition: var(--transition);
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.write-review-section {
    background: var(--light-color);
}

.app-sidebar .card {
    border: none;
    box-shadow: var(--shadow-light);
}

.app-sidebar .card-header {
    background: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.developer-info h6 {
    color: var(--primary-color);
}

.developer-links .btn {
    font-size: 0.8rem;
}

.related-app-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.related-app-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.related-app-card .app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 10px;
}

.related-app-card h6 {
    font-weight: 600;
    color: var(--dark-color);
}

.related-app-card .app-rating {
    justify-content: center;
    margin-bottom: 1rem;
}

/* App Listing Responsive */
@media (max-width: 768px) {
    .filter-buttons {
        text-align: center !important;
        margin-top: 1rem;
    }

    .filter-buttons .btn-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-buttons .btn {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    .app-hero-content .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .app-hero-icon {
        margin-bottom: 1rem;
    }

    .app-meta {
        justify-content: center;
        text-align: center;
    }

    .screenshot-item img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 576px) {
    .app-card-body {
        padding: 1rem;
    }

    .app-card-header {
        padding: 1rem 1rem 0;
    }

    .app-card-footer {
        padding: 0 1rem 1rem;
    }

    .app-icon {
        width: 60px;
        height: 60px;
    }

    .app-hero-icon {
        width: 100px;
        height: 100px;
    }

    .related-app-card {
        padding: 1rem;
    }

    .related-app-card .app-icon {
        width: 50px;
        height: 50px;
    }
}

/* App filtering animation */
.app-card.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.app-card.filtered-in {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Load more button animation */
#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* App badge styles */
.badge.bg-success {
    background-color: var(--success-color) !important;
}

.badge.bg-info {
    background-color: var(--secondary-color) !important;
}

.badge.bg-warning {
    background-color: var(--warning-color) !important;
    color: var(--dark-color) !important;
}

/* Star rating hover effects */
.app-rating i:hover {
    transform: scale(1.1);
}

/* Review form enhancements */
.review-form .form-control:focus,
.review-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Sidebar sticky positioning */
@media (min-width: 992px) {
    .app-sidebar {
        position: sticky;
        top: 2rem;
    }
}

a.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
}

span.fw-medium {
    color: var(--primary-color);
}

.review-button {
    color: #fff;
    background-color: var(--primary-color)
}
.review-button:hover {
    color: #111;
    background-color: var(--secondary-color);
}

.visitor-counter {
    top: -12px;
    right: 10px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.visitor-counter i {
    color: white;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

.share-copy a{
  border-radius: 50%;
  border: .75px solid blue;
  background-color: #fff;
}

.share-copy a:hover{
  color: #fff !important;
  background-color: #131313 !important;
  box-shadow: 0 0 20px #09f, 0 0 40px #09f, 0 0 60px #09f;
  transition: box-shadow 0.3s ease;
}
.share-copy a:focus{
  color: #fff !important;
  background-color: #5d00ff77 !important;
}