.container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.padding-spacer {
    padding: 0 100px;
}

.heroSection {
    min-height: 50vh;
    padding-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heroSection h1 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 150px;
    line-height: 120px;
    font-weight: 700;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.heroSection p {
    font-size: 20px;
    line-height: 44px;
    color: var(--lighter-light);
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-box {
    width: 100%;
    padding: 20px 30px;
    padding-right: 70px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.search-box:focus {
    outline: none;
    border-color: var(--base-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(var(--base-color-rgb), 0.2);
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--base-color);
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--hover-color);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(var(--base-color-rgb), 0.3);
}

/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--base-background);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 10px;
    display: none;
    max-height: 400px;
    overflow: hidden;
}

.search-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h3 {
    color: var(--light);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.search-header span {
    color: var(--lighter-light);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.search-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.search-result-icon {
    width: 40px;
    height: 40px;
    background: var(--base-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-icon i {
    color: var(--light);
    font-size: 16px;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-content h4 {
    color: var(--light);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.search-result-content p {
    color: var(--lighter-light);
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.search-result-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.feature-tag {
    background: rgba(var(--base-color-rgb), 0.2);
    color: var(--base-color);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.more-features {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lighter-light);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
}

.search-result-action {
    color: var(--lighter-light);
    font-size: 14px;
    margin-left: 15px;
    flex-shrink: 0;
}

.search-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.search-footer p {
    color: var(--lighter-light);
    font-size: 12px;
    margin: 0;
}

.search-no-results {
    padding: 40px 25px;
    text-align: center;
    color: var(--lighter-light);
}

.search-no-results i {
    font-size: 24px;
    color: var(--lighter-light);
    margin-bottom: 10px;
    display: block;
}

.search-no-results p {
    font-size: 14px;
    margin: 0;
}

.docsContent {
    background-color: var(--card-background);
    padding: 50px 0;
    min-height: 100vh;
}

.docs-main-content {
    width: 100%;
    margin: 0 auto;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.docs-section {
    background: var(--base-background);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.docs-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.docs-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.docs-icon {
    width: 60px;
    height: 60px;
    background: var(--base-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-icon i {
    font-size: 28px;
    color: var(--light);
}

.docs-section-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--light);
    margin: 0;
}

.docs-content-body {
    color: var(--lighter-light);
}

.docs-content-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.docs-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--lighter-light);
    font-size: 16px;
    line-height: 1.6;
}

.docs-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--base-color);
    border-radius: 50%;
}

.docs-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--base-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.docs-link:hover {
    color: var(--hover-color);
    gap: 15px;
}

.docs-link i {
    font-size: 14px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.quick-link-card {
    background: var(--base-background);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--base-color);
}

.docsContent
{
    padding-bottom: 0 !important;
}

.docs-grid
{
    margin-bottom: 0 !important;
}

.quick-link-card i {
    font-size: 24px;
    color: var(--base-color);
    margin-bottom: 15px;
}

.quick-link-card h3 {
    color: var(--light);
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}

.quick-link-card p {
    color: var(--lighter-light);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1350px) {
    .heroSection h1 {
        font-size: 145px !important;
        line-height: 135px !important;
    }
}

@media (max-width: 1200px) {
    .heroSection h1 {
        font-size: 130px !important;
        line-height: 120px !important;
    }
}

@media (max-width: 1100px) {
    .heroSection h1 {
        font-size: 110px !important;
        line-height: 100px !important;
    }
}

@media (max-width: 1024px) {

    .heroSection h1 {
        font-size: 80px !important;
        line-height: 70px !important;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .heroSection p {
        font-size: 16px !important;
        line-height: 32px !important;
    }

    .heroSection .spacer-30 {
        height: 15px !important;
    }
    .heroSection .spacer-50 {
        height: 30px !important;
    }
}

@media (max-width: 768px) {
    .heroSection h1 {
        width: calc(100% - 20px) !important;
    }
    .search-container, .search-box
    {
        height: 55px !important;
    }
    .search-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .docs-section-header h2 {
        font-size: 35px !important;
    }
    .heroSection p {
        width: calc(100% - 20px) !important;
    }

    .heroSection h1 {
        font-size: 70px !important;
        line-height: 60px !important;
    }

    .search-container {
        width: calc(100% - 20px) !important;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .search-box {
        font-size: 16px !important;
    }

    .docs-section-header {
        flex-direction: column;
        text-align: center;
    }

    .docs-section-header h2 {
        font-size: 24px;
    }
    
    /* Mobile search dropdown adjustments */
    .search-dropdown {
        max-height: 300px;
    }
    
    .search-result-item {
        padding: 12px 20px;
    }
    
    .search-result-content h4 {
        font-size: 15px;
    }
    
    .search-result-content p {
        font-size: 13px;
    }
    
    .feature-tag {
        font-size: 10px;
        padding: 2px 6px;
        max-width: 100px;
    }
}

@media(max-width:610px) {
    .heroSection {
        padding-top: 80px !important;
    }
    .docs-section
    {
        padding: 20px !important;
    }
}

@media (max-width: 500px) {
    .heroSection h1 {
        font-size: 60px !important;
        line-height: 60px !important;
        width: calc(100% - 20px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}