.domain-section {
    background-color: #0056ff; /* Blue background */
    padding: 50px 20px;
    /* border-radius: 20px; */
    text-align: center;
    color: white;
}

.domain-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.domain-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input {
    padding: 10px 15px;
    font-size: 1.4rem;
    border-radius: 25px;
    border: 1px solid #ddd;
    flex: 2;
    outline: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.domain-extension {
    padding: 10px 15px;
    font-size: 1.6rem;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: white;
    flex: 1;
    outline: none;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.search-button {
    padding: 10px 25px;
    font-size: 1.4rem;
    font-weight: bold;
    background: #ffcc00;
    border: none;
    border-radius: 25px;
    color: #0056ff;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.search-button:hover {
    background: #ffb700;
}

.popular-domains {
    margin-top: 20px;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.popular-domains span {
    background: #ffffff;
    color: #0056ff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-search {
        flex-direction: column;
        gap: 15px;
    }

    .search-input,
    .domain-extension,
    .search-button {
        width: 100%;
    }

    .popular-domains {
        flex-wrap: wrap;
        gap: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
