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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8eef7 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

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

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

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes slideInLeft {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes scaleIn {
            0% { opacity: 0; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Top Banner */
        .top-banner {
            background: #15315a;
            background-size: 200% 200%;
            /* animation: gradientMove 8s ease infinite; */
            color: white;
            padding: 10px 0;
            font-size: 13px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

        .top-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .top-banner a {
            color: #fff;
            text-decoration: underline;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .top-banner a:hover {
            color: #ffe66d;
            transform: scale(1.05);
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            0% { transform: translateY(-100%); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        .logo {
            font-size: 26px;
            font-weight: bold;
          color:#16315b;
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            background-clip: text;
            animation: pulse 3s ease-in-out infinite;
            cursor: pointer;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .header-search {
            max-width: 500px;
            margin: 0 auto;
        }

        .header-search input {
            border-radius: 30px;
            padding: 12px 24px;
            border: 2px solid transparent;
            background: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 15px rgba(102, 126, 234, 0.1);
        }

        .header-search input:focus {
            border-color: #667eea;
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25);
            transform: translateY(-2px);
            outline: none;
        }

        /* Hero Section */
        .hero {
         background: linear-gradient(96.44deg, #c5d5ff, #e2f0ff 51.56%, #d7d4ff);
            background-size: 200% 200%;
            animation: gradientMove 10s ease infinite;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
.btn-link:hover{
    color:#444!important;
}
        .hero h1 {
            color:#243238;
            font-size: 46px;
            font-weight: 700;
            margin-bottom: 20px;
            /* animation: fadeInUp 1s ease-out; */
            position: relative;
            z-index: 1;
           
        }

        .hero p {
            color:#444;
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.2s both;
            position: relative;
            z-index: 1;
        }

        /* Category Tabs */
        .category-tabs {
            background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
            padding: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            animation: fadeIn 1s ease-out;
        }

        .category-tabs .nav-pills > li {
            animation: slideInLeft 0.5s ease-out;
            animation-fill-mode: both;
        }

        .category-tabs .nav-pills > li:nth-child(1) { animation-delay: 0.1s; }
        .category-tabs .nav-pills > li:nth-child(2) { animation-delay: 0.2s; }
        .category-tabs .nav-pills > li:nth-child(3) { animation-delay: 0.3s; }
        .category-tabs .nav-pills > li:nth-child(4) { animation-delay: 0.4s; }
        .category-tabs .nav-pills > li:nth-child(5) { animation-delay: 0.5s; }
        .category-tabs .nav-pills > li:nth-child(6) { animation-delay: 0.6s; }

        .category-tabs .nav-pills > li > a {
            border-radius: 25px;
            padding: 12px 24px;
            margin: 5px;
            color: #666;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            font-weight: 500;
        }

        .category-tabs .nav-pills > li.active > a,
        .category-tabs .nav-pills > li > a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        /* Section Headers */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 50px 0 30px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header a {
            color: #667eea;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .section-header a:hover {
            background: #667eea;
            color: white;
            text-decoration: none;
            transform: translateX(5px);
        }

        /* Product Card */
        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 30px;
            animation: scaleIn 0.6s ease-out;
            animation-fill-mode: both;
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            position: relative;
            transition: transform 0.5s ease;
        }

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

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .product-title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            min-height: 42px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-title {
            color: #667eea;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
        }

        .product-author {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #666;
        }

        .author-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            margin-right: 8px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .product-card:hover .author-icon {
            transform: rotate(360deg);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars {
            color: #ffa500;
            text-shadow: 0 2px 4px rgba(255, 165, 0, 0.3);
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 12px;
        }

        /* Featured Boxes */
        .featured-box {
            background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            border-top: 5px solid #667eea;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .featured-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
        }

        .featured-box i {
            transition: transform 0.4s ease;
        }

        .featured-box:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .featured-box h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
            background: linear-gradient(135deg, #333 0%, #667eea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured-box p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%)!important;
            border: none;
            border-radius: 30px!important;
            padding: 14px 35px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-primary:hover {
            background: linear-gradient(135deg, #5568d3 0%, #6a3d96 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 200% 200%;
            animation: gradientMove 10s ease infinite;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: moveBackground 30s linear infinite;
        }

        .newsletter h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 18px;
            animation: fadeInUp 0.8s ease-out;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .newsletter p {
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
            z-index: 1;
        }

        .newsletter-form {
            max-width: 550px;
            margin: 35px auto 0;
            display: flex;
            gap: 12px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            position: relative;
            z-index: 1;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: 0 6px 25px rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        .newsletter-form button {
            padding: 16px 40px;
            border-radius: 30px;
            background: white;
            color: #667eea;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .newsletter-form button:hover {
            background: #f0f4ff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            /* padding: 60px 0 30px; */
            animation: fadeIn 1s ease-out;
        }

        .footer h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
            border-radius: 2px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer ul li a:hover {
            color: #667eea;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: #888;
        }

        /* Stats Section */
        .stats-number {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .stats-number:nth-child(1) { animation-delay: 0.1s; }
        .stats-number:nth-child(2) { animation-delay: 0.2s; }
        .stats-number:nth-child(3) { animation-delay: 0.3s; }
        .stats-number:nth-child(4) { animation-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .category-tabs .nav-pills {
                text-align: center;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter h2 {
                font-size: 28px;
            }
        }

        /* Stagger animation delays for products */
        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }

        /* Featured box delays */
        .featured-box:nth-child(1) { animation-delay: 0.1s; }
        .featured-box:nth-child(2) { animation-delay: 0.2s; }
        .featured-box:nth-child(3) { animation-delay: 0.3s; }
        .featured-box:nth-child(4) { animation-delay: 0.4s; }
    
  /* signup page */

 .signup-wrapper{

  padding: 4rem; 

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;



 }

 .signup-form{

      margin-top:60px;

  position: relative;

  width: 100%;

  max-width: 600px;

  padding: 60px 40px 40px;
  

  /* background: rgba(0,0,0,0.7); */

  border:2px solid #8565C2;

  border-radius: 10px;

  color: #fff;

  box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }



.signup-form h2 {

  text-align: center;

  letter-spacing: 4px;

  margin-bottom: 2rem;

  font-size: 2.4rem;

  color: #8565C2;
  word-break: break-word;

}

.signup-form .input-group {

  position: relative;

  width:100%;

}

.signup-form .input-group input,textarea,select {

  width: 100%;

  padding: 10px 0;

  font-size: 1.4rem;

  color:#333;

  letter-spacing: 1px;

  margin-bottom: 30px;

  border: none;

  border-bottom: 1px solid rgba(0,0,0,0.2);

  outline: none;

  background-color: transparent;

  resize: none;

}

.signup-form .input-group label{

    color: #444;

    font-size: 1.4rem;

}

.submit-btn {

   display: block;

   margin-left: auto;

   border: none;

   outline: none;

   background: #8565C2;

   font-size: 1.4rem;

   text-transform: uppercase;

   letter-spacing: 1px;

   padding: 10px 20px;

   border-radius: 5px;

   color: #fff;

   cursor: pointer;

   margin-bottom: 1.2rem;

 }

  /* login-form */

.login-wrapper {

    padding:7rem ;

  

   display: flex;

   justify-content: center;

   align-items: center;

 }

 .form {

     margin-top:40px;

   position: relative;

   width: 100%;

   max-width: 380px;

   padding: 80px 40px 40px;

   /* background: rgba(0,0,0,0.7); */

   border:2px solid #8565C2;

   border-radius: 10px;

   color: #fff;

   box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }

 

 .form img {

   position: absolute;

   top: -50px;

   left: calc(50% - 50px);

   width: 100px;

   background: rgba(255,255,255, 0.8);

   border-radius: 50%;

 }

 .form h2 {

   text-align: center;

   letter-spacing: 4px;

   margin-bottom: 2rem;

   font-size: 2.4rem;

   color: #8565C2;

 }

 .form .input-group {

   position: relative;

 }

 .form .input-group input {

   width: 100%;

   padding: 10px 0;

   font-size: 1.4rem;

   color:#111;

   letter-spacing: 1px;

   margin-bottom: 30px;

   border: none;

   border-bottom: 1px solid #777;

   outline: none;

   background-color: transparent;

 }

 .form .input-group label{

     color: #333;

     font-size: 1.4rem;

 }
