/* Sticky Navigation Bar */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.sticky-nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-nav .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.sticky-nav .nav-menu ul li {
    position: relative;
}

.sticky-nav .nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sticky-nav .nav-menu ul li a:hover {
    color: #007bff;
}

/* Dropdown Styles */
.sticky-nav .dropdown {
    position: relative;
}

.sticky-nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1;
}

.sticky-nav .dropdown:hover .dropdown-content {
    display: block;
}

.sticky-nav .dropdown-content a {
    color: #333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.sticky-nav .dropdown-content a:hover {
    background-color: #f4f4f4;
}

/* Navigation Search */
.sticky-nav .nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-nav .nav-search input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.sticky-nav .nav-search button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Mobile Responsive Styles */
.toggle-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.toggle-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.toggle-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 1024px) {
    .sticky-nav {
        flex-wrap: wrap;
        padding: 15px 3%;
    }

    .sticky-nav .nav-menu ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        padding-top: 80px;
        z-index: 1000;
    }

    .sticky-nav .nav-menu ul.active {
        display: flex;
    }

    .sticky-nav .nav-menu ul li {
        margin: 15px 0;
        text-align: center;
    }

    .sticky-nav .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .sticky-nav .dropdown:hover .dropdown-content {
        display: block;
    }

    .sticky-nav .dropdown-content a {
        color: #333;
        padding: 10px 0;
    }

    .toggle-btn {
        display: flex;
    }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    padding-top: 60px;
    margin-top: -40px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding-top: 30px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
   
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: rgb(10, 10, 10);
    color: var(--accent-color);
    /* border: 2px solid white; */
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Features Section */
.features-section {
    padding: 80px 5%;
    background-color: var(--bg-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Color Picker Section */
.color-picker-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 950px;
    margin: 50px auto;
    transition: all 0.3s ease;
}

.color-picker-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.color-selection-area,
.image-color-picker {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-selection-area:hover,
.image-color-picker:hover {
    transform: translateY(-10px);
}

.color-selection-area h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

#colorInput {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    margin-bottom: 20px;
}

#colorInput::-webkit-color-swatch-wrapper {
    padding: 0;
}

#colorInput::-webkit-color-swatch {
    border: none;
    border-radius: 10px;
}

