    .product-content {
        height: 100%;
            padding: 5px 10px !important;
    }
    .product-card {
        height: 330px !important;
    }
        /* Loading spinner styles */
        #loadingSpinner {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
.select2-container{
    display:block !important;
}
        .spinner-border {
            width: 3rem;
            height: 3rem;
            border-width: 0.3rem;
        }

        /* Hide the main content initially */
        #mainContent {
            display: none;
        }
        h2 {
    font-size: 18px;
}
h2 > span {
    color:#990000;
}
/* ENHANCED: Premium Hero Section Styles */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
        background: linear-gradient(135deg, #667eea -9%, #f10303 1%, #b30509 1%, #2596be 35%, #2596be 40%);
}
@media (max-width: 991px) {
    .hero-content {
        padding-right: 1rem;
        margin-bottom: 3rem;
        display: none;
    }
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(102, 126, 234, 0.8) 0%,
        rgba(118, 75, 162, 0.7) 25%,
        rgba(240, 147, 251, 0.6) 50%,
        rgba(245, 87, 108, 0.7) 75%,
        rgba(79, 172, 254, 0.8) 100%
    );
    animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.8; }
    50% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatShape 20s linear infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    border-radius: 20%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 15s;
    border-radius: 0;
    transform: rotate(45deg);
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    right: 15%;
    animation-delay: 7s;
    border-radius: 30%;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg); 
        opacity: 0.6;
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}


.icon-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: iconFloat 15s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    color: rgba(255, 255, 255, 0.6);
}

.icon-house { top: 15%; left: 15%; animation-delay: 0s; }
.icon-car { top: 25%; right: 20%; animation-delay: 3s; }
.icon-job { bottom: 30%; left: 10%; animation-delay: 6s; }
.icon-building { top: 70%; right: 10%; animation-delay: 9s; }
.icon-key { bottom: 20%; right: 25%; animation-delay: 12s; }
.icon-money { top: 50%; left: 5%; animation-delay: 2s; }

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.2; 
    }
    50% { 
        transform: translateY(-30px) scale(1.2); 
        opacity: 0.4; 
    }
}

/* Particle Animation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
/* FIXED: Hero badge icon styling */
.badge-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleRise 12s linear infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; animation-delay: 6s; }
.particle:nth-child(5) { left: 30%; animation-delay: 8s; }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; }

@keyframes particleRise {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: scale(0);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
   
  
}

/* Hero Content */
.hero-content {
    padding-right: 2rem;
}

.hero-text-container {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50px;
    animation: pulse 3s ease-in-out infinite;
}

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

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-line-1 {
    display: block;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: titleSlideIn 1s ease-out;
    font-size:20px;
}

.title-line-2 {
    display: block;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.3s both;
    position: relative;
}

.title-decoration {
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
    color: #fbbf24;
}

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

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.2) rotate(180deg); 
        opacity: 1; 
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: #fbbf24;
    font-weight: 700;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    color: white;
}
.text-gold{
    color:gold !important;
}
@media (max-width: 575px) {
    .feature-content {
        background: none !important;
    }
}
.feature-content {
     position: relative !important;
     padding:0px;
}
.select2-container--default .select2-selection--single
 {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    height: 40px;
    padding: 5px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

/* Hero Search Card */
.hero-search-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.hero-search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

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

.hero-search-card:hover::before {
    left: 100%;
}

/* Search Card Header */
.search-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-icon {
    font-size: 1.8rem;
}

.search-card-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Premium Form Styling */
.premium-search-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.label-icon {
    font-size: 1rem;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.premium-select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: #374151;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.premium-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
}

.premium-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: #374151;
    transition: all 0.3s ease;
}

.premium-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}

