html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-image: url('https://webcrowd.co.in/wp-content/uploads/2025/10/background-11-ezgif.com-png-to-webp-converter.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 60px 20px;
    overflow: hidden; /* Hide horizontal overflow */
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wc-items-grid-placeholder .woocommerce ul.products 
{   
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    clear: both;
}  

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 1fr; /* Fixed left width, flexible right */
    gap: 80px; /* Increased gap from 40px to 80px */
    align-items: center;
    padding: 20px 0;
}

/* Hero Content */
.hero-content {
    color: white;
    padding: 20px 0;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.hero-heading {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.hero-description {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
}

/* Hero Icons */
.hero-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.icon-circle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #5CB3C4;
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(92, 179, 196, 0.3);
}

.btn-primary:hover {
    background-color: #4a9aa9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(92, 179, 196, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 10px;
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 90%;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-icons {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-heading {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px;
    }

    .hero-content {
        padding: 16px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-heading {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .icon-circle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .btn {
        padding: 11px 24px;
        font-size: 14px;
    }
    
    .play-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .hero-icons {
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 12px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-heading {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Webcrowd Content Section ===== */
.wc-content-section {
    padding: 60px 20px;
    background-color: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wc-container {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.wc-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.wc-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.wc-highlight {
    color: #5CB3C4;
    font-weight: 700;
}

/* ===== Latest Uploads Carousel ===== */
.wc-uploads-carousel-placeholder {
    position: relative;
    margin-bottom: 50px;
}

.wc-carousel-items {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.wc-carousel-item {
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wc-carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wc-carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.wc-item-info {
    padding: 12px;
    text-align: center;
}

.wc-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.wc-item-info p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.wc-download-btn {
    background-color: #5CB3C4;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wc-download-btn:hover {
    background-color: #4a9aa9;
}

.wc-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.wc-nav-btn {
    background: #e5e7eb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s;
}

.wc-nav-btn:hover {
    background: #d1d5db;
}

.wc-dots {
    display: flex;
    gap: 6px;
}

.wc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wc-dot.wc-active {
    background: #5CB3C4;
}

/* ===== Search Bar ===== */
.wc-search-bar-container {
    text-align: center;
    margin-bottom: 40px;
}

.wc-search-wrapper {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
}

.wc-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.wc-search-input:focus {
    border-color: #5CB3C4;
    box-shadow: 0 0 0 2px rgba(92, 179, 196, 0.2);
}

.wc-filter-btn {
    background: #e5e7eb;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wc-filter-btn:hover {
    background: #d1d5db;
}

.wc-filter-btn i {
    color: #111827;
    font-size: 14px;
}

/* ===== Grid Items ===== */
.wc-items-grid-placeholder {
    margin-top: 30px;
}

.wc-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.wc-grid-item {
    min-width: 200px;
    max-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wc-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wc-item-image-placeholder {
    width: 100%;
    height: 150px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .wc-content-section {
        padding: 50px 16px;
    }

    .wc-section-title {
        font-size: 22px;
    }

    .wc-carousel-items {
        gap: 15px;
    }

    .wc-carousel-item,
    .wc-grid-item {
        min-width: 180px;
        max-width: 180px;
    }

    .wc-search-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .wc-content-section {
        padding: 40px 12px;
    }

    .wc-section-title {
        font-size: 20px;
    }

    .wc-carousel-items {
        gap: 12px;
    }

    .wc-carousel-item,
    .wc-grid-item {
        min-width: 160px;
        max-width: 160px;
    }

    .wc-search-wrapper {
        max-width: 100%;
    }

    .wc-search-input {
        padding: 10px 12px;
    }

    .wc-filter-btn {
        width: 36px;
        height: 36px;
    }

    .wc-grid-row {
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .wc-content-section {
        padding: 30px 8px;
    }

    .wc-section-title {
        font-size: 18px;
    }

    .wc-carousel-items {
        gap: 10px;
        padding: 8px 0;
    }

    .wc-carousel-item,
    .wc-grid-item {
        min-width: 140px;
        max-width: 140px;
    }

    .wc-item-info h4 {
        font-size: 13px;
    }

    .wc-item-info p {
        font-size: 11px;
    }

    .wc-download-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .wc-grid-row {
        gap: 8px;
    }
}

.wc-items-grid-placeholder ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}