.color-preview {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-preview:hover {
    transform: scale(1.05);
}

.color-info {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.color-values {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.color-value {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-value > span {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.color-value-input-group {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-value-input-group:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.color-value-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #333;
    outline: none;
    letter-spacing: 1px;
}

.copy-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    background-color: #2980b9;
}

.copy-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.copy-btn.copied {
    background-color: #2ecc71;
}

.copy-btn.copied i {
    transform: scale(1.2) rotate(360deg);
}

.copy-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.copy-btn.copied i {
    opacity: 0;
}

.copy-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.copy-btn:hover {
    background-color: #0056b3;
}

.copy-btn i {
    margin-right: 5px;
}

.copy-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.copy-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.extracted-color-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.extracted-color-info .copy-btn {
    background-color: #28a745;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.extracted-color-info .copy-btn:hover {
    background-color: #218838;
}

.extracted-color-info .copy-btn i {
    margin-right: 8px;
}

.image-color-picker {
    text-align: center;
}

.image-color-picker h2 {
    color: #333;
    margin-bottom: 20px;
}

.upload-section {
    margin-bottom: 20px;
}

.upload-btn {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.upload-btn:hover {
    background-color: #218838;
}

#image-canvas {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.extracted-colors-container {
    margin-top: 20px;
}

.extracted-colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.extracted-color {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.extracted-color:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .color-picker-container {
        padding: 15px;
        margin: 20px 10px;
        
    }

    .color-picker-wrapper {
        flex-direction: column;
        gap: 20px;

    }

    .color-selection-area,
    .image-color-picker {
        min-width: 100%;
       
    }

    .color-preview {
        width: 120px;
        height: 120px;
       
    }

    .color-value-input-group {
        flex-direction: column;
        gap: 10px;
        
    }

    .copy-btn {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .color-info {
        width: 100%;
        padding: 0 15px;
    }

    .color-value-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .color-value-input-group input {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px;
    }

    .copy-btn {
        width: 100%;
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .color-value > span {
        font-size: 12px;
    }

    .color-value-input-group input {
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

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

.testimonial-container h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.testimonial-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #3498db;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: scale(1.02);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-quote i {
    color: #3498db;
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 15px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #3498db;
}

.author-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #f1c40f;
    font-size: 1.2rem;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
    background-color: rgba(52, 152, 219, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #3498db;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .testimonial-container h2 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .author-info h3 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .testimonial-controls {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-container h2 {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-quote p {
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .author-info h3 {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.7rem;
    }
}

/* Footer */
.site-footer {
    background-color:rgb(20, 160, 215);
    color: white;
    padding: 50px 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--dark-text-secondary);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: rgb(4, 4, 4);
    font-size: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    border: none;
}

.newsletter-form button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .feature-grid, 
    .color-picker-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .color-selection-area,
    .color-preview {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .sticky-nav {
        flex-direction: column;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-carousel {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* Responsive Navbar Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --text-color: #333;
    --background-color: #ffffff;
    --hover-color: #2c3e50;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.navbar-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand .logo:hover {
    color: var(--secondary-color);
}

.navbar-menu .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navbar-menu .nav-links > li > a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu .nav-links > li > a:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.navbar-menu .dropdown {
    position: relative;
}

.navbar-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-color);
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
}

.navbar-menu .dropdown:hover .dropdown-content {
    display: block;
}

.navbar-menu .dropdown-content a {
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar-menu .dropdown-content a:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

/* Toggle Button Styles */
.navbar-toggle {
    display: none;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    padding: 0;
}

.toggle-icon {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.toggle-icon::before {
    top: -8px;
}

.toggle-icon::after {
    bottom: -8px;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .navbar-container {
        position: relative;
        z-index: 1100;
        background-color: var(--background-color);
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background-color);
        transition: left 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-menu.active {
        left: 0;
        display: block;
    }

    .navbar-menu .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .navbar-menu .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu .dropdown.active .dropdown-content {
        display: block;
        max-height: 500px;
    }

    .navbar-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1200;
    }

    .toggle-btn {
        z-index: 1200;
    }

    .toggle-icon {
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

    .toggle-btn.active .toggle-icon {
        background-color: transparent;
    }

    .toggle-btn.active .toggle-icon::before {
        top: 0;
        transform: rotate(45deg);
        background-color: var(--text-color);
    }

    .toggle-btn.active .toggle-icon::after {
        bottom: 0;
        transform: rotate(-45deg);
        background-color: var(--text-color);
    }
}

/* Ensure content is not hidden behind navbar */
body {
    padding-top: 80px;
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ultra Small Devices */
@media screen and (max-width: 375px) {
    .navbar-container {
        padding: 10px 15px;
    }

    .navbar-brand .logo {
        font-size: 1.2rem;
    }

    .navbar-menu .nav-links {
        gap: 20px;
    }
}

/* Image Upload and Color Extraction Section */
.image-upload-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.image-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.file-input {
    display: none;
}

.upload-btn {
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.upload-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.upload-btn i {
    margin-right: 10px;
}

.file-type-info {
    color: #777;
    font-size: 0.9rem;
    margin-top: 10px;
}

.image-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-canvas {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.extracted-colors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.extracted-color-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.extracted-color {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.extracted-color:hover {
    transform: scale(1.1);
}

.extracted-color-info {
    margin-top: 20px;
    text-align: center;
    color: #555;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .image-upload-section {
        padding: 20px 10px;
    }
    
    .extracted-colors-container {
        gap: 10px;
    }
    
    .extracted-color {
        width: 80px;
        height: 80px;
    }
    
    .upload-btn {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 480px) {
    .extracted-colors-container {
        gap: 5px;
    }
    
    .extracted-color {
        width: 60px;
        height: 60px;
    }
    
    .file-type-info {
        font-size: 0.8rem;
    }
}
