/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 25px;
    color: white;
    position: relative;
    border-bottom: 2px solid #32CD32;
}

/* Logo Container - Advanced Hanging Effect */
.logo-container {
    position: absolute;
    left: 20px;
    top: 10px;
    z-index: 10;
    background: black;
    /* Dark Glass effect */
    backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 8px rgba(255, 255, 255, 0.2);
    animation: floating 4s ease-in-out infinite, neon-glow 3s linear infinite;
}

/* Logo Styling */
.logo {
    width: 125px;
    filter: drop-shadow(0px 0px 12px rgba(0, 255, 150, 0.6));
    padding: 5px;
}

/* Animated Neon Glow Effect */
@keyframes neon-glow {
    0% {
        box-shadow: 0 0 10px #ff0000, 0 0 15px #ff0000;
    }

    25% {
        box-shadow: 0 0 10px #ff9900, 0 0 15px #ff9900;
    }

    50% {
        box-shadow: 0 0 10px #00ff00, 0 0 15px #00ff00;
    }

    75% {
        box-shadow: 0 0 10px #0099ff, 0 0 15px #0099ff;
    }

    100% {
        box-shadow: 0 0 10px #ff00ff, 0 0 15px #ff00ff;
    }
}

/* Floating Animation (Light Hover Effect) */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Navigation Bar */
.nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 220px;
    /* Moves the dropbtns away from the logo */
}