.autocomplete-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.autocomplete-item:hover {
    background-color: #f8fafc;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

/* Dynamic Filters */
.filters-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.filters-group label {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.filters-group label:hover {
    background: #e0f2fe;
    border-color: #0ea5e9;
}

.filters-group input[type="radio"] {
    display: none;
}

.filters-group input[type="radio"]:checked + span {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
}

/* Premium Search Button */
.btn-search-premium {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.btn-search-premium:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-search-premium:active {
    transform: translateY(0);
}

.btn-search-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
}

.btn-search-premium:active .btn-search-ripple {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Quick Search Section */
.quick-search-section {
    text-align: center;
}

.quick-search-label {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.quick-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-weight: 500;
}

.quick-tag:hover {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-search-col {
        padding-left: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .premium-hero {
        min-height: auto;
     
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-search-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .floating-shapes .shape {
        opacity: 0.5;
    }
    
    .floating-icons .icon-float {
        font-size: 1.5rem;
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-search-card {
        border-radius: 20px;
        padding: 1.5rem 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filters-group {
        justify-content: center;
    }
}

/* Animation on Scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}
.suggest-card{
background: linear-gradient(#0044bb, #080229);
    color: white;
    box-shadow: 5px 9px 10px lavender;
}
.suggest-card h6{
    color:white;
}
.suggest-card p{
  color:gold !important;
}

.badge-left {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}



legend{
      color: #FFFFFF;
}
  .form-control {
    color: black;

    border: 1px solid #555;
    padding: 5px;
    border-radius: 5px;
  }

  .btn-search {
    background-color: #555;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
.bg-success {
    background-color: #28a745 !important;
    padding: 6px;
    color: white;
}
  .btn-search svg {
    fill: white;
  }

  .suggestion-wrap label {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    color: white;
  }

  .suggestion-wrap input[type="radio"] {
    margin-right: 5px;
  }

.categorylist{
background: linear-gradient(1deg, black, transparent);
     color: white;
}


.banner-part::before{
    background: linear-gradient(rgba(4, 53, 138, 0.65), rgba(5, 44, 112, 0.65)) !important;
}

.suggestion-wrap span {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .suggestion-wrap input[type="radio"] {
    margin-right: 5px;
  }
  .suggestion-wrap{
  color:#FFFFFF;
  }


  .mg-text{
    font-size:12px;
    color: #FFF;
  }


   .autocomplete-items {
          position: absolute;
          border: 1px solid #d4d4d4;
          border-bottom: none;
          border-top: none;
          z-index: 99;
          top: 100%;
          left: 0;
          right: 0;
      }

      .autocomplete-item {
          padding: 10px;
          cursor: pointer;
          background-color: #fff;
          border-bottom: 1px solid #d4d4d4;
      }

      .autocomplete-item:hover {
          background-color: #e9e9e9;
      }



.btn-search {
  min-height: 40px !important;
  height: 40px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
}

 .product-card {
        display: flex;
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 10px;
    }

   

    .product-content {
        flex: 1;
    }

    @media (max-width: 768px) {
        .product-card {
            flex-direction: column;
            align-items: center;
        }

        .product-media {
            margin-right: 0;
            margin-bottom: 10px;
        }


    }
    @media (min-width: 380px) and (max-width: 575px) {
        .product-card {
             width: auto !important;

        }
      }
      .col-sm-12, .col-md-12{
padding-right: 5px;
    padding-left: 5px;
      }
      .feature-price small{
            color: darkblue;
      }
      @media (max-width: 575px) {
          .product-card.standard .product-img img, .ad-standard .product-card.standard .product-img img {
              width: 150px !important;
          }
      }
      

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0px;
    padding-right: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.product-media {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}


.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.product-content {
    padding: 15px;
    flex-grow: 1;
  height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    margin-bottom: 10px;
}

.product-meta {
    margin-bottom: 10px;
}
.product-meta span{
margin-right:0px;
  font-size: 11px;
}
.product-info {
    margin-top: auto;
}

.product-price {
    font-size: 15px !important;
    font-weight: bold;
}

.product-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }
}


.category-card1 {
        position: relative;
        overflow: hidden;
          border-radius: 10px;
        width: 100%;
        max-width: 300px;
        height: 150px; /* Fixed height for consistent rendering */
    }

    .category-card1 img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the container without distortion */
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: block;
    }

    .category-card1:hover img {
        transform: scale(1.1);
    }

    .category-card1 .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        text-align: center;
        padding: 10px;
    }

    .category-card1:hover .overlay {
        opacity: 1;
    }

    .category-card1 .overlay h3,
    .category-card1 .overlay p {
        margin: 0;
        color: #fff; /* Ensure text color is white */
        font-size: 18px;
    }

    .category-card1 .overlay p {
        margin-top: 5px;
        font-size: 14px;
    }

     /* Show title alone in mobile view */
     @media (max-width: 768px) {
        .category-card1 .overlay {
            opacity: 1;
        }

        .category-card1 .overlay p {
            display: none;
        }
    }


.country-flag {
    margin-bottom: 8px;
   
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 48px;
    max-height: 48px;
}
.country-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    text-align: center;
    width: 100%;
    margin-bottom: 2px;
}



/* ENHANCED: Platform Features Section Styles */
.platform-features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.platform-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.features-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.gradient-text {
      background: linear-gradient(37deg, #fcc60d, #b7ca17, #f7090b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #3b82f6;
}

.features-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-icon.bg-primary { background: linear-gradient(45deg, #3b82f6, #1d4ed8); }
.feature-icon.bg-success { background: linear-gradient(45deg, #10b981, #059669); }
.feature-icon.bg-warning { background: linear-gradient(45deg, #f59e0b, #d97706); }

.feature-pulse {
    position: absolute;
  
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-benefits i {
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Feature Highlight Cards */
.feature-highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.highlight-icon {
    font-size: 3rem;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.highlight-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.mini-feature i {
    font-size: 0.9rem;
}

/* Stats Showcase */
.stats-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.enhanced-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color:gold;
}

.cta-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.benefit-item i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid;
    display: inline-block;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-color: #fbbf24;
    color: #1e293b;
}

.btn-cta-primary:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: #1e293b;
}

.btn-cta-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.btn-shine {
    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.6s;
}

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

.cta-note {
    margin-top: 1rem;
}

/* Premium Pricing Section */
.premium-pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
    margin-bottom: 2rem;
}

.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background-color: #3b82f6;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.free-plan .plan-icon { background: linear-gradient(45deg, #10b981, #059669); }
.pro-plan .plan-icon { background: linear-gradient(45deg, #3b82f6, #1d4ed8); }
.enterprise-plan .plan-icon { background: linear-gradient(45deg, #8b5cf6, #7c3aed); }

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-description {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #475569;
}

.plan-features i {
    margin-right: 12px;
    font-size: 0.9rem;
}

.plan-features li.unavailable {
    color: #94a3b8;
}

.plan-features li.unavailable i {
    color: #cbd5e1;
}

.plan-action {
    margin-top: auto;
}

.btn-plan-free,
.btn-plan-pro,
.btn-plan-enterprise {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-plan-free {
    background: transparent;
    border-color: #10b981;
    color: #10b981;
}

.btn-plan-free:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
}

.btn-plan-pro {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-color: #3b82f6;
    color: white;
}

.btn-plan-pro:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-plan-enterprise {
    background: transparent;
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.btn-plan-enterprise:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

/* Plan Comparison */
.plan-comparison {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-title {
    font-weight: 700;
    color: #1e293b;
}

.comparison-actions {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .highlight-features {
        justify-content: center;
    }
    
    .cta-actions .btn-cta-primary,
    .cta-actions .btn-cta-secondary {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .toggle-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .modern-card,
    .pricing-card {
        padding: 25px 20px;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Premium Categories Section */
.premium-categories-section {
    background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 50%, #f1f8ff 100%);
    position: relative;
    overflow: hidden;
}

.premium-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}



.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categories-title, .projects-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gradient-text {
      background: linear-gradient(37deg, #fcc60d, #b7ca17, #f7090b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-subtitle, .projects-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Category Cards */
.premium-category-card {
    padding: 0 0px;
}

.category-card-premium {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  
    display: flex;
    flex-direction: column;
}

.category-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
    position: relative;
     overflow: visible;
   
}
@media (max-width: 460px) {
    .category-image-wrapper {
       overflow: hidden;
    }
}

.category-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.category-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-premium:hover .category-overlay-gradient {
    opacity: 1;
}

/* FIXED: Slider Arrow Alignment */
.related-slider .slick-prev,
.related-slider .slick-next,
.premium-categories-slider .slick-prev,
.premium-categories-slider .slick-next,
.premium-projects-slider .slick-prev,
.premium-projects-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3b82f6;
    font-weight: 600;
}

.related-slider .slick-prev:hover,
.related-slider .slick-next:hover,
.premium-categories-slider .slick-prev:hover,
.premium-categories-slider .slick-next:hover,
.premium-projects-slider .slick-prev:hover,
.premium-projects-slider .slick-next:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.related-slider .slick-prev,
.premium-categories-slider .slick-prev,
.premium-projects-slider .slick-prev {
    left: -25px;
}

.related-slider .slick-prev:before,
.premium-categories-slider .slick-prev:before,
.premium-projects-slider .slick-prev:before {
    content: '←';
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.related-slider .slick-next,
.premium-categories-slider .slick-next,
.premium-projects-slider .slick-next {
    right: -25px;
}

.related-slider .slick-next:before,
.premium-categories-slider .slick-next:before,
.premium-projects-slider .slick-next:before {
    content: '→';
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

/* FIXED: Slider Dots Alignment */
.related-slider .slick-dots,
.premium-categories-slider .slick-dots,
.premium-projects-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-slider .slick-dots li,
.premium-categories-slider .slick-dots li,
.premium-projects-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.related-slider .slick-dots li button,
.premium-categories-slider .slick-dots li button,
.premium-projects-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
    margin: 0;
}

.related-slider .slick-dots li.slick-active button,
.premium-categories-slider .slick-dots li.slick-active button,
.premium-projects-slider .slick-dots li.slick-active button {
    background: #3b82f6;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}
.category-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: rotate(45deg);
}

.category-card-premium:hover .category-glow-effect {
    opacity: 1;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.category-content-premium {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.category-title-premium {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.category-description-premium {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 15px;
    flex-grow: 1;
}

.category-action {
    margin-top: auto;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.explore-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.category-shine-effect {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skew(-20deg);
    transition: left 0.6s;
    opacity: 0;
}

.category-card-premium:hover .category-shine-effect {
    left: 100%;
    opacity: 1;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Premium Projects Section */
.premium-projects-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: float-animation 20s infinite linear;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float-animation {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.6; }
}

.projects-header {
    position: relative;
    z-index: 2;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.decoration-diamond {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: diamond-pulse 2s infinite;
}

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

/* Premium Project Cards */
.premium-project-card {
    padding: 0 0px;
    position: relative;
    z-index: 2;
}

.project-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    color: #1e293b;
}

.project-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.project-media-premium {
    position: relative;
    height: 200px;
}

.project-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.project-status-badge-premium,
.project-type-badge-premium {
    position: absolute;
    z-index: 3;
    animation: badge-float 3s ease-in-out infinite;
}

.project-status-badge-premium {
    top: 15px;
    right: 15px;
}

.project-type-badge-premium {
    top: 15px;
    left: 15px;
}

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

.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-success-gradient { background: linear-gradient(135deg, #10b981, #059669); }
.bg-warning-gradient { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-primary-gradient { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-info-gradient { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-dark-gradient { background: linear-gradient(135deg, #374151, #1f2937); }

.project-stats-overlay {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 15px;
    color: white;
    font-size: 0.75rem;
}

.project-content-premium {
    padding: 25px 20px;
}

.project-header {
    margin-bottom: 15px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-title-premium {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title-premium a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title-premium a:hover {
    color: #3b82f6;
}

.project-location-premium {
    margin-bottom: 20px;
}

.location-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.875rem;
}

.location-icon {
    color: #ef4444;
    font-size: 1rem;
}

.project-price-premium {
    margin-bottom: 20px;
}

.price-container {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 300px;
}
.slick-initialized .slick-slide{
    margin-right: 12px;
}
.price-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.project-card-premium:hover .price-container::before {
    left: 100%;
}

.price-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-text-premium {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.price-icon {
    margin-right: 4px;
}

.price-range {
    font-size: 0.875rem;
    opacity: 0.9;
}

.price-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 5px;
}

.project-cta {
    text-align: center;
}

.btn-explore-project {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-explore-project:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
}

.btn-explore-project:active .btn-ripple {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.card-shine-effect {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skew(-20deg);
    transition: left 0.6s;
    opacity: 0;
}

.project-card-premium:hover .card-shine-effect {
    left: 100%;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-title, .projects-title {
        font-size: 2rem;
    }
    
    .categories-subtitle, .projects-subtitle {
        font-size: 1rem;
    }
    
    .category-card-premium {
        height: 250px;
    }
    
    .project-media-premium {
        height: 180px;
    }
    
    .project-content-premium {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .categories-title, .projects-title {
        font-size: 1.75rem;
    }
    
    .category-card-premium {
        height: 220px;
    }
    
    .category-image-wrapper {
        height: 120px;
    }
    
    .project-media-premium {
        height: 160px;
    }
}

/* Slick Slider Customization */
.premium-categories-slider .slick-dots,
.premium-projects-slider .slick-dots {
    bottom: -50px;
}

.premium-categories-slider .slick-dots li button,
.premium-projects-slider .slick-dots li button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.premium-categories-slider .slick-prev,
.premium-categories-slider .slick-next,
.premium-projects-slider .slick-prev,
.premium-projects-slider .slick-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.premium-categories-slider .slick-prev:hover,
.premium-categories-slider .slick-next:hover,
.premium-projects-slider .slick-prev:hover,
.premium-projects-slider .slick-next:hover {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    transform: scale(1.1);
}

/* Dealership-specific styles */
.dealership-badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vehicle-specs-compact {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

.spec-badge {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: #495057;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.spec-badge i {
    font-size: 10px;
    color: #667eea;
}

.dealership-footer {
    border-top: 1px solid #e9ecef;
   
}

.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-dealership-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dealership-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ============================================== */
/* HOW BIDDING WORKS SECTION STYLES */
/* ============================================== */

.how-bidding-works-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-bidding-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

/* Section Header */
.section-header {
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 21px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e293b;
    margin: 1rem 0;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
}

.decoration-diamond {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-diamond i {
    transform: rotate(-45deg);
    color: white;
    font-size: 14px;
}

/* Bidding Steps Container */
.bidding-steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

/* Individual Step */
.bidding-step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
}

.step-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.step-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-card.featured .step-title,
.step-card.featured .step-description {
    color: white;
}

.step-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.step-card.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.step-card.success .step-title,
.step-card.success .step-description {
    color: white;
}

.step-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.step-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number span {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-card.featured .step-number span,
.step-card.success .step-number span {
    background: rgba(255, 255, 255, 0.3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-icon-bg {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.step-card.featured .step-icon-bg,
.step-card.success .step-icon-bg {
    background: rgba(255, 255, 255, 0.2);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag i {
    color: #10b981;
    font-size: 0.7rem;
}

/* Step Illustrations */
.step-illustration {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #667eea;
    position: relative;
    z-index: 2;
}

.illustration-circle.pulse {
    animation: illustrationPulse 2s ease-in-out infinite;
}

.illustration-circle.celebration {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    animation: celebrate 1s ease-in-out infinite;
}

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

@keyframes celebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.floating-element {
    position: absolute;
    font-size: 1rem;
    color: #667eea;
    opacity: 0.6;
    animation: floatElement 3s ease-in-out infinite;
}

.floating-element.fe-1 { top: 0; left: 10px; animation-delay: 0s; }
.floating-element.fe-2 { top: 20px; right: 10px; animation-delay: 1s; }
.floating-element.fe-3 { bottom: 10px; left: 30px; animation-delay: 2s; }

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

/* Bid Demo Card */
.bid-demo-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.demo-title {
    font-size: 0.9rem;
}

.demo-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.demo-input {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.demo-label {
    font-size: 0.85rem;
}

.demo-value {
    font-weight: 700;
    color: #fbbf24;
}

.demo-savings {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #a7f3d0;
    font-weight: 600;
}

/* Bid Animation Bubbles */
.bid-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bid-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: bidBubble 3s ease-in-out infinite;
}

.bid-bubble.b1 { top: 10px; left: 0; animation-delay: 0s; }
.bid-bubble.b2 { top: 30px; right: 0; animation-delay: 1s; }
.bid-bubble.b3 { bottom: 10px; left: 20px; animation-delay: 2s; }

@keyframes bidBubble {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1); }
}

/* Negotiation Flow */
.negotiation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 60px;
}

.flow-item.buyer {
    background: #dbeafe;
    color: #1e40af;
}

.flow-item.seller {
    background: #fce7f3;
    color: #be185d;
}

.flow-item.final {
    background: #d1fae5;
    color: #065f46;
}

.flow-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.flow-amount {
    font-size: 0.85rem;
    font-weight: 800;
}

.flow-arrow {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Chat Bubbles */
.chat-bubbles {
    position: absolute;
    width: 100%;
}

.chat-bubble {
    position: absolute;
    background: white;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-bubble.cb-left {
    top: 0;
    left: 0;
    border-bottom-left-radius: 5px;
    color: #be185d;
}

.chat-bubble.cb-right {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 5px;
    color: #1e40af;
}

/* Success Animation */
.success-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
}

.success-icon {
    font-size: 3rem;
    color: #a7f3d0;
    animation: successBounce 1s ease-in-out infinite;
}

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

.success-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

.confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall 3s ease-in-out infinite;
}

.confetti-piece.c1 { background: #fbbf24; left: 20%; animation-delay: 0s; }
.confetti-piece.c2 { background: #f87171; left: 40%; animation-delay: 0.5s; }
.confetti-piece.c3 { background: #a78bfa; right: 40%; animation-delay: 1s; }
.confetti-piece.c4 { background: #34d399; right: 20%; animation-delay: 1.5s; }

@keyframes confettiFall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(50px) rotate(360deg); opacity: 0; }
}

/* Step Connector */
.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: flex;
        align-items: center;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .connector-line {
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }
    
    .connector-arrow {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
        animation: arrowPulse 1.5s ease-in-out infinite;
    }
    
    @keyframes arrowPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
}

/* How It Works CTA */
.how-it-works-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 60px;
    border-radius: 24px;
    color: white;
    text-align: center;
}

.how-it-works-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-it-works-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: #1e293b;
}

.btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}
@media (min-width: 380px) and (max-width: 575px) {
  .product-content{
    width: 300px;
  }
}