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

        body {
            font-family: Arial, sans-serif;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            min-height: 60px;
        }

        /* Logo and Animation Styles */
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #d53b96;
            flex: 1;
        }

        .logo span {
            position: relative;
            display: inline-block;
            color: #f043e4;
            height: 1.5em;
            vertical-align: bottom;
            overflow: hidden;
        }

        .logo span span {
            display: block;
            animation: animatewords 10s infinite ease;
        }

        @keyframes animatewords {
            0% { transform: translateY(0%); }
            25% { transform: translateY(-100%); }
            50% { transform: translateY(-200%); }
            75% { transform: translateY(-300%); }
            100% { transform: translateY(-400%); }
        }

        /* Navigation Styles */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Desktop Menu */
        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .desktop-menu a {
            text-decoration: none;
            font-size: 16px;
            color: #0056b3;
            font-weight: 500;
            transition: color 0.3s;
        }

        .desktop-menu a:hover {
            color: #d53b96;
        }

        /* User Icon */
        .user-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s;
        }

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

        /* Mobile Menu Button */
        .menu-button {
            background-color: transparent;
            color: #f043e4;
            border: none;
            padding: 5px;
            cursor: pointer;
            font-size: 25px;
            display: none;
        }

        .menu-button:hover {
            background-color: #f0f0f0;
            border-radius: 4px;
        }

        /* Sliding Menu */
        .menu-content {
            position: fixed;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100vh;
            background-color: white;
            color: #f043e4;
            padding: 20px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            transition: right 0.3s ease-in-out;
            z-index: 1001;
        }

        .menu-content.open {
            right: 0;
        }

        .close-button {
            background-color: transparent;
            color: #f44336;
            border: none;
            padding: 10px;
            font-size: 18px;
            cursor: pointer;
            margin-bottom: 20px;
            float: right;
        }

        .close-button:hover {
            background-color: #f0f0f0;
            border-radius: 4px;
        }

        .menu-content ul {
            list-style: none;
            padding: 0;
            margin-top: 50px;
        }

        .menu-content ul li {
            margin: 15px 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .menu-content ul li a {
            color: #f043e4;
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .menu-content ul li a:hover {
            color: #d53b96;
            text-decoration: underline;
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Media Queries for Responsiveness */
        @media screen and (max-width: 768px) {
            header {
                padding: 10px 15px;
            }

            .logo {
                font-size: 18px;
            }

            .desktop-menu {
                display: none;
            }

            .menu-button {
                display: block;
            }

            .user-icon {
                width: 25px;
                height: 25px;
            }
        }

        @media screen and (max-width: 480px) {
            header {
                padding: 8px 10px;
            }

            .logo {
                font-size: 16px;
            }

            .menu-content {
                width: 200px;
                right: -200px;
            }

            .user-icon {
                width: 22px;
                height: 22px;
            }
        }

        @media screen and (max-width: 320px) {
            .logo {
                font-size: 14px;
            }

            .menu-content {
                width: 180px;
                right: -180px;
                padding: 15px;
            }
        }

        /* Large screens */
        @media screen and (min-width: 1200px) {
            header {
                padding: 15px 40px;
            }

            .logo {
                font-size: 28px;
            }

            .desktop-menu a {
                font-size: 18px;
            }
        }
        
          /* imahge slid */
        .slider-container {
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hero Section */
.hero {
  text-align: center;
  background: linear-gradient(to right, #57a1ff, #d53b96);
  color: white;
  padding: 50px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
/* css for text writtn*/
    .texts {
      text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px;
  border-radius: 10px;
  background-image: linear-gradient(#86d9d6, #e9ebb7);
    }
/* General Animation Setup */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-right {
  transform: translateX(-50px);
}

/* Visible State */
.animate-visible {
  opacity: 1;
  transform: translateX(0);
}
/* feacher video preview */

.responsive-videos {
            text-align: center;
            padding: 20px;
        }

        .responsive-videos h1 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
        }

        .video-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .video-box {
            flex: 1 1 100%; /* Default to full width */
            max-width: 320px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
            background-color: #f9f9f9;
        }

        video {
            width: 100%;
            border-bottom: 2px solid #ddd;
        }

        .video-box p {
            padding: 10px;
            font-size: 1rem;
            color: #555;
        }

        /* Mobile view - default (single column) */
        @media (max-width: 767px) {
            .video-box {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }

        /* Tablet view */
        @media (min-width: 768px) and (max-width: 1199px) {
            .video-box {
                flex: 1 1 calc(50% - 20px); /* Two videos side-by-side */
                max-width: calc(50% - 20px);
            }
        }

        /* Desktop view - Fixed to show all 4 videos in one row */
        @media (min-width: 1200px) {
            .video-container {
                justify-content: space-between;
            }
            
            .video-box {
                flex: 1 1 calc(25% - 15px); /* Four videos side-by-side */
                max-width: calc(25% - 15px);
                min-width: 250px; /* Ensure minimum width */
            }
        }

        /* Large desktop - ensure videos don't get too big */
        @media (min-width: 1600px) {
            .video-container {
                max-width: 1400px;
                margin: 0 auto;
            }
            
            .video-box {
                max-width: 300px;
            }
        }








        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-top: 3px solid #d53b96;
            padding: 40px 20px 20px;
            text-align: center;
            font-family: Arial, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Logo/Title */
        .footer h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #d53b96;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        /* Social Media Links */
        .social-media-links {
            margin-bottom: 25px;
        }

        .social-media-links a {
            color: #555;
            font-size: 24px;
            margin: 0 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .social-media-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Individual social media colors on hover */
        .social-media-links a[aria-label*="YouTube"]:hover {
            color: #FF0000;
            background-color: rgba(255, 0, 0, 0.1);
        }

        .social-media-links a[aria-label*="Facebook"]:hover {
            color: #1877F2;
            background-color: rgba(24, 119, 242, 0.1);
        }

        .social-media-links a[aria-label*="Twitter"]:hover {
            color: #1DA1F2;
            background-color: rgba(29, 161, 242, 0.1);
        }

        .social-media-links a[aria-label*="Instagram"]:hover {
            color: #E4405F;
            background-color: rgba(228, 64, 95, 0.1);
        }

        .social-media-links a[aria-label*="LinkedIn"]:hover {
            color: #0A66C2;
            background-color: rgba(10, 102, 194, 0.1);
        }

        /* Copyright Text */
        .footer p {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* Footer Links */
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #040214;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 5px;
            position: relative;
        }

        .footer-links a:hover {
            color: #d53b96;
            background-color: rgba(213, 59, 150, 0.1);
            transform: translateY(-1px);
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #d53b96;
            transition: all 0.3s ease;
        }

        .footer-links a:hover::after {
            width: 100%;
            left: 0;
        }

        /* Responsive Design */

        /* Tablet styles */
        @media screen and (max-width: 768px) {
            .footer {
                padding: 30px 15px 15px;
            }

            .footer h3 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .social-media-links a {
                font-size: 22px;
                margin: 0 12px;
                padding: 8px;
            }

            .footer p {
                font-size: 15px;
                margin-bottom: 18px;
            }

            .footer-links {
                gap: 20px;
            }

            .footer-links a {
                font-size: 15px;
                padding: 6px 10px;
            }
        }

        /* Mobile styles */
        @media screen and (max-width: 480px) {
            .footer {
                padding: 25px 10px 15px;
            }

            .footer h3 {
                font-size: 24px;
                margin-bottom: 15px;
                line-height: 1.2;
            }

            .social-media-links {
                margin-bottom: 20px;
            }

            .social-media-links a {
                font-size: 20px;
                margin: 0 8px;
                padding: 6px;
            }

            .footer p {
                font-size: 14px;
                margin-bottom: 15px;
                padding: 0 10px;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .footer-links a {
                font-size: 14px;
                padding: 8px 16px;
                display: block;
                text-align: center;
            }
        }

        /* Small mobile styles */
        @media screen and (max-width: 320px) {
            .footer {
                padding: 20px 8px 12px;
            }

            .footer h3 {
                font-size: 20px;
                margin-bottom: 12px;
            }

            .social-media-links a {
                font-size: 18px;
                margin: 0 6px;
                padding: 5px;
            }

            .footer p {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .footer-links a {
                font-size: 13px;
                padding: 6px 12px;
            }
        }

        /* Large desktop styles */
        @media screen and (min-width: 1200px) {
            .footer {
                padding: 50px 40px 25px;
            }

            .footer h3 {
                font-size: 42px;
                margin-bottom: 25px;
            }

            .social-media-links a {
                font-size: 26px;
                margin: 0 18px;
                padding: 12px;
            }

            .footer p {
                font-size: 18px;
                margin-bottom: 25px;
            }

            .footer-links {
                gap: 30px;
            }

            .footer-links a {
                font-size: 17px;
                padding: 10px 15px;
            }
        }

        /* Animation for footer on page load */
        .footer {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover effect for the entire footer */
        .footer-container:hover .social-media-links a {
            transform: scale(0.95);
        }

        .footer-container .social-media-links a:hover {
            transform: scale(1.1) translateY(-3px);
        }
        
        
        
        
        
        
       /* Feedback Section Styles */
        .feedback-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .feedback-section h1 {
            font-size: 2.5rem;
            color: #333;
            text-align: center;
            margin-bottom: 30px;
            font-weight: bold;
            position: relative;
        }

        .feedback-section h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #d53b96, #f043e4);
            border-radius: 2px;
        }

        .scroll-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 20px;
            height: 400px;
            overflow-y: auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        .scroll-section-content {
            height: auto;
        }

        .feedback {
            background: white;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #d53b96;
            transition: all 0.3s ease;
            position: relative;
        }

        .feedback:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .feedback:last-child {
            margin-bottom: 0;
        }

        .feedback h3 {
            color: #333;
            font-size: 1.2rem;
            margin: 0 0 10px 0;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .feedback h3::before {
            content: '';
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(45deg, #d53b96, #f043e4);
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .rating {
            font-size: 1.2rem;
            margin: 8px 0 12px 0;
            color: #ffd700;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .rating .empty-star {
            color: #ddd;
        }

        .comment {
            color: #555;
            line-height: 1.6;
            font-size: 1rem;
            margin: 0;
            position: relative;
            padding-left: 15px;
        }

        .comment::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 1.5rem;
            color: #d53b96;
            opacity: 0.5;
            font-family: serif;
        }

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

        .scroll-section::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .scroll-section::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #d53b96, #f043e4);
            border-radius: 10px;
        }

        .scroll-section::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #c12e7a, #e63bcc);
        }

        .no-feedback {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            padding: 60px 20px;
            background: white;
            border-radius: 12px;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .feedback-section {
                padding: 0 15px;
                margin: 30px auto;
            }

            .feedback-section h1 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .scroll-section {
                height: 350px;
                padding: 15px;
            }

            .feedback {
                padding: 15px;
                margin-bottom: 15px;
            }

            .feedback h3 {
                font-size: 1.1rem;
            }

            .feedback h3::before {
                width: 30px;
                height: 30px;
                margin-right: 10px;
            }

            .rating {
                font-size: 1.1rem;
            }

            .comment {
                font-size: 0.95rem;
                padding-left: 12px;
            }
        }

        @media screen and (max-width: 480px) {
            .feedback-section h1 {
                font-size: 1.8rem;
            }

            .scroll-section {
                height: 300px;
                padding: 12px;
            }

            .feedback {
                padding: 12px;
            }

            .feedback h3 {
                font-size: 1rem;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .feedback h3::before {
                width: 25px;
                height: 25px;
                margin-right: 8px;
                margin-bottom: 5px;
            }

            .rating {
                font-size: 1rem;
                margin: 5px 0 8px 0;
            }

            .comment {
                font-size: 0.9rem;
                padding-left: 10px;
            }
        }

        /* Animation for feedback items */
        .feedback {
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        

            
            /* qr scanner css*/
/* Floating QR Button */
        .qr-icon {
            position: fixed;
            bottom: 20px; /* 20px from the bottom */
            right: 20px; /* 20px from the right */
            width: 60px;
            height: 60px;
            cursor: pointer;
            background: url('indexpics/scan-icon.jpg') no-repeat center center;
            background-size: cover;
            border-radius: 50%;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        /* Accessibility for Floating Icon */
        .qr-icon:focus {
            outline: none;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.75);
        }
            
            
            
            
            
        /* Home Design Showcase */
.home-design-showcase {
    background: #f8f9fa;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.design-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.section-count {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Design Slider */
.design-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.design-container {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 10px;
}

/* Design Cards */
.design-card {
    min-width: calc(25% - 15px); /* Desktop: 4 cards */
    max-width: calc(25% - 15px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.design-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Badges */
.trending-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 5;
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #2ed573, #1dd1a1);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 5;
}

.recommended-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #3742fa, #2f3542);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 5;
}

.premium-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #333;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 5;
}

.normal-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    z-index: 5;
}

/* Card Content */
.card-content {
    padding: 16px;
}

.design-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    margin-bottom: 15px;
}

.price-free {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    background: #d4edda;
    padding: 4px 8px;
    border-radius: 4px;
}

.price-paid {
    color: #007bff;
    font-weight: bold;
    font-size: 14px;
    background: #d1ecf1;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 8px;
}

.btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.preview-btn {
    background: #6c757d;
    color: white;
}

.preview-btn:hover:not(:disabled) {
    background: #545b62;
    transform: translateY(-1px);
}

.preview-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.create-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.create-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-1px);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.slider-btn:hover:not(:disabled) {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Explore More Section */
.explore-more-section {
    text-align: center;
    margin: 60px 0 20px 0;
}

/* RGB Button */
.rgb-button {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 220px;
}

.rgb-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #ff0000, #ff7300, #fffb00, #48ff00, 
        #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    border-radius: 53px;
    z-index: -1;
    animation: rgbRotate 2s linear infinite;
    background-size: 400% 400%;
}

.rgb-button span {
    position: relative;
    z-index: 2;
}

.rgb-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.rgb-button:hover::before {
    animation-duration: 1s;
}

@keyframes rgbRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .design-card {
        min-width: calc(50% - 10px); /* Mobile: 2 cards */
        max-width: calc(50% - 10px);
    }
    
    .design-slider {
        padding: 0 35px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 2px;
    }
    
    .next-btn {
        right: 2px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .design-section {
        padding: 0 10px;
    }
    
    .home-design-showcase {
        padding: 30px 0;
    }
    
    .rgb-button {
        padding: 16px 30px;
        font-size: 16px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .design-card {
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .design-image {
        height: 140px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .design-title {
        font-size: 14px;
    }
    
    .btn {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    .rgb-button {
        padding: 14px 25px;
        font-size: 14px;
        min-width: 160px;
    }
}

            
           