/* Dropdown Button */
.dropbtn {
    background: none;
    color: #32CD32;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Ensure Dropdown does not overlap the logo */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background: black;
    border: 1px solid #32CD32;
    padding: 15px;
    min-width: 600px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show dropdown when hovering over the button */
.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.dropdown-column h4 {
    color: #32CD32;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-content a:hover {
    color: #32CD32;
    letter-spacing: 0.5px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Header Right Icons */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right i {
    font-size: 22px;
    cursor: pointer;
    color: #32CD32;
    transition: all 0.3s ease;
    text-shadow: 0px 0px 5px rgba(50, 205, 50, 0.6);
}

.header-right i:hover {
    color: white;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

/* Market Place Button - Glassmorphism with Parrot Green */
.marketplace-btn {
    background: rgba(50, 205, 50, 0.2);
    /* Parrot Green transparent */
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 22px;
    border: 2px solid rgba(50, 205, 50, 0.5);
    /* Parrot Green border */
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect - Lift Up */
.marketplace-btn:hover {
    background: rgba(50, 205, 50, 0.5);
    box-shadow: 0 0 25px rgba(50, 205, 50, 0.8);
    /* Stronger green glow */
    transform: translateY(-5px);
    /* Lifts up */
}

/* Click Effect - Press Down */
.marketplace-btn:active {
    transform: translateY(2px);
    /* Moves down slightly */
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
}

/* Signup Button */
.signup-btn {
    background: linear-gradient(135deg, #32CD32, #28a745);
    color: black;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.signup-btn:hover {
    background: white;
    color: black;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
}

/* Login Button */
.login-btn {
    background: white;
    color: black;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.login-btn:hover {
    background: linear-gradient(135deg, #32CD32, #28a745);
    color: black;
    box-shadow: 0px 0px 15px rgba(40, 167, 69, 0.8);
}

.language-dropdown {
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #32CD32, #28a745);
    border: 1px solid #1f7a1f;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
    appearance: none;
    outline: none;
    text-align: center;
    display: block;
    width: 110px;
}

.language-dropdown:hover {
    background: linear-gradient(135deg, #28a745, #228B22);
    border-color: #166d16;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.language-dropdown:focus {
    border-color: #145214;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.language-dropdown option {
    background: #fff;
    color: #222;
    font-size: 14px;
    padding: 6px;
}



/* Responsive Design for Header */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav {
        margin-left: 220px;
    }

    .dropdown-content {
        min-width: 600px;
    }

    .marketplace-btn {
        font-size: 18px;
        padding: 12px 22px;
    }

    .signup-btn,
    .login-btn {
        font-size: 16px;
        padding: 10px 18px;
    }

    .language-dropdown {
        font-size: 14px;
        padding: 8px 12px;
        margin-left: 10px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav {
        margin-left: 200px;
    }

    .dropdown-content {
        min-width: 500px;
    }

    .marketplace-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .signup-btn,
    .login-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .language-dropdown {
        font-size: 14px;
        padding: 8px 12px;
        margin-left: 10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav {
        margin-left: 180px;
        flex-direction: column;
        /* Stack navigation */
        align-items: flex-start;
        gap: 15px;
    }

    .dropbtn {
        font-size: 16px;
    }

    .dropdown-content {
        min-width: 90%;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .dropdown-column {
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        /* Stack header right */
        gap: 10px;
    }

    .marketplace-btn {
        font-size: 14px;
        padding: 8px 18px;
    }

    .signup-btn,
    .login-btn {
        font-size: 12px;
        padding: 6px 14px;
    }

    .language-dropdown {
        font-size: 12px;
        padding: 6px 10px;
        margin-left: 8px;
        width: 80px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .nav {
        margin-left: 160px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dropbtn {
        font-size: 16px;
    }

    .dropdown-content {
        min-width: 90%;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .dropdown-column {
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
    }

    .marketplace-btn {
        font-size: 12px;
        padding: 6px 14px;
    }

    .signup-btn,
    .login-btn {
        font-size: 10px;
        padding: 5px 12px;
    }

    .language-dropdown {
        font-size: 12px;
        padding: 6px 10px;
        margin-left: 5px;
        width: 80px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .nav {
        margin-left: 140px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dropbtn {
        font-size: 14px;
        padding: 10px;
    }

    .dropdown-content {
        min-width: 90%;
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

    .dropdown-column {
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
    }

    .marketplace-btn {
        font-size: 10px;
        padding: 5px 12px;
    }

    .signup-btn,
    .login-btn {
        font-size: 8px;
        padding: 4px 10px;
    }

    .language-dropdown {
        font-size: 10px;
        padding: 4px 8px;
        margin-left: 5px;
        width: 80px;
    }

    .logo {
        width: 100px;
    }

    .logo-container {
        padding: 15px;
        left: 10px;
    }
}

/* Footer Styling */
.footer {
    background-color: #000;
    /* Black Background */
    color: #32CD32;
    /* Parrot Green Text */
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo and Tagline */
.footer-logo {
    width: 20%;
    text-align: left;
}

.footer-logo img {
    width: 120px;
    display: block;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    color: white;
}

/* Footer Columns */
.footer-column {
    width: 20%;
    min-width: 180px;
    padding: 20px;
    text-align: left;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #32CD32;
    display: inline-block;
    padding-bottom: 5px;
    color: white;
}

.footer-column a {
    display: block;
    color: #32CD32;
    text-decoration: none;
    margin: 8px 0;
    transition: color 0.3s ease-in-out;
}

.footer-column a:hover {
    color: #FFF;
    /* White on Hover */
}

/* Contact Info Styling */
.contact-info p {
    margin: 5px 0;
}

.contact-info i {
    margin-right: 8px;
    color: #32CD32;
}

/* Social Media Icons */
.social-media {
    margin-top: 20px;
    text-align: center;
    padding: 10px 0;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #32CD32;
    color: #000;
    border-radius: 50%;
    font-size: 18px;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #FFF;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 10px #32CD32;
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #32CD32;
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 10px;
    font-size: 14px;
    position: relative;
}

/* Diamond shapes at the edges of the border */
.footer-bottom::before,
.footer-bottom::after {
    content: "";
    position: absolute;
    top: -10px;
    /* Position slightly above the border */
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #32CD32, #FFFFFF);
    /* Parrot Green & White Gradient */
    transform: rotate(45deg);
}

/* Left diamond */
.footer-bottom::before {
    left: -10px;
}

/* Right diamond */
.footer-bottom::after {
    right: -10px;
}

/* Responsive Design for Footer */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .footer-column {
        width: 25%;
        /* Four equal columns */
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-column {
        width: 25%;
        /* Four equal columns */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-column {
        width: 50%;
        /* Two columns per row */
        text-align: center;
        /* Center text in columns */
    }

    .footer-column h4 {
        text-align: center;
        /* Center the heading */
        display: block;
        /* Make the heading take full width */
        margin: 0 auto;
        /* Center the heading */
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo img {
        width: 120px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-column {
        width: 100%;
        /* One column per row */
        text-align: center;
    }

    .footer-column h4 {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo img {
        width: 100px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .footer-column {
        width: 100%;
        /* One column per row */
        text-align: center;
    }

    .footer-column h4 {
        text-align: center;
        display: block;
        margin: 0 auto;
        font-size: 16px;
        /* Smaller heading size */
    }

    .footer-column a {
        font-size: 14px;
        /* Smaller link size */
    }

    .social-icon {
        width: 35px;
        /* Smaller icons */
        height: 35px;
        font-size: 16px;
    }

    .footer {
        font-size: 14px;
        /* Smaller base font size */
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo img {
        width: 90px;
    }
}

/* Models Area */
.models-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 600px;
}

/* Text Container */
.text-container {
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

/* Trusted by text */
.trusted-text {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Tick mark with parrot green color */
.tick-mark {
    color: #32CD32;
    font-size: 26px;
    font-weight: bold;
}

/* 3D Models for Every Budget text */
.budget-text {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    margin: 30px 0;
}

/* Full-width Search Box */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

/* Search Input */
.search-box {
    width: 60%;
    max-width: 700px;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    outline: none;
    background: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Search Button */
.search-btn {
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(135deg, #32CD32, #28a745);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.3s;
}

/* Search Button Hover Effect */
.search-btn:hover {
    background: #fff;
    color: #000;
}

/* Category Container */
.category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* Each Category Box */
.category-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Search Icon */
.search-icon {
    font-size: 16px;
    color: white;
}

/* Hover Effect */
.category-box:hover {
    color: #32CD32;
    border: 1px solid #32CD32;
    transform: scale(1.05);
}

/* Responsive Design for Models Area */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .models-area {
        height: 600px;
    }

    .budget-text {
        font-size: 50px;
    }

    .search-box {
        width: 60%;
    }

    .category-container {
        gap: 15px;
    }

    .category-box {
        font-size: 18px;
        padding: 12px 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .models-area {
        height: 550px;
    }

    .budget-text {
        font-size: 45px;
    }

    .search-box {
        width: 70%;
    }

    .category-container {
        gap: 15px;
    }

    .category-box {
        font-size: 16px;
        padding: 10px 18px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .models-area {
        height: 500px;
    }

    .budget-text {
        font-size: 40px;
    }

    .search-box {
        width: 80%;
        font-size: 16px;
        padding: 12px;
    }

    .search-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .category-container {
        gap: 10px;
    }

    .category-box {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .models-area {
        height: 450px;
    }

    .budget-text {
        font-size: 35px;
    }

    .search-box {
        width: 90%;
        font-size: 14px;
        padding: 10px;
    }

    .search-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .trusted-text {
        font-size: 18px;
        margin-top: 15%;
        /* Added margin-top for small screens */
    }

    .category-container {
        margin-bottom: 35%;
        gap: 10px;
    }

    .category-box {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .models-area {
        height: 400px;
    }

    .budget-text {
        font-size: 30px;
        margin: 20px 0;
    }

    .search-box {
        width: 95%;
        font-size: 12px;
        padding: 8px;
    }

    .search-btn {
        font-size: 12px;
        padding: 8px 16px;
        margin-left: 5px;
    }

    .trusted-text {
        font-size: 18px;
        margin-top: 20%;
        /* Added margin-top for small screens */
    }

    .tick-mark {
        font-size: 20px;
    }

    .category-container {
        margin-bottom: 38%;
        gap: 8px;
    }

    .category-box {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* Tabs Section */
.tabs-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* Thin Section Line */
.section-line {
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 15px;
}

/* Tabs Container */
.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1600px;
    /* Ensures the same width as the gallery */
    width: 100%;
    gap: 15px;
}

/* Individual Tabs */
.tab {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover & Active Effect */
.tab:hover,
.tab.active {
    color: #32CD32;
}

/* Bottom Line Effect */
.tab::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #32CD32;
    transition: width 0.3s ease, left 0.3s ease;
}

.tab:hover::after,
.tab.active::after {
    width: 50%;
    left: 25%;
}

/* Responsive Design for Tabs Section */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .tabs-container {
        gap: 15px;
    }

    .tab {
        font-size: 18px;
        padding: 12px 20px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .tabs-container {
        gap: 15px;
    }

    .tab {
        font-size: 16px;
        padding: 10px 18px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .tabs-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .tabs-container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        /* Center tabs */
    }

    .tab {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .tabs-container {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        /* Center tabs */
    }

    .tab {
        font-size: 12px;
        padding: 6px 14px;
    }
}


/* Clickable Image Gallery Section */
.clickable-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1500px;
    width: 100%;
    gap: 10px;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f0f8ff, #e0f7fa, #ffebf0);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    /* Soft pastel gradient */
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 60px;
}

/* Smooth Animation for the Gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Clickable Image Item */
.clickable-image-item {
    position: relative;
    overflow: hidden;
    width: 280px;
    height: 460px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #2b2d42;
    /* Dark Blue-Gray for a modern look */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Image Styling - Ensuring Full Image Visibility */
.clickable-image-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures full image is visible */
    transition: transform 0.3s ease;
}

/* Hover Zoom Effect */
.clickable-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
}

/* Clickable Overlay with Glass Effect */
.clickable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
    gap: 12px;
    /* Space between Preview & Buy button */
}

.clickable-image-item:hover .clickable-overlay {
    opacity: 1;
}

/* Glassy Preview Button */
.clickable-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

/* Hover Zoom Effect */
.clickable-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
}

/* Image Cost Label */
.image-cost {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    text-align: center;
}

/* Buy Now Button */
.buy-button {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(50, 205, 50, 0.9);
    border: 1px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.buy-button:hover {
    background: rgba(34, 139, 34, 1);
}

.loading-message,
.no-data,
.error-message {
    text-align: center;
    font-size: 20px;
    color: #555;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    animation: fadeIn 0.5s ease-in-out;
}

.loading-message::after {
    content: "⏳";
    display: block;
    font-size: 24px;
    margin-top: 10px;
    animation: spin 1.5s linear infinite;
}

.no-data::before {
    content: "📂";
    display: block;
    font-size: 26px;
    margin-bottom: 8px;
}

.error-message {
    color: red;
    background: rgba(255, 0, 0, 0.1);
    border-left: 5px solid red;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Clickable Image Gallery */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .clickable-gallery {
        gap: 20px;
    }

    .clickable-image-item {
        width: 280px;
        height: 460px;
    }

    .clickable-text {
        font-size: 18px;
        padding: 12px 24px;
    }

    .buy-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .image-cost {
        font-size: 18px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .clickable-gallery {
        gap: 15px;
    }

    .clickable-image-item {
        width: 250px;
        height: 420px;
    }

    .clickable-text {
        font-size: 16px;
        padding: 10px 20px;
    }

    .buy-button {
        font-size: 14px;
        padding: 8px 18px;
    }

    .image-cost {
        font-size: 16px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .clickable-gallery {
        gap: 12px;
    }

    .clickable-image-item {
        width: 220px;
        height: 380px;
    }

    .clickable-text {
        font-size: 14px;
        padding: 8px 16px;
    }

    .buy-button {
        font-size: 12px;
        padding: 6px 14px;
    }

    .image-cost {
        font-size: 14px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .clickable-gallery {
        gap: 10px;
    }

    .clickable-image-item {
        width: 200px;
        height: 340px;
    }

    .clickable-text {
        font-size: 12px;
        padding: 6px 14px;
    }

    .buy-button {
        font-size: 10px;
        padding: 5px 12px;
    }

    .image-cost {
        font-size: 12px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .clickable-gallery {
        gap: 8px;
    }

    .clickable-image-item {
        width: 180px;
        height: 300px;
    }

    .clickable-text {
        font-size: 10px;
        padding: 5px 12px;
    }

    .buy-button {
        font-size: 8px;
        padding: 4px 10px;
    }

    .image-cost {
        font-size: 10px;
    }
}




/* 🌌 MODAL BACKDROP - Glassmorphism Effect */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    /* Frosted Glass Effect */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

/* 🚀 MODAL CONTENT - Futuristic Neon Look */
.modal-content {
    background: rgba(0, 0, 0, 0.85);
    padding: 25px;
    border-radius: 20px;
    width: 92%;
    max-width: 1100px;
    height: 80vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: space-between;
    box-shadow: 0px 0px 25px rgba(0, 255, 170, 0.5);
    border: 2px solid rgba(0, 255, 170, 0.8);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    animation: modalAppear 0.5s ease-in-out;
}

/* 🎛️ MODEL VIEWER CONTAINER - Immersive Look */
#model-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.2), rgba(0, 100, 255, 0.2));
    box-shadow: inset 0px 0px 20px rgba(0, 255, 170, 0.3);
}

/* 🌀 HOVER EFFECT - Depth Animation */
.modal-content:hover {
    transform: scale(1.02);
}

/* 🎬 ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 🎛️ Controls Row (Side by Side) */
.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* 🎨 Color Picker Buttons */
.controls button {
    background: rgba(54, 54, 54, 0.8);
    color: white;
    border: 2px solid white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 🎨 Color Picker Inputs (Hidden but Clickable) */
#colorPicker,
#bgColorPicker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* 🖌️ Hover Effects */
.controls button:hover {
    color: #00ff55;
    border-color: #00ff55;
    box-shadow: 0px 0px 12px rgba(0, 255, 85, 0.7);
    transform: scale(1.05);
}

/* 🎨 Default Icon Colors */
.controls button i {
    color: #ffffff;
    /* White icons by default */
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

/* 🎨 Model Color Icon */
#colorPickerBtn i {
    color: #ffcc00;
    /* Yellow */
}

/* 🎨 Background Color Icon */
#bgColorPickerBtn i {
    color: #0099ff;
    /* Blue */
}

/* 🎨 Wireframe Icon */
#toggleWireframe i {
    color: #ff5500;
    /* Orange */
}

/* 🎨 Apply Texture Icon */
#applyTexture i {
    color: #ff33aa;
    /* Pink */
}

/* 🎨 Reset Icon */
#resetOriginal i {
    color: #00ff55;
    /* Green */
}

/* 🖌️ Hover Effects - Icons Change Color */
.controls button:hover i {
    color: #00ff55;
    /* Bright Green on Hover */
}

/* 🖌️ Glowing Shadow on Hover */
.controls button:hover {
    box-shadow: 0px 0px 15px rgba(0, 255, 85, 0.7);
}

/* ✨ CLOSE BUTTON - Neon Glow */
.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: #00ff99;
    /* Neon Green */
    border: 2px solid #00ff99;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.close:hover {
    color: #ff0000;
    /* Magenta Glow */
    border-color: #ff0000;
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.7);
}

/* Responsive Design for Modal */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .modal-content {
        width: 90%;
        max-width: 1200px;
        height: 85vh;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .modal-content {
        width: 95%;
        max-width: 1000px;
        height: 80vh;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .modal-content {
        width: 98%;
        max-width: 800px;
        height: 75vh;
        padding: 15px;
        /* Slightly smaller padding */
    }

    .controls button {
        font-size: 12px;
        padding: 8px 12px;
    }

    .close {
        font-size: 25px;
        width: 40px;
        height: 40px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .modal-content {
        width: 98%;
        max-width: 600px;
        height: 70vh;
        padding: 10px;
        /* Smaller padding */
    }

    .controls button {
        font-size: 10px;
        padding: 6px 10px;
    }

    .close {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .modal-content {
        width: 95%;
        /* Take almost full width */
        max-width: 400px;
        /* Set a maximum width */
        height: 65vh;
        /* Adjust height for very small screens */
        padding: 5px;
        /* Smallest padding */
    }

    .controls button {
        font-size: 8px;
        /* Smallest font size */
        padding: 4px 8px;
        /* Smallest padding */
    }

    .close {
        font-size: 16px;
        /* Smallest close button size */
        width: 30px;
        height: 30px;
        top: 8px;
        /* Adjust position */
        right: 8px;
    }
}








/* Artists Card Section */
.artists-card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.artists-card {
    width: 60%;
    padding: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1b1b1b, #2c3e50);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.artists-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Artists Gallery */
.artists-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Artist Card */
.artist-card {
    width: 280px;
    height: 180px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.artist-card:hover {
    transform: scale(1.05);
}

/* Artist Image */
.artist-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.artist-card:hover img {
    transform: scale(1.1);
}

/* Hover Overlay */
.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-overlay h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    color: white;
}

.artist-overlay p {
    font-size: 14px;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00ff00;
}

/* Responsive Design for Artists Card Section */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .artists-card {
        width: 60%;
    }

    .artist-card {
        width: 300px;
        height: 200px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .artists-card {
        width: 70%;
    }

    .artist-card {
        width: 280px;
        height: 180px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .artists-card {
        width: 80%;
        padding: 20px;
    }

    .artists-title {
        font-size: 24px;
    }

    .artist-card {
        width: 250px;
        height: 160px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .artists-card {
        width: 90%;
        padding: 15px;
    }

    .artists-title {
        font-size: 20px;
    }

    .artist-card {
        width: 220px;
        height: 140px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .artists-card {
        width: 95%;
        padding: 10px;
    }

    .artists-title {
        font-size: 18px;
    }

    .artist-card {
        width: 180px;
        height: 120px;
    }
}


/* Section Styling */
.confidence-section {
    text-align: center;
    padding: 50px 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.confidence-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.confidence-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #32CD32, #28a745);
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

/* Cards Container */
.confidence-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

/* Card Styling */
.confidence-card {
    background: rgba(50, 50, 50, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 25px;
    width: 280px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease-in-out;
}

/* Card Hover Effect */
.confidence-card:hover {
    background: #111;
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    border: 2px solid #32CD32;
}

/* Card Title */
.confidence-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #32CD32;
    text-align: left;
    letter-spacing: 1.2px;
    line-height: 1.5;
}

/* Card Text */
.confidence-card p {
    font-size: 15px;
    color: #e0e0e0;
    text-align: left;
    letter-spacing: 0.8px;
    line-height: 1.6;
}

/* Responsive Design for Confidence Section */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .confidence-card {
        width: 280px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .confidence-card {
        width: 250px;
    }

    .confidence-section h2 {
        font-size: 28px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .confidence-card {
        width: 220px;
    }

    .confidence-section h2 {
        font-size: 26px;
    }

    .confidence-card h3 {
        font-size: 20px;
    }

    .confidence-card p {
        font-size: 14px;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .confidence-card {
        width: 200px;
    }

    .confidence-section h2 {
        font-size: 24px;
    }

    .confidence-card h3 {
        font-size: 18px;
    }

    .confidence-card p {
        font-size: 13px;
    }
}

/* Extra small devices (smaller than 576px) */
@media (max-width: 575px) {
    .confidence-card {
        width: 90%;
        /* Full width on very small screens */
        max-width: 250px;
        /* Set a maximum width */
    }

    .confidence-section h2 {
        font-size: 20px;
    }

    .confidence-card h3 {
        font-size: 16px;
    }

    .confidence-card p {
        font-size: 12px;
    }
}